/* =====================================================
   CSS CUSTOM PROPERTIES — Honey & Bloom palette
===================================================== */
:root {
  /* HONEY — locked to PNG illustration background */
  --yellow:        #FEBB4A;
  --yellow-dark:   #E8A020;
  --yellow-pale:   #FFF5DF;

  /* MINT — lighter/mintier than iVetData teal, shared DNA */
  --teal:          #4AAEC8;
  --teal-dark:     #1F7A96;
  --teal-light:    #D2EAF1;

  /* PEACH — warm CTA accent */
  --coral:         #FF8C69;
  --coral-soft:    #FFE8E0;

  /* LAVENDER — playful differentiator */
  --lavender:      #B8A4F8;
  --lavender-soft: #F0ECFF;

  /* SURFACES */
  --mocha:         #082D3D;
  --white:         #FFFFFF;
  --warm-white:    #FFFDF8;
  --cream:         #FFF8EE;
  --sand:          #FFF2DC;

  /* TEXT */
  --text-dark:     #0D2F3D;
  --text-muted:    #4E7A90;

  /* BORDERS */
  --border:        #EDD8BC;

  /* TYPE SCALE */
  --text-xs:   12px;
  --text-sm:   14px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   22px;
  --text-2xl:  28px;
  --text-3xl:  36px;
  --text-4xl:  48px;
  --text-5xl:  64px;

  /* RADIUS */
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-full: 9999px;

  /* SHADOWS */
  --shadow-sm: 0 2px 8px rgba(8,45,61,0.07);
  --shadow-md: 0 6px 24px rgba(8,45,61,0.10);
  --shadow-lg: 0 16px 56px rgba(8,45,61,0.14);
}


/* =====================================================
   RESET + BASE
===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  font-size: var(--text-base);
  color: var(--text-dark);
  line-height: 1.65;
  background: var(--warm-white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
sup { font-size: 0.6em; vertical-align: super; }


/* =====================================================
   SCROLL ANIMATIONS
===================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.feat-rows .feat-row:nth-child(2) { transition-delay: 0.07s; }
.feat-rows .feat-row:nth-child(3) { transition-delay: 0.14s; }
.feat-rows .feat-row:nth-child(4) { transition-delay: 0.21s; }
.feat-rows .feat-row:nth-child(5) { transition-delay: 0.28s; }
.feat-rows .feat-row:nth-child(6) { transition-delay: 0.35s; }
.steps-row .fade-up:nth-child(3) { transition-delay: 0.15s; }
.steps-row .fade-up:nth-child(5) { transition-delay: 0.30s; }


/* =====================================================
   SHARED SECTION LAYOUT
===================================================== */
.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 112px 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.section-head p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.65;
}


/* =====================================================
   NAVBAR
===================================================== */
#navbar {
  position: relative;
  z-index: 10;
  width: calc(100% - 40px);
  max-width: 1240px;
  margin: 20px auto 0;
  background: rgba(255,253,248,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 18px;
  border: 1px solid rgba(74,174,200,0.18);
  box-shadow: 0 4px 32px rgba(8,45,61,0.10);
  flex-shrink: 0;
}

.nav-container {
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 34px; width: auto; display: block; }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dark);
  padding: 7px 13px;
  border-radius: var(--radius-full);
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover { background: rgba(74,174,200,0.1); color: var(--teal-dark); }

/* For Vets — ghost outline pill, B2B secondary */
.nav-forvets {
  border: 1.5px solid rgba(13,53,48,0.18) !important;
  color: var(--text-dark) !important;
  padding: 6px 14px !important;
}
.nav-forvets:hover {
  border-color: var(--teal) !important;
  background: rgba(74,174,200,0.09) !important;
  color: var(--teal-dark) !important;
}

.btn-download {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: var(--text-sm);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-download:hover {
  background: #e8704e;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,140,105,0.35);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(74,174,200,0.08);
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

.lang-btn {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  padding: 3px 7px;
  border-radius: var(--radius-full);
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--coral); color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--teal-dark); }

.lang-sep { font-size: 11px; color: var(--text-muted); opacity: 0.3; }

