/* ╔══════════════════════════════════════════════════════════════╗
   ║  ZEROCALLIX — MASTER STYLESHEET                              ║
   ║  Theme: Premium Light — White / Off-White / Deep Navy        ║
   ║  Inspired by Retell AI design language                       ║
   ║  Fonts: Georgia (display) · Inter (body) · DM Mono (code)   ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ===== VARIABLES ===== */
:root {
  /* Backgrounds — cool arctic whites with faint blue undertone */
  --bg:      #FAFBFF;
  --bg2:     #F0F3FA;
  --bg3:     #E4E9F4;
  --card:    #FFFFFF;
  --card2:   #F0F3FA;
  --card-h:  #E4E9F4;

  /* Brand / Accent — Deep Sapphire palette */
  --navy:    #0E1628;
  --navy2:   #162035;
  --blue:    #1E3A8A;
  --accent:  #3B82F6;
  --accent2: #1D4ED8;

  /* Text */
  --text:    #1E2A3D;
  --muted:   #526080;
  --dim:     #8C9DB8;
  --white:   #FFFFFF;

  /* Borders */
  --border:  rgba(30,42,61,0.08);
  --border2: rgba(30,42,61,0.14);
  --border3: rgba(30,42,61,0.22);

  /* Status */
  --red:    #DC2626;
  --green:  #059669;
  --gold:   #D97706;

  /* Fonts */
  --ff:  'Inter', 'Outfit', sans-serif;
  --fd:  Georgia, 'Times New Roman', serif;
  --fm:  'DM Mono', monospace;

  /* Spacing */
  --pad: clamp(64px, 10vw, 120px);
  --mx:  1180px;

  /* Radius */
  --r:  10px;
  --r2: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font:inherit; color:inherit; }
input, select, textarea { font:inherit; color:inherit; }

/* ===== CONTAINER ===== */
.c { max-width:var(--mx); width:100%; margin:0 auto; padding:0 32px; box-sizing:border-box; }

/* ===== SECTION LABELS ===== */
.stag {
  font-family: var(--ff);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.stag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(0.8); }
}

.stitle {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 52px);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.stitle strong { font-weight: 700; }
@media(max-width:600px) {
  .stitle { font-size: clamp(26px, 8vw, 36px); }
}
.ssub {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 17px);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 600;
  border-radius: var(--r);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.1px;
}
.btn-s { padding: 9px 18px; font-size: 13px; }
.btn-l { padding: 14px 28px; font-size: 15px; }
.btn-f { width:100%; justify-content:center; }

.btn-p {
  background: var(--navy);
  color: #fff;
  border: 1px solid var(--navy);
}
.btn-p:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(15,22,41,0.18); }

.btn-o {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border2);
}
.btn-o:hover { border-color: var(--navy); background: rgba(15,22,41,0.04); }

.btn-g {
  background: rgba(15,22,41,0.05);
  color: var(--navy);
  border: 1px solid var(--border);
}
.btn-g:hover { background: rgba(15,22,41,0.09); }

/* ===== SCROLL ANIMATION =====
   Only hide elements when JS has loaded — prevents blank flash on slow
   connections and broken appearance in crawlers / screenshots.
   js-ready class is added to <html> immediately by inline script. */
.js-ready .anim { opacity:0; transform:translateY(20px); transition:opacity .55s ease, transform .55s ease; }
.js-ready .anim.in { opacity:1; transform:translateY(0); }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  TICKER BAR                                                  ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ticker-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 34px;
  background: #0E1628;
  border-bottom: 1px solid rgba(59,130,246,0.14);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.2px;
  flex-shrink: 0;
}
.ticker-item .ticker-dot { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,0.3); flex-shrink:0; }
.ticker-item strong { color: rgba(255,255,255,0.9); font-weight:600; }
.ticker-item .ticker-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
@media(max-width:480px) {
  .ticker-bar { height:28px; }
  .ticker-item { font-size:10.5px; padding:0 24px; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  NAVBAR                                                      ║
   ╚══════════════════════════════════════════════════════════════╝ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0;
  background: #0E1628;
  border-bottom: 1px solid rgba(59,130,246,0.12);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(14,22,40,0.97);
  box-shadow: 0 1px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,130,246,0.08);
  backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}
.nav__logo-img {
  display: block;
  height: 44px;
  width: auto;
}

