/* =========================================================
   TREVIX365 — Brand Stylesheet (Light)
   Surfaces: White / Off-white · Text: Navy
   Accents only: Teal #00B8C9 · Green #7AC943
   Type: System sans (display / titles) / Poppins (body)
   ========================================================= */

/* ---------- Self-hosted body font (no external CDN) ---------- */
@font-face{font-family:'Poppins';font-style:normal;font-weight:300;font-display:swap;src:url('../fonts/poppins-300.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/poppins-400.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:500;font-display:swap;src:url('../fonts/poppins-500.woff2') format('woff2');}
@font-face{font-family:'Poppins';font-style:normal;font-weight:600;font-display:swap;src:url('../fonts/poppins-600.woff2') format('woff2');}

:root {
  /* Titles/display use the viewer's native UI font — crisp, fast, professional */
  --font-display: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --navy:      #071A3D;
  --navy-700:  #10305c;
  --teal:      #00B8C9;
  --teal-ink:  #0a7f8d;   /* legible teal for small labels on white */
  --green:     #7AC943;
  --green-ink: #5a9e2b;

  --bg:        #ffffff;
  --bg-alt:    #F3F7FB;   /* cool off-white */
  --bg-tint:   #ECF6F8;   /* faint teal wash */
  --card:      #ffffff;

  --head:      #071A3D;   /* headings */
  --ink:       #223251;   /* body text (navy-biased slate) */
  --muted:     #5a6b86;   /* secondary */
  --muted-2:   #8493ab;   /* tertiary */
  --line:      #e2e9f2;   /* borders */
  --line-soft: #edf1f7;
  --text-strong: var(--navy);  /* strong text on light surfaces */
  --input-bg:  #fbfcfe;

  --grad:      linear-gradient(120deg, var(--teal), var(--green));
  --grad-text: linear-gradient(120deg, #0a8c9b, #5aa32f); /* readable on white */

  --radius:    18px;
  --radius-lg: 26px;
  --shadow:    0 22px 50px -28px rgba(7,26,61,.28);
  --shadow-sm: 0 10px 28px -18px rgba(7,26,61,.20);
  --shadow-glow: 0 18px 44px -22px rgba(0,184,201,.5);

  --container: 1200px;
  --ease:      cubic-bezier(.2,.7,.2,1);
  --header-h:  74px;
}

/* =========================================================
   DARK THEME — deep navy glow with teal / green / blue accents
   Applied when <html data-theme="dark"> (via the header toggle)
   ========================================================= */
:root[data-theme="dark"] {
  --bg:        #060d1d;
  --bg-alt:    #0a1428;
  --bg-tint:   rgba(0,184,201,.10);
  --card:      #0d1a33;

  --head:      #f4f8ff;
  --ink:       #c3d1e8;
  --text-strong: #eef4fc;
  --muted:     #93a3c0;
  --muted-2:   #6f81a1;
  --line:      rgba(255,255,255,.09);
  --line-soft: rgba(255,255,255,.06);
  --input-bg:  #0a1730;

  --teal-ink:  #33d1e1;         /* brighter accents read well on dark */
  --green-ink: #98e15f;
  --grad-text: linear-gradient(120deg, #2fd0e0, #8fe05a);

  --shadow:    0 26px 60px -30px rgba(0,0,0,.75);
  --shadow-sm: 0 12px 30px -20px rgba(0,0,0,.6);
  --shadow-glow: 0 18px 44px -22px rgba(0,184,201,.4);
}
:root[data-theme="dark"] .hero {
  background:
    radial-gradient(120% 90% at 82% -12%, rgba(0,184,201,.16), transparent 52%),
    radial-gradient(95% 80% at 8% 112%, rgba(46,140,224,.17), transparent 55%),
    radial-gradient(70% 60% at 55% 122%, rgba(122,201,67,.10), transparent 60%),
    linear-gradient(180deg, #060d1d, #081327);
}
:root[data-theme="dark"] .hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
}
:root[data-theme="dark"] .site-header.scrolled {
  background: rgba(8,16,32,.82);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(0,0,0,.8);
}
:root[data-theme="dark"] .plan-card.featured {
  background: linear-gradient(180deg, rgba(122,201,67,.12), rgba(0,184,201,.05));
  border-color: rgba(122,201,67,.5);
}
:root[data-theme="dark"] .warranty-card { border: 1px solid rgba(0,184,201,.35); }
:root[data-theme="dark"] .scroll-cue { border-color: rgba(255,255,255,.25); }
:root[data-theme="dark"] .step-num { color: rgba(255,255,255,.16); }
:root[data-theme="dark"] .stores-bg {
  background: radial-gradient(60% 55% at 92% 12%, rgba(0,184,201,.14), transparent 60%),
             radial-gradient(55% 60% at 6% 100%, rgba(46,140,224,.16), transparent 60%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4, .brand { font-family: var(--font-display); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(70px, 9vw, 128px) 0; position: relative; }
.hero, section[id] { scroll-margin-top: 84px; }

/* ---------- Typography ---------- */
h1 { font-weight: 900; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.03; letter-spacing: -.02em; color: var(--head); text-wrap: balance; }
h2 { font-weight: 800; font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.08; letter-spacing: -.015em; color: var(--head); text-wrap: balance; }
h3 { font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; color: var(--head); }
p  { color: var(--muted); }

.grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section-eyebrow, .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; font-size: .72rem;
  color: var(--teal-ink);
}
.eyebrow .dot, .section-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(122,201,67,.18);
}
.eyebrow { background: rgba(0,184,201,.09); border: 1px solid rgba(0,184,201,.28);
  padding: 8px 16px; border-radius: 100px; }
.section-head { max-width: 680px; }
.section-head.center { margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  padding: 15px 30px; border-radius: 100px; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s;
  will-change: transform;
}
.btn:focus-visible { outline: 3px solid rgba(0,184,201,.5); outline-offset: 2px; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--grad); color: #052033;
  box-shadow: 0 12px 28px -12px rgba(0,184,201,.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(0,184,201,.72); }
.btn-ghost {
  background: var(--card); color: var(--text-strong);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--teal); color: var(--teal-ink); }

/* =========================================================
   BRAND LOGO
   ========================================================= */
.brand {
  display: inline-flex; align-items: center;
  font-weight: 800; font-size: 1.55rem; line-height: 1; letter-spacing: .01em;
}
.brand img { height: 34px; width: auto; display: block; }
.brand .logo-on-dark { display: none; }
:root[data-theme="dark"] .brand .logo-on-light { display: none; }
:root[data-theme="dark"] .brand .logo-on-dark { display: block; }
.brand-word { display: inline-flex; align-items: center; color: var(--text-strong); }
.brand-word > span { display: inline-block; }
.brand-e { height: .70em; width: auto; margin: 0 .05em; }
.brand-e .e-w { fill: var(--navy); }
.brand-e .e-g { fill: var(--green); }
.brand-365 {
  position: relative; z-index: 0; color: var(--green);
  margin-left: .14em; display: inline-flex; align-items: center;
}
.brand-swoosh {
  position: absolute; left: 52%; top: 50%; width: 2.15em; height: auto;
  transform: translate(-50%, -50%); z-index: -1; overflow: visible; opacity: 1;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.85); backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(7,26,61,.35);
}
.header-inner { display: flex; align-items: center; gap: 20px; }
.header-inner .brand { margin-right: auto; }
.header-right { display: flex; align-items: center; gap: 10px; }
.theme-toggle { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  color: var(--text-strong); transition: transform .25s var(--ease), border-color .25s, color .25s; }
.theme-toggle:hover { transform: translateY(-2px); border-color: var(--teal); color: var(--teal-ink); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .ic-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .ic-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .ic-sun { display: block; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { font-size: .92rem; font-weight: 500; color: var(--muted); transition: color .2s; position: relative; }
.main-nav a:not(.btn):hover { color: var(--text-strong); }
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--grad); border-radius: 2px; transition: width .3s var(--ease);
}
.main-nav a:not(.btn):hover::after { width: 100%; }
.nav-cta { color: #052033 !important; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.nav-toggle span { width: 20px; height: 2px; background: var(--text-strong); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 60px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 82% -10%, rgba(0,184,201,.12), transparent 52%),
    radial-gradient(90% 80% at 0% 108%, rgba(122,201,67,.10), transparent 52%),
    linear-gradient(180deg, #ffffff, var(--bg-alt));
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(7,26,61,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,26,61,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 26%, transparent 74%);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 0%, #000 26%, transparent 74%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(0,184,201,.35), transparent 70%);
  top: -80px; right: -60px; animation: float 12s var(--ease) infinite; }
.orb-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(122,201,67,.30), transparent 70%);
  bottom: -100px; left: -40px; animation: float 15s var(--ease) infinite reverse; }
.hero-loop { position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: 640px; max-width: 60%; opacity: .35; animation: spin 40s linear infinite; }

.hero-inner { position: relative; z-index: 2; display: grid;
  grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero-copy h1 { margin: 22px 0 8px; }
.hero-tagline { font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.3rem, 2.6vw, 2rem); color: var(--text-strong); margin-bottom: 18px; letter-spacing: -.01em; }
.hero-tagline .tl-teal { color: var(--teal-ink); }
.hero-tagline .tl-green { color: var(--green-ink); }
.hero-sub { font-size: 1.08rem; max-width: 540px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 40px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); max-width: 560px; }
.stat { display: flex; flex-direction: column; padding: 0 18px; }
.stat:first-child { padding-left: 0; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; line-height: 1.1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: .78rem; color: var(--muted); letter-spacing: .01em; line-height: 1.35; margin-top: 4px; }
.stat + .stat { border-left: 1px solid var(--line); }