.nav-mobile-right { display: flex; align-items: center; gap: 10px; }
.lang-toggle-mobile { padding: 4px 10px; }

.hamburger {
  width: 38px; height: 38px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 6px; padding: 4px;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(8,45,61,0.45);
  z-index: 998; opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(320px, 88vw); height: 100%;
  background: var(--warm-white); z-index: 999;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 32px;
  overflow-y: auto;
  transition: right 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-menu.open { right: 0; }

.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; }
.mobile-close { font-size: 22px; color: var(--text-muted); padding: 4px 8px; line-height: 1; }

.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  font-size: var(--text-lg); font-weight: 800; color: var(--text-dark);
  padding: 14px 0; border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--teal); }

.mobile-dl-btns { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }

.btn-mobile-store {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 14px 20px; border-radius: var(--radius-md);
  background: var(--coral); color: var(--white);
  font-weight: 800; font-size: var(--text-base); transition: background 0.2s;
}
.btn-mobile-store:hover { background: #e8704e; }


/* =====================================================
   HERO
===================================================== */
#hero {
  background: var(--yellow);
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center;
}

.hero-blob {
  position: absolute; pointer-events: none;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  background: rgba(255,255,255,0.13);
}
.hero-blob-1 { width: 520px; height: 520px; top: -150px; right: -120px; }
.hero-blob-2 { width: 380px; height: 380px; bottom: -120px; left: -100px; border-radius: 45% 55% 40% 60%; }

.hero-container {
  flex: 1; max-width: 1200px; width: 100%; margin: 0 auto;
  padding: 48px 24px 80px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 48px;
}

.hero-illustration { order: -1; width: 100%; max-width: 360px; }
.hero-img { width: 100%; height: auto; }

.hero-text { text-align: center; width: 100%; }

.hero-badge-row { margin-bottom: 22px; }

.hero-conf-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.32);
  color: rgba(8,45,61,0.72);
  font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.5px;
  padding: 7px 18px; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.52);
}

.hero-tagline {
  font-size: 11px; font-weight: 900; color: var(--teal-dark);
  margin-bottom: 20px; letter-spacing: 0.13em; text-transform: uppercase;
}

#hero h1 {
  font-size: clamp(38px, 9vw, 72px);
  font-weight: 900; color: var(--text-dark);
  line-height: 1.04; letter-spacing: -0.04em; margin-bottom: 20px;
}

.hero-subhead {
  font-size: clamp(16px, 3vw, var(--text-xl));
  font-weight: 700; color: rgba(8,45,61,0.65);
  margin-bottom: 16px; line-height: 1.5;
}

.hero-body {
  font-size: var(--text-base); color: rgba(8,45,61,0.58);
  line-height: 1.75; margin-bottom: 40px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

.hero-downloads { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.dl-group { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }

.dl-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

.dl-label {
  font-size: 11px; font-weight: 900; color: rgba(8,45,61,0.52);
  text-transform: uppercase; letter-spacing: 0.1em;
}

.dl-or { font-size: var(--text-sm); font-weight: 600; color: rgba(8,45,61,0.36); }

.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--radius-full);
  font-weight: 800; font-size: var(--text-sm);
  white-space: nowrap; transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,45,61,0.18); }
.btn-store i { font-size: 18px; }

.btn-dark    { background: var(--mocha); color: var(--white); }
.btn-outline {
  background: rgba(255,255,255,0.9); color: var(--mocha);
  border: 2px solid rgba(8,45,61,0.22);
}
.btn-outline:hover { background: var(--white); border-color: var(--teal); }


/* =====================================================
   STATS STRIP
===================================================== */
#stats { background: var(--warm-white); border-bottom: 1px solid var(--border); }

.stats-inner {
  max-width: 900px; margin: 0 auto; padding: 56px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}

.stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }

.stat-num {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900; color: var(--teal);
  line-height: 1; letter-spacing: -0.04em;
}

.stat-label { font-size: var(--text-sm); font-weight: 600; color: var(--text-muted); max-width: 160px; line-height: 1.4; }