/* Nav Links */
.nav__lnk {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__lnk > a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav__lnk > a:hover,
.nav__lnk > a.act { color: #fff; }

/* Dropdown */
.nav__drop { position: relative; }
.nav__drop-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.nav__drop-btn:hover { color: #fff; }
.nav__drop-btn svg { transition: transform 0.25s; }
.nav__drop:hover .nav__drop-btn svg { transform: rotate(180deg); }
.nav__drop:hover .nav__drop-btn { color: #fff; }

.nav__drop-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  min-width: 220px;
  background: #162035;
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: var(--r);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,130,246,0.06);
  z-index: 100;
}
.nav__drop:hover .nav__drop-menu,
.nav__drop.open .nav__drop-menu,
.nav__drop-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav__drop.open .nav__drop-btn svg,
.nav__drop:hover .nav__drop-btn svg { transform: rotate(180deg); }
.nav__drop-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  border-radius: 7px;
  transition: all 0.15s;
}
.nav__drop-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

/* Nav Right */
.nav__r { display: flex; align-items: center; gap: 8px; }

.nav__btn-pricing,
.nav__btn-demo,
.nav__client-login {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 36px !important;
  padding: 0 16px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  font-family: var(--ff) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
  line-height: 1 !important;
}

.nav__btn-pricing {
  color: rgba(255,255,255,0.7) !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.nav__btn-pricing:hover { color: #fff !important; border-color: rgba(255,255,255,0.5) !important; }

.nav__btn-demo {
  font-weight: 600 !important;
  background: #3B82F6 !important;
  color: #fff !important;
  border: 1px solid #3B82F6 !important;
  padding: 0 20px !important;
}
.nav__btn-demo:hover { background: #2563EB !important; box-shadow: 0 4px 20px rgba(59,130,246,0.4) !important; transform: translateY(-1px) !important; }

.nav__client-login {
  color: rgba(255,255,255,0.7) !important;
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.nav__client-login:hover { color: #fff !important; border-color: rgba(255,255,255,0.5) !important; }

/* Hamburger */
.nav__ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}
.nav__ham span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__ham.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__ham.open span:nth-child(2) { opacity: 0; }
.nav__ham.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media(max-width:960px) {
  .nav__lnk {
    position: fixed;
    inset: 0;
    background: #0E1628;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    z-index: 1001;
    padding: 20px;
  }
  .nav__lnk.open { opacity:1; pointer-events:all; }
  .nav__lnk > a, .nav__drop-btn, .nav__lnk .nav__client-login-mob {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 240px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    border-radius: 8px;
    text-align: center;
    border: 1px solid transparent;
    transition: color 0.2s, background 0.2s;
  }
  .nav__lnk > a:hover, .nav__drop-btn:hover, .nav__lnk .nav__client-login-mob:hover {
    color: #fff;
    background: rgba(255,255,255,0.07);
  }
  .nav__drop-menu { display: none !important; }
  .nav__drop-btn svg { display: none; }
  .nav__ham { display: flex; }
  .nav__r .btn-g, .nav__r .btn-p { display: none; }
  .nav__btn-pricing { display: none !important; }
  .nav__btn-demo    { display: none !important; }
  .nav__client-login { display: none !important; }
}
@media(min-width:961px) { .nav__ham { display:none; } .nav__client-login-mob { display:none !important; } }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  MARQUEE / SCROLLING TICKER (hero-inline)                    ║
   ╚══════════════════════════════════════════════════════════════╝ */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
}
.marquee-track { display: flex; white-space: nowrap; }
.marquee-inner {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}
.marquee-inner span {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.marquee-dot { color: rgba(255,255,255,0.2) !important; font-size:16px !important; font-weight:300 !important; }
.marquee-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 9.5px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.8) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.marquee-inner strong { color: rgba(255,255,255,0.85); font-weight:600; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-inner { animation: none; } }
.marquee-wrap--hero {
  margin: 32px -32px 0;
  border-radius: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  HERO                                                        ║
   ╚══════════════════════════════════════════════════════════════╝ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: clip;
  background: var(--navy);
}

.hero__bg { position:absolute; inset:0; z-index:0; }

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  pointer-events: none;
}
.hero__o1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.55), transparent 70%);
  top: -200px; right: -150px;
  animation: oF 14s ease-in-out infinite;
}
.hero__o2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,0.45), transparent 70%);
  bottom: -100px; left: -80px;
  animation: oF 18s ease-in-out infinite reverse;
}
@keyframes oF {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(20px,-30px); }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 52px 52px;
}
#sf { position:absolute; inset:0; width:100%; height:100%; }