/* hero visual (dark product image sits in a card) */
.hero-visual { position: relative; }
.hero-img-wrap { position: relative; border-radius: var(--radius-lg); }
.hero-img-wrap img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 1px solid var(--line);
  animation: floatY 6s ease-in-out infinite;
}
.hero-badge {
  position: absolute; left: -22px; bottom: 30px; display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 12px 18px;
  box-shadow: var(--shadow); animation: floatY 6s ease-in-out infinite .6s;
}
.hero-badge svg { width: 34px; height: 34px; color: var(--green-ink); flex: none; }
.hero-badge strong { display: block; font-family: var(--font-display); font-weight: 800; color: var(--text-strong); font-size: 1.05rem; }
.hero-badge span { font-size: .74rem; color: var(--muted); }

.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 42px; border: 2px solid rgba(7,26,61,.2); border-radius: 20px; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 4px;
  background: var(--green); transform: translateX(-50%); animation: scrolldot 1.8s infinite; }

@keyframes float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,26px)} }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
@keyframes scrolldot { 0%{opacity:0;top:8px} 40%{opacity:1} 80%{opacity:0;top:24px} 100%{opacity:0} }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-alt); padding: 18px 0; }
.marquee-track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap;
  animation: marquee 32s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--text-strong); opacity: .78; }