.stat-divider { display: none; }


/* =====================================================
   APP FEATURES GRID
===================================================== */
#features { background: var(--warm-white); }

/* Alternating rows layout */
.feat-rows { display: flex; flex-direction: column; }

.feat-row {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.feat-row:last-child { border-bottom: none; }

.feat-row--reverse { flex-direction: row-reverse; }

.feat-row-visual {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-row-visual img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.feat-row-emoji {
  font-size: 96px;
  line-height: 1;
  display: block;
}

.feat-row-text { flex: 1; }

.feat-row-text h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.feat-row-text p {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
}

.feat-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.feat-title-row h3 { margin-bottom: 0; }

.badge-new {
  background: var(--lavender); color: var(--white);
  font-size: 10px; font-weight: 900; padding: 3px 9px;
  border-radius: var(--radius-full); letter-spacing: 0.5px;
  text-transform: uppercase; flex-shrink: 0;
}


/* =====================================================
   CAROUSEL
===================================================== */
#discover { background: var(--mocha); }

#discover .eyebrow         { color: var(--teal-light); }
#discover .section-head h2 { color: var(--warm-white); }
#discover .section-head p  { color: rgba(255,248,240,0.50); }
#discover .c-caption       { color: rgba(255,248,240,0.65); }

#discover .c-arrow {
  background: rgba(255,248,240,0.08); color: var(--warm-white);
  border: 1px solid rgba(255,248,240,0.14); backdrop-filter: blur(8px);
}
#discover .c-arrow:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-50%) scale(1.07); }
#discover .c-dot { background: rgba(255,248,240,0.2); }
#discover .c-dot.active { background: var(--teal); width: 30px; }

.carousel-outer { position: relative; max-width: 600px; margin: 0 auto; }
.carousel { position: relative; }

.c-slide { display: none; }
.c-slide.active { display: flex; flex-direction: column; align-items: center; gap: 32px; }
.c-slide.entering { animation: cFade 0.4s ease forwards; }
@keyframes cFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* CSS phone frame — dark charcoal mockup, no images */
.phone-frame {
  position: relative;
  background: #1A1A1C;
  border-radius: 52px;
  padding: 26px 18px 36px;
  box-shadow:
    0 56px 120px rgba(0,0,0,0.50),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px #2A2A2C;
  width: min(420px, 80vw);
  flex-shrink: 0;
}

/* Speaker notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 7px;
  background: #2C2C2E;
  border-radius: 4px;
  z-index: 2;
}

/* Home indicator */
.phone-frame::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
}

.c-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 38px;
  box-shadow: none;
}

.c-caption { font-size: var(--text-sm); font-weight: 700; color: var(--text-muted); text-align: center; line-height: 1.55; padding: 0 8px 8px; }

.c-arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--warm-white); box-shadow: var(--shadow-md);
  font-size: 26px; line-height: 1; color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s; z-index: 2;
}
.c-arrow:hover { background: var(--teal); color: var(--white); transform: translateY(-50%) scale(1.07); }
.c-arrow-prev { left: -22px; }
.c-arrow-next { right: -22px; }

.c-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }

.c-dot {
  width: 10px; height: 10px; border-radius: var(--radius-full);
  background: var(--border); transition: width 0.3s ease, background 0.3s ease;
}
.c-dot.active { width: 30px; background: var(--teal); }


/* =====================================================
   HOW IT WORKS
===================================================== */
#how-it-works { background: var(--cream); }

.steps-row { display: flex; flex-direction: column; align-items: center; }

.step { text-align: center; max-width: 300px; padding: 24px 16px; }

.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: var(--radius-full);
  background: var(--coral); color: var(--white);
  font-size: var(--text-2xl); font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(255,140,105,0.38);
  letter-spacing: -0.02em; user-select: none;
}

.step h3 { font-size: var(--text-xl); font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 8px; }
.step p  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; }

.step-connector { width: 2px; height: 44px; background: linear-gradient(to bottom, var(--coral-soft), var(--border)); flex-shrink: 0; }


