/** Shopify CDN: Minification failed

Line 16:19 Expected ":"

**/
:root {
  --sg-primary: #0a2a66;
  --sg-accent: #0ab8aa;
  --sg-bg: #ffffff;
  --sg-muted: #6b7280;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Inter, Arial, sans-serif;
  margin: 0;
  color: #111; this is the css currently
  background: var(--sg-bg);
}

.sg-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.sg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(2, 6, 23, 0.04);
}

.sg-logo {
  height: 44px;
}

.sg-nav a {
  margin-left: 18px;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.sg-hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: #f7f8fb;
  border-radius: 12px;
}

.sg-hero h1 {
  font-size: 42px;
  margin: 0 0 12px;
  line-height: 1.02;
  font-weight: 700;
}

.sg-hero p {
  color: var(--sg-muted);
  font-size: 18px;
  margin: 0 0 24px;
}

.sg-cta {
  background: linear-gradient(180deg, var(--sg-primary), var(--sg-accent));
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(10, 40, 102, 0.12);
}

.sg-hero img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
}

.sg-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 48px 0;
}

.sg-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(2, 6, 23, 0.03);
  transition: transform .22s ease, box-shadow .22s ease;
}

.sg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.08);
}

.sg-email {
  display: flex;
  gap: 12px;
  padding: 28px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(10,42,102,0.02), rgba(10,184,170,0.00));
  align-items: center;
}

/* --- MOBILE FRIENDLY FIXES --- */
@media screen and (max-width: 768px) {
  .sg-hero {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
    text-align: center;
  }
  .sg-hero h1 {
    font-size: 28px;
  }
  .sg-hero p {
    font-size: 16px;
  }
  .sg-features {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
  .sg-header {
    flex-direction: column;
    gap: 12px;
  }
  .sg-nav a {
    margin-left: 0;
    display: block;
    padding: 8px 0;
  }
  .sg-email {
    flex-direction: column;
    text-align: center;
  }
}
/* Header Base */
.sg-header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}

.sg-header-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.sg-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}
.sg-logo img {
  height: 40px;
  margin-right: 8px;
}

/* Desktop Navigation */
.sg-nav {
  display: flex;
  gap: 20px;
}
.sg-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.sg-nav a:hover {
  color: #0071e3; /* Apple blue accent */
}

/* Mobile Styles */
.sg-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.sg-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 10px 20px;
  border-top: 1px solid #eee;
}
.sg-mobile-menu a {
  padding: 10px 0;
  text-decoration: none;
  color: #333;
}
.sg-mobile-menu a:hover {
  color: #0071e3;
}

/* Responsive */
@media (max-width: 768px) {
  .sg-nav {
    display: none;
  }
  .sg-menu-toggle {
    display: block;
  }
}
.sg-header {
    display: flex;
    justify-content: space-between; /* logo on left, nav on right */
    align-items: center; /* vertically center both */
    padding: 10px 20px; /* optional spacing */
}

.sg-nav {
    display: flex;
    gap: 20px; /* space between links */
}

.sg-nav a {
    text-decoration: none;
    color: inherit; /* matches site text color */
}.sg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: white;
}

.sg-logo-wrap img {
  height: 40px;
}

.sg-search {
  flex: 1;
  max-width: 500px;
  display: flex;
  margin: 0 40px;
}

.sg-search input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
}

.sg-search button {
  background: #0a2a66;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.sg-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sg-nav a {
  text-decoration: none;
  color: #0a2a66;
  font-weight: 500;
}

.sg-nav .sg-cta {
  background: #0ab8aa;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
}/* HEADER BASE */
.sg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.3s ease;
}

/* Logo */
.sg-logo-wrap img {
  height: 40px;
}

/* SEARCH */
.sg-search {
  flex: 1;
  max-width: 500px;
  display: flex;
  margin: 0 40px;
}

.sg-search input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px 0 0 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.sg-search input:focus {
  max-width: 600px;
  background: #f8faff;
  border-color: #0a2a66;
}

.sg-search button {
  background: #0a2a66;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
}

/* NAVIGATION LINKS */
.sg-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sg-nav a {
  text-decoration: none;
  color: #0a2a66;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.sg-nav a:hover {
  color: #0ab8aa;
}

/* Underline hover animation */
.sg-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #0ab8aa;
  transition: width 0.3s ease;
}

.sg-nav a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.sg-nav .sg-cta {
  background: #0ab8aa;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
}

.sg-nav .sg-cta:hover {
  background: #089e93;
}

/* SCROLLED STATE */
.sg-header.scrolled {
  background: #f9fafb;
}