.marquee-track i { color: var(--teal); font-style: normal; font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   FEATURE STRIP
   ========================================================= */
.feature-strip { padding: clamp(50px,7vw,90px) 0; background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.feature-item { padding: 30px 26px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.feature-item:hover { transform: translateY(-6px); border-color: rgba(0,184,201,.5); box-shadow: var(--shadow); }
.feature-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-tint); border: 1px solid rgba(0,184,201,.22); margin-bottom: 18px; }
.feature-ic svg { width: 26px; height: 26px; color: var(--teal-ink); }
.feature-item h3 { margin-bottom: 8px; font-size: 1.08rem; }
.feature-item p { font-size: .92rem; }

/* =========================================================
   TECHNOLOGY
   ========================================================= */
.technology { background: var(--bg-alt); }
.tech-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tech-visual { position: relative; }
.tech-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); }
.tech-img-wrap img { width: 100%; }
.tech-pulse { position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 82%, rgba(0,184,201,.16), transparent 45%); pointer-events: none; }
.tech-float { position: absolute; background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow); }
.tech-float strong { display: block; font-family:var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--text-strong); }
.tech-float span { font-size: .74rem; color: var(--muted); }
.tech-float-1 { top: 24px; right: -18px; animation: floatY 5s ease-in-out infinite; }
.tech-float-2 { bottom: 26px; left: -18px; animation: floatY 5s ease-in-out infinite .8s; }