/* =====================================================
   FOR SERVICE PROVIDERS
===================================================== */
#providers { background: var(--warm-white); }

.providers-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }

.prov-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prov-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.prov-card-header {
  padding: 36px 36px 28px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.prov-card--teal   .prov-card-header { background: rgba(74,174,200,0.10); border-bottom: 1.5px solid rgba(74,174,200,0.15); }
.prov-card--yellow .prov-card-header { background: var(--yellow-pale); border-bottom: 1.5px solid rgba(254,187,74,0.25); }

.prov-card-body { padding: 28px 36px 36px; }

.prov-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.prov-card--teal   .prov-icon { background: rgba(74,174,200,0.18); color: var(--teal-dark); }
.prov-card--yellow .prov-icon { background: rgba(254,187,74,0.25); color: var(--yellow-dark); }

.prov-card h3 { font-size: var(--text-2xl); font-weight: 900; color: var(--text-dark); letter-spacing: -0.025em; }
.prov-card p  { font-size: var(--text-base); color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

.prov-cta {
  display: inline-block; padding: 13px 28px; border-radius: var(--radius-full);
  font-weight: 800; font-size: var(--text-base);
  transition: transform 0.22s, box-shadow 0.22s;
}
.prov-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.prov-cta--teal   { background: var(--teal);   color: var(--white); }
.prov-cta--yellow { background: var(--yellow);  color: var(--mocha); }


/* =====================================================
   INSTAGRAM FEED SECTION
===================================================== */
#instagram { background: var(--sand); }

.instagram-feed-wrap {
  max-width: 1080px;
  margin: 0 auto 40px;
  min-height: 160px;
}

/* Placeholder grid — shown until Elfsight widget is configured */
.instagram-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.ig-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 680px;
}

.ig-placeholder-cell {
  aspect-ratio: 1;
  background: var(--cream);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--border);
}

.ig-placeholder-cell--hide { display: none; }

.ig-placeholder-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 700;
  text-align: center;
  background: var(--cream);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
}

.instagram-follow { text-align: center; margin-top: 8px; }

/* Instagram gradient pill button */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #f9a825 0%, #e6683c 35%, #dc2743 60%, #bc1888 100%);
  color: var(--white);
  font-weight: 800;
  font-size: var(--text-base);
  box-shadow: 0 4px 20px rgba(220,39,67,0.25);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-instagram i { font-size: 20px; }
.btn-instagram:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,39,67,0.35);
}

@media (min-width: 768px) {
  .ig-placeholder-grid { grid-template-columns: repeat(6, 1fr); }
  .ig-placeholder-cell--hide { display: flex; }
}


/* =====================================================
   DOWNLOAD CTA
===================================================== */
#download-cta { background: var(--yellow); position: relative; overflow: hidden; }
#download-cta .eyebrow { color: var(--teal-dark); }

.cta-blob { position: absolute; pointer-events: none; background: rgba(255,255,255,0.18); }
.cta-blob-1 { width: 420px; height: 420px; top: -110px; right: -90px; border-radius: 60% 40% 70% 30%; }
.cta-blob-2 { width: 340px; height: 340px; bottom: -90px; left: -70px; border-radius: 45% 55% 35% 65%; }

.cta-inner { max-width: 760px; margin: 0 auto; padding: 112px 24px; text-align: center; position: relative; z-index: 1; }

.cta-inner h2 { font-size: clamp(32px, 5.5vw, 56px); font-weight: 900; color: var(--mocha); line-height: 1.1; letter-spacing: -0.035em; margin-bottom: 14px; }
.cta-inner p  { font-size: var(--text-lg); color: rgba(8,45,61,0.65); font-weight: 700; margin-bottom: 40px; }

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* =====================================================
   FOOTER
===================================================== */
#footer { background: var(--mocha); color: var(--warm-white); border-top: 1px solid rgba(74,174,200,0.1); }

.footer-top { max-width: 1200px; margin: 0 auto; padding: 72px 24px 48px; display: grid; grid-template-columns: 1fr; gap: 40px; }

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-logo { height: 34px; width: auto; filter: brightness(0) invert(1); }