.hero__w { position:relative; z-index:1; }
.hero__c { max-width: 820px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  text-transform: uppercase;
  font-weight: 500;
}
.dp {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero__title strong { font-weight: 700; }

/* No gradient text in hero — keep it white and clean */
.tg { color: var(--white); }
.hero .tg { color: rgba(255,255,255,0.85); }

.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.hero .btn-p {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.hero .btn-p:hover { background: rgba(255,255,255,0.9); box-shadow: 0 4px 24px rgba(255,255,255,0.2); }
.hero .btn-o {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero .btn-o:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r2);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.hero__sv {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
}
.hero__sl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hero__sep { width:1px; height:36px; background:rgba(255,255,255,0.12); }
@media(max-width:600px) {
  .hero__sep { display:none; }
  .hero__stats { flex-direction:column; align-items:flex-start; gap:18px; }
}

/* Scroll-margin — prevent sticky nav (68px) covering section headings */
section[id], .hero[id], .trust[id], .calc[id], .feat[id],
.ind[id], .price[id], .cases[id], .demo[id], .faq[id], .contact[id] {
  scroll-margin-top: 80px;
}

/* Marquee — prevent right-edge clip */
.marquee-wrap--hero {
  overflow: hidden;
  margin: 32px 0 0;
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  TRUST / LOGO BAR                                            ║
   ╚══════════════════════════════════════════════════════════════╝ */
.trust {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
}
.trust__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust__row::-webkit-scrollbar { display:none; }
.ti {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}
.ti__ico {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg2);
  flex-shrink: 0;
}
.ti__ico svg { width:18px; height:18px; stroke: var(--accent); fill:none; stroke-width:2; }
.ti strong { display:block; font-size:13px; color:var(--navy); font-weight:600; }
.ti span   { display:block; font-size:11px; color:var(--muted); }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  PROBLEM                                                     ║
   ╚══════════════════════════════════════════════════════════════╝ */
.prob { padding: 40px 0 var(--pad); background: var(--bg); }
.prob__g {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.prob__c {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s;
}
.prob__c:hover {
  border-color: var(--border3);
  background: var(--bg2);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15,22,41,0.06);
}
.prob__n {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 52px);
  color: var(--red);
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.prob__c p { font-size:14px; color:var(--muted); line-height:1.65; }
.prob__c p strong { color:var(--navy); }
.prob__sol {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}
.prob__sol .prob__n { color: #fff; }
.prob__sol p { color: rgba(255,255,255,0.7); }
.prob__sol p strong { color: #fff !important; }
.prob__sol-ico {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prob__sol-ico svg { width:24px; height:24px; stroke:#fff; fill:none; stroke-width:2.5; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  HOW IT WORKS                                                ║
   ╚══════════════════════════════════════════════════════════════╝ */
.how { padding: var(--pad) 0; background: var(--bg2); border-top: 1px solid var(--border); }

.how__phases { display: flex; flex-direction: column; gap: 0; }

.how__phase {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.how__phase:last-child { border-bottom: none; }
@media(max-width:768px) {
  .how__phase { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
}

.how__phase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.how__phase-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--ff);
}
.how__phase-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.how__phase-ico svg { width:18px; height:18px; stroke:#fff; fill:none; stroke-width:1.75; }

.how__phase-hd h3 {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.how__phase-hd p { font-size:14px; color:var(--muted); line-height:1.7; }

.how__list { display: flex; flex-direction: column; gap: 0; }
.how__list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}
.how__list li:last-child { border-bottom: none; }
.how__list li strong { color: var(--navy); }
.how__li-ico {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.how__li-ico svg { width:15px; height:15px; stroke:var(--accent); fill:none; stroke-width:2; }

.how__cta {
  padding-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.how__note { font-size:13px; color:var(--muted); }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  FEATURES                                                    ║
   ╚══════════════════════════════════════════════════════════════╝ */
.feat { padding: var(--pad) 0; background: var(--bg); border-top: 1px solid var(--border); }

/* Tab nav */
.feat__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  width: fit-content;
}
.feat__tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  border: none;
  background: none;
  font-family: var(--ff);
}
.feat__tab svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; }
.feat__tab:hover { color: var(--navy); background: var(--bg3); }
.feat__tab--active {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(30,42,61,0.10), 0 0 0 1px var(--border);
}

/* Panels */
.feat__panels { position: relative; }
.feat__panel { display: none; }
.feat__panel--active { display: block; }

/* Card grid */
.feat__g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}
.feat__c {
  position: relative;
  background: var(--bg);
  padding: 28px 24px 36px;
  transition: background 0.2s;
}
.feat__c:hover { background: var(--bg2); }
.feat__ico {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feat__ico svg { width:17px; height:17px; stroke:var(--accent); fill:none; stroke-width:2; }
.feat__c h3 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.feat__c p { font-size:13px; color:var(--muted); line-height:1.65; }
.feat__tag {
  position: absolute;
  top: 14px; right: 14px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.feat__tag--core {
  background: rgba(59,130,246,0.08);
  color: var(--accent);
  border: 1px solid rgba(59,130,246,0.18);
}
.feat__tag--new {
  background: rgba(5,150,105,0.08);
  color: var(--green);
  border: 1px solid rgba(5,150,105,0.2);
}

/* Mobile tab scroll */
@media(max-width:680px) {
  .feat__tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .feat__tabs::-webkit-scrollbar { display: none; }
  .feat__tab { padding: 8px 14px; font-size: 12.5px; }
  .feat__g { grid-template-columns: 1fr 1fr; }
  .feat__c { padding: 20px 16px 28px; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  DASHBOARD PREVIEW                                           ║
   ╚══════════════════════════════════════════════════════════════╝ */
.dbprev { padding: var(--pad) 0; background: var(--bg2); border-top: 1px solid var(--border); }
.dbprev__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media(max-width:860px) { .dbprev__wrap { grid-template-columns:1fr; } }

.dbprev__panel {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 28px;
}
.dbprev__panel-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 4px;
}
.dbprev__panel-title {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}
.dbprev__panel-sub { font-size:13px; color:var(--muted); margin-bottom:20px; }

.dbprev__calls { display:flex; flex-direction:column; gap:0; }
.dbprev__call {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.dbprev__call:last-child { border-bottom:none; }
.dbprev__call-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.dbprev__call-top strong { font-size:14px; color:var(--navy); font-weight:600; }
.dbprev__call-meta { font-size:12px; color:var(--dim); margin-bottom:4px; }

.dbprev__tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.dbprev__tag--booked    { background:rgba(5,150,105,0.1);   color:var(--green);  border:1px solid rgba(5,150,105,0.2); }
.dbprev__tag--followup  { background:rgba(217,119,6,0.1);   color:var(--gold);   border:1px solid rgba(217,119,6,0.2); }
.dbprev__tag--escalated { background:rgba(220,38,38,0.08);  color:var(--red);    border:1px solid rgba(220,38,38,0.18); }

.dbprev__urgency {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 100px;
}
.dbprev__urgency--high { background:rgba(220,38,38,0.07); color:var(--red); }
.dbprev__urgency--med  { background:rgba(217,119,6,0.07); color:var(--gold); }
.dbprev__urgency--low  { background:rgba(5,150,105,0.07); color:var(--green); }

.dbprev__bookings { display:flex; flex-direction:column; gap:0; margin-bottom:20px; }
.dbprev__booking {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.dbprev__booking:last-child { border-bottom:none; }
.dbprev__booking-top {
  display:flex; align-items:center; justify-content:space-between; margin-bottom:2px;
}
.dbprev__booking-top strong { font-size:14px; color:var(--navy); font-weight:600; }
.dbprev__booking-service { font-size:13px; color:var(--text); margin-bottom:2px; }
.dbprev__booking-meta { font-size:12px; color:var(--dim); }
.dbprev__bstatus {
  display:inline-block; padding:2px 9px; border-radius:100px;
  font-size:10px; font-weight:600;
}
.dbprev__bstatus--confirmed { background:rgba(5,150,105,0.08); color:var(--green); border:1px solid rgba(5,150,105,0.2); }
.dbprev__bstatus--review    { background:rgba(217,119,6,0.08);  color:var(--gold);  border:1px solid rgba(217,119,6,0.2); }
.dbprev__tech { font-size:11px; color:var(--accent); font-weight:500; }
.dbprev__tech--pending { color:var(--dim); }

.dbprev__roi {
  background: var(--navy);
  border-radius: var(--r);
  padding: 20px;
}
.dbprev__roi-label {
  font-size:9.5px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  color:rgba(255,255,255,0.45); margin-bottom:14px;
}
.dbprev__roi-g { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.dbprev__roi-item { }
.dbprev__roi-v {
  font-family:var(--fd); font-weight:700; font-size:22px; color:#fff; display:block; margin-bottom:2px;
}
.dbprev__roi-k { font-size:11px; color:rgba(255,255,255,0.45); }
.dbprev__note { text-align:center; font-size:13px; color:var(--muted); margin-top:28px; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  INDUSTRIES                                                  ║
   ╚══════════════════════════════════════════════════════════════╝ */
.ind { padding: var(--pad) 0; background: var(--bg); border-top: 1px solid var(--border); }
.ind__g {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 28px;
}
.ind__c {
  background: var(--bg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s;
}
.ind__c:hover { background: var(--bg2); }
.ind__ico {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg2);
  margin-bottom: 6px;
}
.ind__ico svg { width:17px; height:17px; stroke:var(--accent); fill:none; stroke-width:1.75; }
.ind__c strong { font-size:14px; color:var(--navy); font-weight:600; }
.ind__c span   { font-size:12px; color:var(--muted); line-height:1.5; }
.ind__note { font-size:13.5px; color:var(--muted); }
.ind__link { color:var(--accent); font-weight:500; }
.ind__link:hover { text-decoration:underline; }
.ind__c--hidden { display:none !important; }

@media(max-width:640px) {
  .ind__g {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }
  .ind__c {
    padding: 16px 10px;
    gap: 4px;
    align-items: center;
    text-align: center;
  }
  .ind__ico {
    width: 32px; height: 32px;
    margin-bottom: 4px;
  }
  .ind__c span { display: none; }
  .ind__c strong { font-size: 11px; line-height: 1.35; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  REVENUE CALCULATOR                                          ║
   ╚══════════════════════════════════════════════════════════════╝ */
.calc { padding: var(--pad) 0; background: var(--bg2); border-top: 1px solid var(--border); }
.calc__box {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media(max-width:768px) { .calc__box { grid-template-columns:1fr; padding:28px; gap:32px; } }
.calc__f { margin-bottom:26px; }
.calc__f label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.calc__hint { font-weight:400; color:var(--muted); margin-left:4px; }
.calc__f input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--bg3);
  border-radius: 3px;
  outline: none;
}
.calc__f input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15,22,41,0.2);
}
.calc__f input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--navy);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.calc__v {
  text-align: right;
  font-family: var(--fd);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-top: 6px;
}
.calc__formula { font-size:12px; color:var(--dim); margin-top:4px; font-family:var(--fm); }
.calc__res { display:flex; flex-direction:column; gap:14px; }
.calc__r {
  padding: 24px;
  border-radius: var(--r);
  border: 1px solid var(--border2);
  background: var(--bg2);
}
.calc__rl {
  font-size:11.5px; color:var(--muted); margin-bottom:4px;
  text-transform:uppercase; letter-spacing:0.5px; font-weight:500;
}
.calc__rv {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -1px;
}
.calc__rn { font-size:11px; color:var(--dim); margin-top:3px; }
.calc__r--lost  { }
.calc__r--lost  .calc__rv { color:var(--red); }
.calc__r--saved { }
.calc__r--saved .calc__rv { color:var(--green); }
.calc__r--roi   { background:var(--navy); border-color:var(--navy); }
.calc__r--roi   .calc__rl { color:rgba(255,255,255,0.5); }
.calc__r--roi   .calc__rv { color:#fff; }
.calc__r--roi   .calc__rn { color:rgba(255,255,255,0.4); }
.calc__r--roi .btn-p { background:#fff; color:var(--navy); border-color:#fff; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  PRICING                                                     ║
   ╚══════════════════════════════════════════════════════════════╝ */
.price { padding: var(--pad) 0; background: #fff; border-top: 1px solid #e8edf5; }
.price .stag { color: #00b4d8; }
.price .stitle { color: #0E1628; }
.price .stitle strong { color: #00b4d8; }
.price .ssub { color: #6b7280; }
.price__g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 48px;
}
@media(max-width:900px) { .price__g { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

.price__c {
  background: #FFFFFF;
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.price__c:hover { transform: translateY(-6px); border-color: var(--accent); box-shadow: 0 20px 50px rgba(59,130,246,0.12); }

/* Featured / pop card — deep sapphire dark */
.price__pop {
  background: linear-gradient(145deg, #0E1628 0%, #162035 100%) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 1px rgba(59,130,246,0.35), 0 20px 50px rgba(59,130,246,0.18);
}
.price__pop:hover { transform: translateY(-6px); box-shadow: 0 0 0 1px rgba(59,130,246,0.55), 0 24px 60px rgba(59,130,246,0.28) !important; }

.price__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.price__tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.price__pop .price__tier-label { color: #93C5FD; }

.price__desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price__pop .price__desc { color: rgba(255,255,255,0.6); }

.price__pr { margin-bottom: 8px; display: flex; align-items: baseline; gap: 4px; }
.price__amt { font-size: 48px; font-weight: 800; color: var(--navy); letter-spacing: -2px; line-height: 1; }
.price__pop .price__amt { color: #fff; }
.price__per { font-size: 15px; color: var(--dim); }
.price__pop .price__per { color: rgba(255,255,255,0.45); }
.price__orig { font-size: 15px; color: var(--dim); text-decoration: line-through; margin-right: 2px; }
.price__pop .price__orig { color: rgba(255,255,255,0.28); }

/* Discount pill — green on light, blue-tinted on dark */
.price__disc-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(5,150,105,0.10);
  color: #059669;
  border: 1px solid rgba(5,150,105,0.25);
  margin-bottom: 12px;
}
.price__pop .price__disc-pill { background: rgba(59,130,246,0.15); color: #93C5FD; border-color: rgba(59,130,246,0.35); }
.price__disc-pill--pop { background: rgba(59,130,246,0.15); color: #93C5FD; border-color: rgba(59,130,246,0.35); }
.price__trial-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: #fbbf24;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.3);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

/* Setup fee line — explicit color for both card types */
.price__setup {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.price__pop .price__setup { color: rgba(255,255,255,0.65); }

/* Usage pill */
.price__usage {
  font-size: 11.5px;
  color: var(--muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 20px;
}
.price__pop .price__usage { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }

.price__divider { height: 1px; background: var(--border2); margin-bottom: 20px; }
.price__pop .price__divider { background: rgba(255,255,255,0.10); }

.price__fl { flex: 1; margin-bottom: 24px; list-style: none; }
.price__fl li {
  padding: 6px 0;
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.5;
}
.price__pop .price__fl li { color: rgba(255,255,255,0.82); }
.price__fl li strong { color: var(--navy); }
.price__pop .price__fl li strong { color: #fff; }
.price__fl li::before {
  content: '';
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%233B82F6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.price__pop .price__fl li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%2393C5FD' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.price__ctas { margin-top: auto; }
.price__ctas .btn { width: 100%; justify-content: center; }
.price__ctas .btn-p { background: var(--accent) !important; border-color: var(--accent) !important; color: #fff !important; }
.price__ctas .btn-p:hover { background: var(--accent2) !important; border-color: var(--accent2) !important; box-shadow: 0 4px 16px rgba(59,130,246,0.35) !important; }
.price__ctas .btn-o { border-color: var(--border2) !important; color: var(--text) !important; }
.price__ctas .btn-o:hover { border-color: var(--accent) !important; color: var(--accent) !important; background: rgba(59,130,246,0.04) !important; }
.price__pop .price__ctas .btn-p { background: #fff !important; color: #0E1628 !important; border-color: #fff !important; }
.price__pop .price__ctas .btn-p:hover { background: rgba(255,255,255,0.90) !important; box-shadow: 0 4px 20px rgba(255,255,255,0.2) !important; }
.price__pop .price__ctas .btn-o { border-color: rgba(255,255,255,0.22) !important; color: rgba(255,255,255,0.72) !important; }
.price__pop .price__ctas .btn-o:hover { border-color: rgba(255,255,255,0.50) !important; color: #fff !important; background: rgba(255,255,255,0.06) !important; }

.price__note { text-align: center; font-size: 11.5px; color: var(--dim); margin-top: 10px; }
.price__pop .price__note { color: rgba(255,255,255,0.32); }

.price__launch-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #0E1628 0%, #162035 100%);
  border: 1px solid rgba(250,204,21,0.3);
  border-radius: 12px;
  padding: 14px 24px;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.price__launch-tag strong { color: #facc15; }
.price__launch-icon {
  font-size: 13px;
  color: #facc15;
  flex-shrink: 0;
  letter-spacing: -1px;
}

.price__crm-pitch {
  position: relative;
  background: linear-gradient(135deg, rgba(5,150,105,0.07) 0%, rgba(59,130,246,0.07) 100%);
  border: 1px solid rgba(5,150,105,0.22);
  border-radius: 8px;
  padding: 9px 12px 9px 36px !important;
  margin: 4px 0 12px !important;
  color: var(--text) !important;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 0.01em;
  list-style: none !important;
}
.price__crm-pitch::before {
  content: '' !important;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px !important;
  height: 14px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Ccircle cx='7' cy='7' r='6.5' stroke='%23059669' stroke-width='1'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23059669' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  margin-top: 0 !important;
}
.price__crm-pitch strong { color: #059669 !important; }
.price__pop .price__crm-pitch {
  background: linear-gradient(135deg, rgba(5,150,105,0.12) 0%, rgba(59,130,246,0.12) 100%);
  border-color: rgba(5,150,105,0.35);
  color: #A7F3D0 !important;
}
.price__pop .price__crm-pitch strong { color: #6EE7B7 !important; }

.price__addons {
  margin-top: clamp(40px, 5vw, 64px);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
}
.price__addons-label {
  font-size: 12px;
  font-weight: 600;
  color: #0E1628;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}
.price__addons-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media(max-width:768px) { .price__addons-g { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px) { .price__addons-g { grid-template-columns: 1fr; } }
.price__addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
  gap: 10px;
}
.price__addon-name { font-size: 13px; color: #374151; font-weight:500; }
.price__addon-price { font-size: 12px; font-weight: 700; color: #00b4d8; white-space: nowrap; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  DEMO                                                        ║
   ╚══════════════════════════════════════════════════════════════╝ */
.demo { padding: var(--pad) 0; background: var(--bg2); border-top: 1px solid var(--border); }
.demo__bx {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
}
@media(max-width:768px) { .demo__bx { grid-template-columns:1fr; } }
.demo__ph {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r2);
  padding: 48px;
  text-align: center;
}
.demo__ring-w {
  position: relative;
  width: 88px; height: 88px;
  margin: 0 auto 24px;
}
.demo__ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: rp 2s infinite;
}
.demo__ring:nth-child(2) { animation-delay: 0.35s; }
.demo__ring:nth-child(3) { animation-delay: 0.70s; }
@keyframes rp {
  0%   { transform:scale(1); opacity:.4; }
  100% { transform:scale(2.2); opacity:0; }
}
.demo__ph-ico {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo__ph-ico svg { width:42px; height:42px; }
.demo__ph h3 {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}
.demo__ph > p { color:rgba(255,255,255,0.5); font-size:13px; margin-bottom:24px; }
.demo .btn-p {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.demo .btn-p:hover { background:rgba(255,255,255,0.92); }
.demo__tags {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  margin-top: 18px;
}
.demo__fs { display:flex; flex-direction:column; gap:12px; }
.demo__f {
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: all 0.2s;
}
.demo__f:hover { border-color:var(--border3); background:var(--bg2); }
.demo__f strong { display:block; font-size:14px; color:var(--navy); font-weight:600; margin-bottom:3px; }
.demo__f span   { font-size:12.5px; color:var(--muted); }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  TESTIMONIALS / CASE STUDIES                                 ║
   ╚══════════════════════════════════════════════════════════════╝ */
.cases { padding: var(--pad) 0; background: var(--bg); border-top: 1px solid var(--border); }
.cases__g {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.cases__c {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 28px;
  transition: all 0.25s;
}
.cases__c:hover { border-color:var(--border3); transform:translateY(-3px); box-shadow:0 10px 32px rgba(15,22,41,0.06); }
.cases__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 6px;
}
.cases__ind { font-size:12px; font-weight:600; color:var(--navy); text-transform:uppercase; letter-spacing:0.5px; }
.cases__loc { font-size:11.5px; color:var(--dim); }
.cases__mv {
  font-family: var(--fd);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--navy);
  letter-spacing: -1px;
  margin-bottom: 2px;
}
.cases__ml { font-size:12px; color:var(--muted); margin-bottom:16px; }
.cases__c blockquote {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 2px solid var(--border3);
}
.cases__stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cases__stats span {
  font-size: 11.5px;
  color: var(--muted);
  background: var(--bg3);
  border-radius: 100px;
  padding: 3px 10px;
}
.cases__c--hidden { display:none !important; }
.cases__stats span strong { color:var(--navy); }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  CONTACT CTA                                                 ║
   ╚══════════════════════════════════════════════════════════════╝ */
.contact { padding: var(--pad) 0; background: var(--navy); border-top: 1px solid var(--border); }
.contact__cta { max-width: 680px; }
.contact .stag { color: rgba(255,255,255,0.5); }
.contact .stag::before { background: rgba(255,255,255,0.4); }
.contact .stitle { color: #fff; }
.contact .ssub { color: rgba(255,255,255,0.55); }
.contact__pts { display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
.contact__pt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact__pt-ico {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__pt-ico svg { width:12px; height:12px; stroke:#fff; fill:none; stroke-width:2.5; }
.contact__pt strong { display:block; font-size:14px; color:#fff; margin-bottom:2px; }
.contact__pt span   { font-size:13px; color:rgba(255,255,255,0.5); }
.contact__actions { display:flex; flex-direction:column; gap:10px; align-items:flex-start; }
.contact .btn-p { background:#fff; color:var(--navy); border-color:#fff; }
.contact .btn-p:hover { background:rgba(255,255,255,0.92); }
.contact__note { font-size:12px; color:rgba(255,255,255,0.4); }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  MODAL                                                       ║
   ╚══════════════════════════════════════════════════════════════╝ */
.modal { display:none; position:fixed; inset:0; z-index:2000; }
.modal.open { display:flex; align-items:center; justify-content:center; }
.modal__overlay {
  position: absolute; inset:0;
  background: rgba(15,22,41,0.5);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 36px;
  max-width: 620px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(15,22,41,0.15);
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex; align-items:center; justify-content:center;
  cursor:pointer;
  transition: background 0.2s;
  color: var(--muted);
}
.modal__close:hover { background: var(--bg3); color: var(--navy); }
.modal__hd { margin-bottom: 24px; }
.modal__hd h3 { font-family:var(--fd); font-size:22px; font-weight:400; color:var(--navy); margin-bottom:4px; }
.modal__hd p { font-size:14px; color:var(--muted); }
.modal__form { display:flex; flex-direction:column; gap:16px; }
.modal__row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media(max-width:560px) { .modal__row { grid-template-columns:1fr; } .modal__box { padding:24px; } }

.fg { display:flex; flex-direction:column; gap:6px; }
.fg label { font-size:12.5px; font-weight:600; color:var(--navy); text-transform:uppercase; letter-spacing:0.5px; }
.fg input, .fg select, .fg textarea {
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,119,182,0.08);
}
.fg textarea { resize: vertical; min-height: 80px; }

.sub__agree { }
.sub__chk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}
.sub__chk input[type="checkbox"] {
  margin-top: 2px;
  width: 15px; height: 15px;
  flex-shrink: 0;
  accent-color: var(--navy);
}
.sub__chk a { color:var(--accent); }
.sub__chk a:hover { text-decoration:underline; }
.fn { font-size:11.5px; color:var(--dim); text-align:center; margin-top:4px; }

.form-ok { display:none; text-align:center; padding: 24px 0; }
.form-ok.show { display:block; }
.form-ok__ico { margin-bottom:16px; }
.form-ok h3 { font-family:var(--fd); font-size:22px; color:var(--navy); margin-bottom:8px; }
.form-ok p { font-size:14px; color:var(--muted); }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  FAQ                                                         ║
   ╚══════════════════════════════════════════════════════════════╝ */
.faq { padding: var(--pad) 0; background: var(--bg2); border-top: 1px solid var(--border); }
.faq__list { display:flex; flex-direction:column; gap:0; max-width: 780px; }
.faq__item {
  border-bottom: 1px solid var(--border2);
}
.faq__item:first-child { border-top: 1px solid var(--border2); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--accent); }
.faq__arr {
  font-size: 20px;
  font-weight: 300;
  color: var(--dim);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq__item.open .faq__arr { transform: rotate(45deg); }
.faq__a { display:none; padding-bottom:18px; }
.faq__a.open { display:block; }
.faq__a p { font-size:14px; color:var(--muted); line-height:1.75; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  FOOTER                                                      ║
   ╚══════════════════════════════════════════════════════════════╝ */
.footer {
  background: #0E1628;
  border-top: 1px solid rgba(59,130,246,0.14);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(59,130,246,0.12);
}
@media(max-width:768px) { .footer__top { grid-template-columns:1fr; gap:36px; } }
.footer__brand { }
.footer__tagline { font-size:14px; color:rgba(255,255,255,0.7); line-height:1.7; margin-top:8px; max-width:300px; }
.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 5px 14px;
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 100px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.75);
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media(max-width:560px) { .footer__nav { grid-template-columns: repeat(2,1fr); } }
.footer__col { display:flex; flex-direction:column; gap:10px; }
.footer__col strong { font-size:12px; font-weight:600; color:#fff; text-transform:uppercase; letter-spacing:0.8px; margin-bottom:4px; }
.footer__col a { font-size:13.5px; color:rgba(255,255,255,0.65); transition:color 0.2s; }
.footer__col a:hover { color:#fff; }
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__copy { font-size:12.5px; color:rgba(255,255,255,0.5); }
.footer__logo-img { height: 52px; width:auto; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  SUBSCRIBE MODAL (multi-step)                                ║
   ╚══════════════════════════════════════════════════════════════╝ */
.sub { display:none; position:fixed; inset:0; z-index:3000; }
.sub.open { display:flex; align-items:center; justify-content:center; }
.sub__overlay { position:absolute; inset:0; background:rgba(15,22,41,0.5); backdrop-filter:blur(4px); }
.sub__box {
  position: relative;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 40px;
  max-width: 540px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(15,22,41,0.15);
}
.sub__close {
  position:absolute; top:14px; right:14px;
  width:32px; height:32px;
  border-radius:50%; background:var(--bg2);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background 0.2s;
  color:var(--muted);
}
.sub__close:hover { background:var(--bg3); color:var(--navy); }
.sub__hd { margin-bottom:24px; }
.sub__hd h3 { font-family:var(--fd); font-size:22px; font-weight:400; color:var(--navy); margin-bottom:4px; }
.sub__hd p { font-size:13.5px; color:var(--muted); }
.sub__pg { display:flex; align-items:center; gap:6px; margin-bottom:20px; }
.sub__pg-step {
  width:28px; height:28px;
  border-radius:50%;
  background:var(--bg2);
  border:2px solid var(--border2);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700; color:var(--dim);
  transition:all 0.25s;
}
.sub__pg-step.act { background:var(--navy); border-color:var(--navy); color:#fff; }
.sub__pg-step.done { background:var(--green); border-color:var(--green); color:#fff; }
.sub__pg-line { flex:1; height:2px; background:var(--border2); border-radius:2px; }
.sub__pg-line.done { background:var(--green); }
.sub__pane { display:none; }
.sub__pane.act { display:block; }
.sub__actions { display:flex; gap:10px; margin-top:20px; }
.sub__note { font-size:11.5px; color:var(--dim); text-align:center; margin-top:8px; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  ONBOARDING (shared styles)                                  ║
   ╚══════════════════════════════════════════════════════════════╝ */
.onb { min-height:100vh; background:var(--bg2); display:flex; align-items:center; justify-content:center; padding:40px 24px; }
.onb__box {
  background:#fff;
  border:1px solid var(--border2);
  border-radius:var(--r2);
  padding: clamp(28px, 5vw, 48px);
  max-width: 620px;
  width:100%;
  box-shadow: 0 8px 32px rgba(15,22,41,0.06);
}
.onb__logo { margin-bottom:28px; }
.onb__logo img { height:56px; width:auto; }
.onb__ttl { font-family:var(--fd); font-size:clamp(20px,3vw,28px); color:var(--navy); font-weight:400; margin-bottom:8px; }
.onb__sub { font-size:14px; color:var(--muted); margin-bottom:28px; line-height:1.65; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  SETUP GUIDE                                                 ║
   ╚══════════════════════════════════════════════════════════════╝ */
.guide { padding: 80px 0 var(--pad); }
.guide__step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.guide__step:last-child { border-bottom:none; }
.guide__num {
  width:48px; height:48px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--fd); font-size:18px; font-weight:700;
  flex-shrink:0;
}
.guide__step h3 { font-family:var(--fd); font-size:18px; font-weight:400; color:var(--navy); margin-bottom:6px; }
.guide__step p { font-size:14px; color:var(--muted); line-height:1.7; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  LEGAL PAGES (privacy / terms)                               ║
   ╚══════════════════════════════════════════════════════════════╝ */
.legal { padding: 80px 0 var(--pad); }
.legal h1 { font-family:var(--fd); font-size:clamp(28px,4vw,42px); color:var(--navy); margin-bottom:8px; font-weight:400; }
.legal .date { font-size:13px; color:var(--muted); margin-bottom:48px; }
.legal h2 { font-family:var(--fd); font-size:20px; color:var(--navy); margin:36px 0 10px; font-weight:400; }
.legal p, .legal li { font-size:14.5px; color:var(--text); line-height:1.8; margin-bottom:12px; }
.legal ul { padding-left:20px; list-style:disc; }
.legal a { color:var(--accent); }
.legal a:hover { text-decoration:underline; }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  RESPONSIVE HELPERS                                          ║
   ╚══════════════════════════════════════════════════════════════╝ */
@media(max-width:480px) {
  .c { padding: 0 20px; }
  .stitle { letter-spacing:-0.3px; }
  .ssub { margin-bottom:32px; }
  .btn-l { padding:13px 22px; font-size:14px; }
  .hero { padding:130px 0 70px; }
  .ticker-bar { display:none; }
  .nav { top:0; }
}
@media(max-width:768px) {
  .how__cta { flex-direction:column; align-items:flex-start; }
  .cases__g { grid-template-columns:1fr; }
  .dbprev__roi-g { grid-template-columns:1fr 1fr; }
}

/* Override gradient text outside hero — use navy */
.tg {
  color: var(--navy);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  font-weight: 700;
}
.hero .tg {
  color: rgba(255,255,255,0.9);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.contact .tg { color: rgba(255,255,255,0.9); }


/* ╔══════════════════════════════════════════════════════════════╗
   ║  DESIGN POLISH — Premium overrides                           ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── Typography scale — tight, consistent, premium ────────── */
.stitle {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.8px;
  line-height: 1.18;
}
.ssub {
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
}
.hero__title {
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: -1.5px;
  line-height: 1.08;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}

/* ── Hero stats — clean mono numbers ──────────────────────── */
.hero__sv {
  font-family: var(--ff);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero__sl {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.hero__stats {
  gap: 28px;
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  flex-wrap: wrap;
}
.hero__sep { width:1px; height:28px; background:rgba(255,255,255,0.1); }

/* ── Problem stats — clean numbers, no serif ──────────────── */
.prob__n {
  font-family: var(--ff);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}

/* ── Industries — big clickable cards, trade colors ───────── */
.ind__g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: none;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
}
.ind__c {
  background: var(--card);
  border: 1.5px solid var(--border2);
  border-radius: 14px;
  padding: 28px 22px;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}
.ind__c::after {
  content: '→';
  position: absolute;
  bottom: 18px;
  right: 20px;
  font-size: 16px;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.2s;
}
.ind__c:hover {
  background: var(--bg2);
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(59,130,246,0.10);
  transform: translateY(-3px);
}
.ind__c:hover::after { opacity: 1; transform: translateX(0); }

.ind__c[data-industry="hvac"]:hover     { border-color: #3B82F6; box-shadow: 0 8px 28px rgba(59,130,246,0.12); }
.ind__c[data-industry="plumbing"]:hover { border-color: #0EA5E9; box-shadow: 0 8px 28px rgba(14,165,233,0.12); }
.ind__c[data-industry="electrical"]:hover { border-color: #F59E0B; box-shadow: 0 8px 28px rgba(245,158,11,0.12); }
.ind__c[data-industry="roofing"]:hover  { border-color: #10B981; box-shadow: 0 8px 28px rgba(16,185,129,0.12); }

.ind__ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.ind__c strong { font-size: 16px; font-weight: 700; color: var(--navy); }
.ind__c span   { font-size: 13px; color: var(--muted); line-height: 1.5; padding-right: 20px; }

/* Industry cards as <a> links */
a.ind__c {
  display: flex;
  text-decoration: none;
  color: inherit;
}

/* ── Pricing numbers — clean, not oversized ───────────────── */
.price__amt {
  font-family: var(--ff);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
}
.price__orig { font-size: 14px; }
.price__per  { font-size: 14px; }
.price__tier-label { font-size: 10.5px; letter-spacing: 1.5px; }
.price__fl li { font-size: 13px; padding: 5px 0; }

/* ── Calculator results — clean numbers ───────────────────── */
.calc__rv {
  font-family: var(--ff);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}
.calc__v {
  font-family: var(--ff);
  font-weight: 700;
  font-size: 17px;
}

/* ── Case study metric numbers — clean ────────────────────── */
.cases__mv {
  font-family: var(--ff);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 2px;
}

/* ── Dashboard ROI numbers ────────────────────────────────── */
.dbprev__roi-v {
  font-family: var(--ff);
  font-size: 20px;
  font-weight: 700;
}

/* ── Section labels — consistent ─────────────────────────── */
.stag {
  font-size: 11px;
  letter-spacing: 1.8px;
}

/* ── Buttons — refined ───────────────────────────────────── */
.btn {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1px;
  border-radius: 9px;
}
.btn-l { padding: 13px 24px; }

/* ── Trust bar — tighter ─────────────────────────────────── */
.trust { padding: 18px 0; }
.ti strong { font-size: 13px; font-weight: 600; }
.ti span   { font-size: 11.5px; }

/* ── Features grid — tighter ─────────────────────────────── */
.feat__c h3 { font-size: 14px; font-weight: 600; }
.feat__c p  { font-size: 13px; }

/* ── FAQ — cleaner question size ────────────────────────────*/
.faq__q { font-size: 15px; font-weight: 600; }

/* ── Responsive — fully mobile ───────────────────────────── */
@media (max-width: 900px) {
  .ind__g { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .ind__g { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ind__c { padding: 18px 14px; }
  .ind__c span { display: none; }
  .ind__c strong { font-size: 14px; }
  .ind__ico { width: 36px; height: 36px; }
  .hero__stats { gap: 18px; padding: 16px 18px; }
  .hero__sv { font-size: 22px; }
  .prob__n { font-size: 36px; }
  .price__amt { font-size: 36px; }
  .cases__mv { font-size: 30px; }
  .calc__rv { font-size: 28px; }
  .price__g { max-width: 100%; }
}
@media (max-width: 400px) {
  .ind__g { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ind__c { padding: 14px 10px; }
  .hero__title { font-size: 32px; }
}