.tech-copy h2 { margin: 16px 0 18px; }
.tech-list { margin: 26px 0 32px; display: flex; flex-direction: column; gap: 16px; }
.tech-list li { display: flex; gap: 14px; align-items: flex-start; }
.tech-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #052033; font-weight: 800; font-size: .85rem; margin-top: 2px; }
.tech-list strong { color: var(--text-strong); }
.tech-list div { font-size: .98rem; color: var(--muted); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { background: var(--bg); }
.how-banner { position: relative; max-width: 1000px; margin: 0 auto 46px; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.how-banner img { width: 100%; height: 340px; object-fit: cover; }
.how-banner::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,18,40,.15) 0%, transparent 34%, rgba(6,18,40,.82) 100%); }
.how-banner-label { position: absolute; left: 24px; bottom: 22px; z-index: 2; display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 600; font-size: .96rem; color: #fff; }
.how-banner-label span { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); flex: none; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; }
.steps::before { content: ""; position: absolute; top: 42px; left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,184,201,.5), rgba(122,201,67,.5), transparent); }
.step { position: relative; padding: 34px 24px; border-radius: var(--radius); text-align: center;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.step:hover { transform: translateY(-6px); border-color: rgba(122,201,67,.5); box-shadow: var(--shadow); }
.step-num { position: absolute; top: 16px; right: 18px; font-family:var(--font-display);
  font-weight: 800; font-size: 1.1rem; color: rgba(7,26,61,.14); }
.step-ic { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center;
  background: var(--bg-tint); border: 1px solid rgba(0,184,201,.28); }
.step-ic svg { width: 28px; height: 28px; color: var(--teal-ink); }
.step h3 { margin-bottom: 8px; }
.step p { font-size: .9rem; }

/* =========================================================
   PLANS
   ========================================================= */
.plans { background: var(--bg-alt); }
.plan-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; align-items: stretch; }
.plan-card { position: relative; display: flex; flex-direction: column;
  padding: 34px 26px 30px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.plan-card:hover { transform: translateY(-8px); border-color: rgba(0,184,201,.5); box-shadow: var(--shadow); }
.plan-card.featured { border-color: rgba(122,201,67,.6);
  background: linear-gradient(180deg, #fff, #F4FBEE);
  box-shadow: var(--shadow), 0 0 0 1px rgba(122,201,67,.25); }
.plan-ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family:var(--font-display); font-weight: 700; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em;
  background: var(--grad); color: #052033; padding: 6px 16px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 10px 20px -10px rgba(0,184,201,.7); }
.plan-index { font-family:var(--font-display); font-weight: 800; font-size: .8rem; color: var(--teal-ink); letter-spacing: .15em; }
.plan-name { margin: 8px 0 6px; font-size: 1.25rem; }
.plan-tag { font-size: .82rem; color: var(--muted-2); min-height: 34px; }
.plan-price { font-family:var(--font-display); font-weight: 900; font-size: 2.4rem; color: var(--text-strong);
  margin: 18px 0 4px; line-height: 1; display: flex; align-items: baseline; gap: 4px; }
.plan-price .cur { font-size: 1.3rem; color: var(--green-ink); }
.plan-price .per { font-size: .72rem; font-weight: 500; color: var(--muted-2); font-family: 'Poppins',sans-serif; letter-spacing: 0; }
.plan-subprice { font-size: .82rem; color: var(--teal-ink); margin-bottom: 6px; font-weight: 500; }
.plan-feats { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 20px;
  padding-top: 20px; border-top: 1px solid var(--line); }
.plan-feats li { position: relative; padding-left: 26px; font-size: .86rem; color: var(--muted); line-height: 1.5; }
.plan-feats li b { color: var(--text-strong); font-weight: 600; }
.plan-feats li::before { content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(122,201,67,.14); border: 1px solid rgba(122,201,67,.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12l4 4L19 7' fill='none' stroke='%235a9e2b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center; }
.plan-best { font-size: .8rem; color: var(--muted-2); font-style: italic; margin-bottom: 20px; margin-top: auto; }
.plan-btn { width: 100%; }
.plans-note { margin-top: 34px; font-size: .76rem; color: var(--muted-2); text-align: center; max-width: 900px; margin-inline: auto; line-height: 1.7; }

/* =========================================================
   WARRANTY
   ========================================================= */
.warranty { background: var(--bg); overflow: hidden; }
.warranty-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 54px; align-items: center; }
.warranty-copy h2 { margin: 16px 0 18px; }
.warranty-points { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.wp { display: flex; gap: 16px; align-items: flex-start; }
.wp-ic { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--bg-tint); border: 1px solid rgba(0,184,201,.24); }
.wp-ic svg { width: 24px; height: 24px; color: var(--teal-ink); }
.wp h4 { color: var(--text-strong); font-size: 1.02rem; margin-bottom: 2px; }
.wp p { font-size: .9rem; }

/* highlighted warranty block — the single dark navy accent */
.warranty-card { position: relative; padding: 40px 34px; border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #0a2249, var(--navy)); color: #fff;
  box-shadow: var(--shadow); text-align: center; overflow: hidden; }
.warranty-card::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 70% at 80% 0%, rgba(0,184,201,.28), transparent 55%),
             radial-gradient(70% 60% at 10% 100%, rgba(122,201,67,.22), transparent 55%); }