.footer-tagline { font-size: var(--text-sm); color: rgba(255,248,240,0.45); line-height: 1.6; max-width: 260px; }

.footer-social { font-size: 22px; color: rgba(255,248,240,0.5); transition: color 0.2s; display: inline-block; }
.footer-social:hover { color: var(--warm-white); }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col h4 { font-size: var(--text-xs); font-weight: 900; color: rgba(255,248,240,0.35); text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 4px; }

.footer-col a { font-size: var(--text-sm); font-weight: 600; color: rgba(255,248,240,0.60); transition: color 0.2s; }
.footer-col a:hover { color: var(--warm-white); }

.footer-bottom { border-top: 1px solid rgba(255,248,240,0.07); padding: 24px; text-align: center; }
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,248,240,0.28); line-height: 1.6; }
.footer-bottom a { color: rgba(255,248,240,0.45); text-decoration: underline; }
.footer-bottom a:hover { color: var(--warm-white); }


/* =====================================================
   INNER PAGE HEADER (shared across services / discover / features)
===================================================== */
.page-header {
  background: var(--yellow);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 72px;
}

.page-header-blob {
  position: absolute; pointer-events: none;
  background: rgba(255,255,255,0.13);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
}
.page-header-blob-1 { width: 400px; height: 400px; top: -120px; right: -80px; }
.page-header-blob-2 { width: 280px; height: 280px; bottom: -80px; left: -60px; border-radius: 45% 55% 40% 60%; }

.page-header-content {
  text-align: center; padding: 52px 24px 0;
  max-width: 720px; margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}

.page-header-content h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.035em; line-height: 1.08; margin-bottom: 14px;
}

.page-header-content p { font-size: var(--text-lg); color: rgba(8,45,61,0.65); font-weight: 700; line-height: 1.6; }


/* =====================================================
   SERVICES PAGE
===================================================== */
.services-tabs {
  display: flex; overflow-x: auto; gap: 8px;
  margin-bottom: 56px; padding-bottom: 4px; scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar { display: none; }

.tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: 800;
  color: var(--text-muted); background: var(--white);
  border: 1.5px solid var(--border);
  white-space: nowrap; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tab-btn:hover { border-color: var(--teal); color: var(--teal-dark); }
.tab-btn.active { background: var(--teal); color: var(--white); border-color: var(--teal); box-shadow: 0 4px 16px rgba(74,174,200,0.3); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.service-detail {
  display: grid; grid-template-columns: 1fr;
  gap: 56px; align-items: center;
}

.service-detail-text h2 {
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}

.service-detail-text p { font-size: var(--text-base); color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }

.service-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

.service-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: var(--text-sm); font-weight: 700; color: var(--text-dark);
}

.service-bullets li .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 1px;
}

.service-visual-card {
  background: var(--sand); border-radius: var(--radius-lg);
  padding: 48px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  border: 1.5px solid var(--border);
}

.service-icon-large {
  width: 100px; height: 100px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.service-icon-large img { width: 72px; height: 72px; object-fit: contain; }

.service-visual-card h3 { font-size: var(--text-2xl); font-weight: 900; color: var(--text-dark); letter-spacing: -0.02em; text-align: center; }
.service-visual-card p  { font-size: var(--text-sm); color: var(--text-muted); text-align: center; line-height: 1.6; max-width: 280px; }

.service-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase;
}
.service-badge--live { background: rgba(74,174,200,0.15); color: var(--teal-dark); }
.service-badge--new  { background: var(--lavender-soft);   color: var(--lavender); }

.service-dl-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-full);
  background: var(--coral); color: var(--white);
  font-weight: 800; font-size: var(--text-base);
  transition: background 0.2s, transform 0.2s;
}
.service-dl-link:hover { background: #e8704e; transform: translateY(-2px); }


/* =====================================================
   DISCOVER PAGE
===================================================== */
.screenshot-grid { display: grid; grid-template-columns: 1fr; gap: 80px; }

.screenshot-item { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }

.screenshot-img-wrap {
  background: var(--mocha); border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex; justify-content: center;
}
.screenshot-img-wrap img {
  max-width: 240px; border-radius: var(--radius-md);
  box-shadow: 0 24px 56px rgba(0,0,0,0.45); margin: 0 auto;
}

.screenshot-text h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px;
}
.screenshot-text p { font-size: var(--text-base); color: var(--text-muted); line-height: 1.75; }

.screenshot-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }

.screenshot-tag {
  display: inline-block; padding: 5px 14px;
  border-radius: var(--radius-full);
  background: var(--cream); border: 1.5px solid var(--border);
  font-size: var(--text-xs); font-weight: 800; color: var(--text-muted);
}


/* =====================================================
   FEATURES PAGE
===================================================== */
.features-full-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.feature-row {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border); padding: 32px;
  display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  position: relative; overflow: hidden;
}

.feature-row::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
}
.feature-row:nth-child(1)::after { background: var(--lavender); }
.feature-row:nth-child(2)::after { background: var(--teal); }
.feature-row:nth-child(3)::after { background: var(--yellow-dark); }
.feature-row:nth-child(4)::after { background: var(--coral); }
.feature-row:nth-child(5)::after { background: var(--teal-dark); }
.feature-row:nth-child(6)::after { background: var(--lavender); }
.feature-row:nth-child(7)::after { background: var(--coral); }

.feature-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal-light); }

.feature-row-icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.feature-row-icon img { width: 40px; height: 40px; object-fit: contain; }

.feature-row:nth-child(1) .feature-row-icon { background: var(--lavender-soft); }
.feature-row:nth-child(2) .feature-row-icon { background: rgba(74,174,200,0.12); }
.feature-row:nth-child(3) .feature-row-icon { background: var(--yellow-pale); }
.feature-row:nth-child(4) .feature-row-icon { background: var(--coral-soft); }
.feature-row:nth-child(5) .feature-row-icon { background: rgba(74,174,200,0.12); }
.feature-row:nth-child(6) .feature-row-icon { background: var(--lavender-soft); }
.feature-row:nth-child(7) .feature-row-icon { background: var(--coral-soft); }

.feature-row-text h3 {
  font-size: var(--text-xl); font-weight: 900; color: var(--text-dark);
  letter-spacing: -0.02em; margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

.feature-row-text p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; }

.feature-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 10px; border-radius: var(--radius-full);
}
.feature-status--live { background: rgba(74,174,200,0.15); color: var(--teal-dark); }
.feature-status--new  { background: var(--lavender-soft);   color: var(--lavender); }


/* =====================================================
   RESPONSIVE — MOBILE (feat-rows stack)
===================================================== */
@media (max-width: 767px) {
  .feat-row,
  .feat-row--reverse {
    flex-direction: column;
    gap: 28px;
    padding: 48px 0;
    text-align: center;
  }
  .feat-row-visual { flex: none; }
  .feat-row-visual img { width: 120px; height: 120px; }
  .feat-row-emoji { font-size: 72px; }
  .feat-row-text p { max-width: none; }
  .feat-title-row { justify-content: center; }
}


/* =====================================================
   RESPONSIVE — TABLET 768px+
===================================================== */
@media (min-width: 768px) {
  .stats-inner { flex-direction: row; justify-content: center; gap: 0; }
  .stat-divider { display: block; width: 1px; height: 60px; background: var(--border); margin: 0 56px; flex-shrink: 0; }

  .steps-row { flex-direction: row; align-items: flex-start; justify-content: center; gap: 0; }
  .step { max-width: 260px; }
  .step-connector { width: 64px; height: 2px; margin-top: 46px; background: linear-gradient(to right, var(--coral-soft), var(--border)); }

  .providers-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .section-head h2 { letter-spacing: -0.04em; }

  .carousel-outer { max-width: 680px; }

  /* Services */
  .service-detail { grid-template-columns: 1fr 1fr; gap: 64px; }

  /* Discover */
  .screenshot-item { grid-template-columns: 1fr 1fr; }
  .screenshot-item:nth-child(even) .screenshot-img-wrap { order: 2; }
  .screenshot-item:nth-child(even) .screenshot-text { order: 1; }
}