.warranty-card > * { position: relative; z-index: 1; }
.wc-shield { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 20px; display: grid; place-items: center;
  background: var(--grad); color: #052033; }
.wc-shield svg { width: 40px; height: 40px; }
.warranty-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 8px; }
.warranty-card > p { font-size: .9rem; margin-bottom: 20px; color: #c3d2ea; }
.warranty-card ul { text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.warranty-card li { position: relative; padding-left: 26px; font-size: .88rem; color: #d3ddee; }
.warranty-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

/* =========================================================
   WHY
   ========================================================= */
.why { background: var(--bg-alt); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.why-card { padding: 32px 26px; border-radius: var(--radius); text-align: center;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.why-card:hover { transform: translateY(-6px); border-color: rgba(0,184,201,.5); box-shadow: var(--shadow); }
.why-ic { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 16px; display: grid; place-items: center;
  background: var(--bg-tint); border: 1px solid rgba(0,184,201,.22); }
.why-ic svg { width: 28px; height: 28px; color: var(--teal-ink); }
.why-card:nth-child(2) .why-ic svg, .why-card:nth-child(4) .why-ic svg { color: var(--green-ink); }
.why-card h3 { margin-bottom: 8px; }
.why-card p { font-size: .9rem; }

/* =========================================================
   STORES
   ========================================================= */
.stores { background: var(--bg); position: relative; overflow: hidden; }
.stores-bg { position: absolute; inset: 0;
  background: radial-gradient(60% 55% at 92% 12%, rgba(0,184,201,.08), transparent 60%),
              radial-gradient(55% 55% at 6% 100%, rgba(122,201,67,.08), transparent 60%); }
.stores-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.stores-copy h2 { margin: 16px 0 16px; }
.city-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.city-chips span { font-size: .84rem; font-weight: 500; padding: 8px 16px; border-radius: 100px;
  background: var(--card); border: 1px solid var(--line); color: var(--text-strong); box-shadow: var(--shadow-sm);
  transition: .25s var(--ease); }
.city-chips span:hover { border-color: var(--green); color: var(--green-ink); transform: translateY(-2px); }
.stores-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.stores-visual { position: relative; }
.stores-visual img { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.stores-tag { position: absolute; top: 18px; left: 18px; display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px;
  font-size: .8rem; font-weight: 600; color: var(--text-strong); box-shadow: var(--shadow-sm); }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(122,201,67,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(122,201,67,.55)} 70%{box-shadow:0 0 0 10px rgba(122,201,67,0)} 100%{box-shadow:0 0 0 0 rgba(122,201,67,0)} }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--bg-alt); }
.tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tst { padding: 30px 28px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.tst .stars { color: var(--green-ink); letter-spacing: 2px; margin-bottom: 14px; }
.tst blockquote { color: var(--ink); font-size: .98rem; line-height: 1.6; margin-bottom: 16px; }
.tst figcaption { font-family:var(--font-display); font-weight: 600; font-size: .85rem; color: var(--teal-ink); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 14px; background: var(--card); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .3s; }
.faq-item[open] { border-color: rgba(0,184,201,.5); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; padding: 20px 24px; font-family:var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--text-strong);
  list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid rgba(0,184,201,.4); outline-offset: -3px; border-radius: 12px; }
.faq-plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--teal-ink);
  border-radius: 2px; transition: transform .3s var(--ease); }
.faq-plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item p { padding: 0 24px 22px; font-size: .94rem; }

/* =========================================================
   CONTACT / CTA
   ========================================================= */
.contact { background: var(--bg-alt); }
/* CTA — a bold navy accent band */
.cta-banner { position: relative; text-align: center; max-width: 900px; margin: 0 auto 56px; padding: 56px 40px; border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(0,184,201,.30), transparent 58%),
    linear-gradient(rgba(6,18,40,.86), rgba(6,18,40,.94)),
    url("../img/film.jpg") center/cover no-repeat;
  color: #fff; box-shadow: var(--shadow); overflow: hidden; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-banner p { font-size: 1.05rem; color: #c9d6ec; }

.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: start; }
.contact-form { padding: 34px; border-radius: var(--radius-lg);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 20px; }
.contact-form label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 14px; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; margin-top: 7px; padding: 13px 15px; border-radius: 12px;
  background: var(--input-bg); border: 1px solid var(--line); color: var(--text-strong);
  font-family: 'Poppins',sans-serif; font-size: .92rem; transition: border-color .2s, box-shadow .2s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted-2); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,184,201,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--green-ink); }