/* =====================================================
   RESPONSIVE — DESKTOP 1024px+
===================================================== */
@media (min-width: 1024px) {
  .nav-links        { display: flex; }
  .nav-mobile-right { display: none; }

  .hero-container { flex-direction: row; justify-content: space-between; align-items: center; gap: 64px; padding: 96px 48px 104px; }
  .hero-illustration { order: 2; flex: 0 0 46%; max-width: 520px; }
  .hero-text         { order: 1; flex: 1 1 auto; text-align: left; }
  .hero-body         { margin-left: 0; margin-right: 0; }
  .hero-downloads    { align-items: flex-start; }
  .dl-group          { align-items: flex-start; }
  .dl-btns           { justify-content: flex-start; }

  .carousel-outer { max-width: 760px; }
  .c-arrow-prev { left: -28px; }
  .c-arrow-next { right: -28px; }

  .prov-card-header { padding: 40px 48px 32px; }
  .prov-card-body   { padding: 32px 48px 40px; }
}


/* =====================================================
   LEGAL PAGES (privacy.html, terms.html)
===================================================== */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
}

.legal-body p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-body h2 {
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-body ul {
  padding-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-body ul li {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-body a {
  color: var(--teal-dark);
  font-weight: 700;
  border-bottom: 1px solid var(--teal);
}

.legal-body a:hover { color: var(--teal); }


/* =====================================================
   IVET PAGE
===================================================== */
.ivet-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.ivet-split--reverse .ivet-split-visual { order: -1; }

.ivet-h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.ivet-body {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.ivet-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ivet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-dark);
}

.ivet-list li .fa-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
  font-size: 13px;
}

.btn-ivet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 900;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-ivet:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ivet-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-ivet-teal:hover { background: var(--teal-dark); }

.btn-ivet-yellow {
  background: var(--yellow);
  color: var(--text-dark);
}
.btn-ivet-yellow:hover { background: var(--yellow-dark); }

.ivet-split-visual {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-height: 280px;
  justify-content: center;
}

.ivet-split-visual--teal {
  background: linear-gradient(135deg, rgba(74,174,200,0.12) 0%, rgba(31,122,150,0.08) 100%);
  border: 1px solid rgba(74,174,200,0.2);
}

.ivet-split-visual--yellow {
  background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--sand) 100%);
  border: 1px solid var(--border);
}

.ivet-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-size: 28px;
  color: var(--teal);
}

.ivet-split-visual--yellow .ivet-icon-wrap { color: var(--yellow-dark); }

.ivet-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.ivet-feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.ivet-feature-card i {
  font-size: 14px;
  color: var(--teal);
  flex-shrink: 0;
}

.ivet-split-visual--yellow .ivet-feature-card i { color: var(--yellow-dark); }

@media (min-width: 768px) {
  .ivet-split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .ivet-split--reverse .ivet-split-visual { order: 0; }
}


/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-body {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--text-dark);
}

.contact-link-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-link-card > i:first-child {
  font-size: 18px;
  color: var(--teal);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.contact-link-card div {
  flex: 1;
}

.contact-link-card strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--text-dark);
}

.contact-link-card span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
}

.contact-link-arrow {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  font-family: 'Nunito', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,174,200,0.15);
}

.btn-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: var(--teal);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  align-self: flex-start;
}

.btn-form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.form-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 600;
}

.form-field-error {
  font-size: var(--text-xs);
  font-weight: 700;
  color: #c0392b;
  min-height: 16px;
}

.form-error-banner {
  padding: 12px 16px;
  background: #fdf0ef;
  border: 1px solid #f5c6c2;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #c0392b;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(74,174,200,0.1);
  border: 1px solid rgba(74,174,200,0.3);
  border-radius: var(--radius-md);
  margin-top: 24px;
}

.form-success .fa-check-circle {
  font-size: 28px;
  color: var(--teal);
  flex-shrink: 0;
}

.form-success p {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--teal-dark);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}


/* =====================================================
   ACCESSIBILITY
===================================================== */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