.contact-info { padding: 34px; border-radius: var(--radius-lg);
  background: var(--bg-tint); border: 1px solid rgba(0,184,201,.28); }
.contact-info h3 { font-size: 1.5rem; }
.ci-tag { font-family:var(--font-display); font-weight: 700; color: var(--teal-ink); font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 22px; }
.ci-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.ci-list li { display: flex; flex-direction: column; color: var(--ink); font-size: .98rem; }
.ci-list li span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.ci-list li a { color: var(--ink); font-size: .98rem; }
.ci-list li a:hover { color: var(--teal-ink); }
.ci-socials { display: flex; gap: 12px; }
.ci-socials a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: .25s var(--ease); }
.ci-socials a svg { width: 20px; height: 20px; color: var(--text-strong); }
.ci-socials a:hover { transform: translateY(-3px); border-color: var(--green); }
.ci-socials a:hover svg { color: var(--green-ink); }

/* =========================================================
   FOOTER — navy anchor
   ========================================================= */
.site-footer { background: var(--navy); color: #cdd8ea; border-top: 3px solid; border-image: var(--grad) 1; padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1.6fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand img { height: 42px; }
.footer-brand p { font-size: .92rem; max-width: 320px; color: #9fb0cb; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-links h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.footer-links a { display: block; font-size: .9rem; color: #9fb0cb; margin-bottom: 9px; transition: color .2s; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: #8494b0; }
.footer-tagline { color: #9fb0cb; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .feature-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .plan-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .tech-inner, .warranty-inner, .stores-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .tst-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .main-nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--card); padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .35s var(--ease);
    box-shadow: 0 20px 40px -22px rgba(7,26,61,.3); }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .main-nav a::after { display: none !important; }
  .nav-cta { margin-top: 14px; text-align: center; border-bottom: none !important; }
  .nav-toggle { display: flex; }

  /* tighter rhythm on mobile */
  .section { padding: 56px 0; }
  .section-head.center { margin-bottom: 32px; }
  .feature-strip { padding: 44px 0; }

  /* 2-up compact grids to cut scrolling */
  .feature-grid, .why-grid, .steps { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .plan-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  .feature-item, .why-card { padding: 22px 16px; }
  .feature-item h3, .why-card h3, .step h3 { font-size: 1rem; }
  .feature-item p { display: none; }            /* titles are self-explanatory */
  .why-card p, .step p { font-size: .82rem; }
  .feature-ic, .why-ic { width: 44px; height: 44px; margin-bottom: 12px; }
  .feature-ic svg, .why-ic svg { width: 22px; height: 22px; }

  .step { padding: 24px 16px; }
  .step-ic { width: 50px; height: 50px; margin-bottom: 12px; }
  .step-ic svg { width: 24px; height: 24px; }
  .step-num { font-size: .95rem; top: 12px; right: 12px; }

  .how-banner { margin-bottom: 30px; }
  .how-banner img { height: 190px; }
  .how-banner-label { font-size: .82rem; left: 16px; bottom: 16px; }

  .plan-card { padding: 28px 22px 26px; }
  .cta-banner { padding: 40px 22px; }
  .marquee-track span { font-size: .85rem; }

  .stat { padding: 0 12px; }
  .stat-num { font-size: 1.7rem; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; padding-top: 20px; padding-bottom: 30px; }

  .tech-float-1 { right: 6px; }
  .tech-float-2 { left: 6px; }
  .hero-badge { left: 10px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
