:root{
  --olive-950: #223022;
  --olive-900: #2B3A2B;
  --olive-800: #344634;
  --olive-700: #3E5A3E;
  --olive-600: #4C6A4C;
  --olive-500: #5E7B5E;
  --olive-400: #7E9A7E;
  --olive-300: #B4C7B4;
  --olive-200: #DCE7DC;

  --gold-500: #D4A63A;
  --gold-400: #F2C766;

  --bg: #F4F8F4;
  --surface: rgba(255,255,255,.94);
  --surface-strong: #ffffff;
  --border: rgba(15, 23, 42, .09);

  --text: #0F172A;
  --muted: #475569;

  --shadow: 0 24px 70px rgba(15, 23, 42, .10);
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, .07);

  --radius: 22px;
  --radius-sm: 14px;

  --container: 1160px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 540px at 15% -10%, rgba(94,123,94,.18), transparent 65%),
    radial-gradient(900px 480px at 90% 0%, rgba(76,106,76,.12), transparent 60%),
    linear-gradient(180deg, #F8FBF8 0%, var(--bg) 46%, #F8FBF8 100%);
}

a{ color:inherit; text-decoration:none; }

.container{
  width:min(var(--container), 100% - 40px);
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#fff;
  color:var(--text);
  padding:10px 12px;
  border-radius:10px;
  box-shadow:var(--shadow-soft);
  z-index:9999;
}
.skip-link:focus{ left:12px; }

.header{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(14px);
  background:rgba(244,248,244,.78);
  border-bottom:1px solid rgba(15, 23, 42, .06);
}

.header__top{ padding:14px 0 10px; }
.header__top-inner{
  display:flex;
  justify-content:center;
  align-items:center;
}

.brand{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.brand__logo{
  height:74px;
  width:auto;
  display:block;
  filter:drop-shadow(0 12px 24px rgba(15,23,42,.12));
}

.header__bar{
  background:rgba(255,255,255,.72);
  border-top:1px solid rgba(15, 23, 42, .05);
}
.header__bar-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:10px 0;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.nav__link{
  font-weight:700;
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
}
.nav__link:hover{
  background:rgba(15,23,42,.05);
  color:var(--text);
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(17,24,39,.12);
  background:#fff;
  border-radius:12px;
  cursor:pointer;
  padding:10px;
}
.nav-toggle span{
  display:block;
  height:2px;
  background:var(--text);
  margin:6px 0;
  border-radius:2px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:800;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn--lg{ padding:15px 22px; font-size:1rem; }

.btn--primary{
  background:linear-gradient(135deg, var(--olive-600), var(--olive-900));
  color:#fff;
  box-shadow:0 16px 34px rgba(76,106,76,.24);
}
.btn--primary:hover{
  transform:translateY(-1px);
  box-shadow:0 22px 44px rgba(76,106,76,.28);
}

.btn--ghost{
  background:rgba(255,255,255,.74);
  border-color:rgba(15, 23, 42, .10);
  color:var(--text);
}
.btn--ghost:hover{ background:#fff; }

.btn--light{
  background:#fff;
  color:var(--olive-800);
  border-color:rgba(15,23,42,.06);
  box-shadow:var(--shadow-soft);
}
.btn--light:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}

.btn--block{ width:100%; }
.pricing-card .btn--block{
  width:100%;
  height:58px;
  min-height:58px;
  padding:0 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  line-height:1;
  text-align:center;
  white-space:nowrap;
  margin-top:auto;
}
.btn__icon{ font-size:1.05rem; }

.pill,
.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  border-radius:999px;
  font-weight:900;
  line-height:1;
}

.pill{
  padding:8px 13px;
  font-size:.82rem;
  color:var(--olive-900);
  background:rgba(94,123,94,.14);
  border:1px solid rgba(94,123,94,.20);
}
.pill--trust{
  background:rgba(15,23,42,.05);
  color:var(--text);
  border-color:rgba(15,23,42,.08);
}

.badge{
  min-height:32px;
  padding:7px 14px;
  font-size:.78rem;
  letter-spacing:.05em;
  text-transform:uppercase;
}
.badge--soft{
  background:rgba(15,23,42,.06);
  color:var(--text);
  border:1px solid rgba(15,23,42,.10);
}
.badge--gold{
  background:rgba(255,255,255,.16);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
}
.badge--outline{
  background:rgba(255,215,0,.10);
  border:1px solid rgba(255,215,0,.20);
  color:rgba(255,215,0,.96);
}
.badge--accent{
  background:rgba(94,123,94,.14);
  color:var(--olive-900);
  border:1px solid rgba(94,123,94,.22);
}

.hero{
  padding:58px 0 20px;
}
.hero--new{ position:relative; }
.hero__layout{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  align-items:stretch;
  justify-items:center;
}
.hero__copy,
.hero-highlight{
  position:relative;
}

.hero__copy{
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
  border:1px solid rgba(255,255,255,.7);
  border-radius:34px;
  padding:36px 40px;
  box-shadow:var(--shadow);
  max-width:980px;
  width:100%;
  text-align:center;
}

.hero__meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
  justify-content:center;
}

.hero__title{
  margin:0 auto 14px;
  font-size:clamp(2.3rem, 4vw, 4rem);
  line-height:1.02;
  letter-spacing:-.04em;
  max-width:16ch;
}
.text-brand{ color:var(--olive-800); }

.hero__subtitle{
  margin:0 auto 22px;
  color:var(--muted);
  max-width:70ch;
  line-height:1.75;
  font-size:1.02rem;
}

.hero__trust{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  margin-bottom:22px;
}
.trust-item{
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius:18px;
  padding:14px;
}
.trust-item strong{
  display:block;
  margin-bottom:5px;
  font-size:.96rem;
}
.trust-item span{
  display:block;
  color:var(--muted);
  line-height:1.5;
  font-size:.93rem;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
}
.hero__microcopy{
  margin:16px 0 0;
  color:var(--muted);
  font-size:.95rem;
}

.hero-highlight{
  background:linear-gradient(145deg, var(--olive-700), var(--olive-950));
  color:#fff;
  border-radius:30px;
  padding:28px;
  box-shadow:0 26px 70px rgba(43,58,43,.28);
  overflow:hidden;
}
.hero-highlight::before{
  content:"";
  position:absolute;
  inset:auto -50px -80px auto;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,.05) 40%, transparent 70%);
}
.hero-highlight__title{
  margin:14px 0 10px;
  font-size:1.75rem;
  letter-spacing:-.03em;
}
.hero-highlight__text{
  margin:0 0 18px;
  color:rgba(255,255,255,.88);
  line-height:1.7;
}
.hero-highlight__price{
  display:grid;
  gap:4px;
  margin-bottom:18px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
}
.hero-highlight__price strong{
  font-size:1.7rem;
  line-height:1;
}
.hero-highlight__price span{
  color:rgba(255,255,255,.88);
  font-weight:700;
}
.hero-highlight__list{
  margin:0 0 20px;
  padding-left:18px;
  color:rgba(255,255,255,.9);
  line-height:1.7;
}

.benefits{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}
.benefits--hero{ margin-top:16px; }

.card,
.panel,
.value-card,
.step,
.faq__item,
.banner,
.pricing-card,
.plan-compare,
.trust-banner{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
}

.card{
  padding:18px;
}
.card__icon,
.panel__icon,
.value-card__icon,
.step__num{
  width:46px;
  height:46px;
  border-radius:15px;
  display:grid;
  place-items:center;
  background:rgba(94,123,94,.14);
  color:var(--olive-900);
  font-size:1.15rem;
}
.card__icon,
.value-card__icon{ margin-bottom:12px; }
.card__title,
.value-card__title,
.step__title,
.panel__title{
  margin:0 0 6px;
  letter-spacing:-.01em;
}
.card__text,
.value-card__text,
.step__text,
.panel p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.section{ padding:72px 0; }
.section--soft{
  background:linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.62));
  border-top:1px solid rgba(255,255,255,.7);
  border-bottom:1px solid rgba(255,255,255,.7);
}
.section--tight{ padding-top:18px; padding-bottom:18px; }

.section__header{
  text-align:center;
  margin-bottom:28px;
}
.section__eyebrow{
  display:inline-block;
  margin-bottom:10px;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.12em;
  color:var(--olive-700);
  text-transform:uppercase;
}
.section__eyebrow--light{ color:rgba(255,255,255,.85); }
.section__title{
  margin:0 0 10px;
  font-size:clamp(1.8rem, 2.7vw, 2.4rem);
  letter-spacing:-.03em;
}
.section__subtitle{
  margin:0 auto;
  max-width:72ch;
  color:var(--muted);
  line-height:1.75;
}

.pricing{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}

.pricing-card{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:16px;
  position:relative;
  overflow:hidden;
  min-height:100%;
}
.pricing-card__top{
  display:grid;
  gap:8px;
  justify-items:start;
  align-content:start;
  min-height:118px;
}
.pricing-card__title{
  margin:0;
  font-size:1.45rem;
  letter-spacing:-.02em;
}
.pricing-card__tag{
  margin:0;
  color:var(--muted);
  font-weight:700;
}
.pricing-card__tag--inv{
  color:rgba(255,255,255,.88);
}
.pricing-card__tag--inv-soft{
  color:rgba(255,255,255,.76);
}

.price{
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.82);
  border-radius:18px;
  padding:16px;
  min-height:148px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.price__label{
  display:block;
  font-size:.79rem;
  font-weight:900;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:6px;
}
.price__compare{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.price__old{
  color:var(--muted);
  text-decoration:line-through;
  font-weight:800;
}
.price__save{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:5px 10px;
  border-radius:999px;
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  background:rgba(22, 163, 74, .12);
  color:#166534;
  border:1px solid rgba(22, 163, 74, .18);
}
.price__value{
  display:flex;
  align-items:baseline;
  gap:6px;
  font-weight:900;
  color:var(--olive-900);
}
.price__currency{ font-size:1.05rem; }
.price__amount{ font-size:2.8rem; line-height:1; }
.price__cents{
  font-size:1rem;
  font-weight:900;
  color:var(--muted);
}
.price__period{
  font-size:1rem;
  font-weight:900;
  color:var(--muted);
}
.price__value--monthly .price__period{
  color:rgba(255,255,255,.92);
}
.price__hint{
  margin:8px 0 0;
  color:var(--muted);
  font-weight:600;
  line-height:1.55;
}
.price__hint--inv{ color:rgba(255,255,255,.88); }

.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.75;
  flex:1 1 auto;
}
.list li{ margin:8px 0; }
.list--inv{ color:rgba(255,255,255,.92); }

.pricing-card--basic{
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.94));
  border-radius:34px 18px 28px 42px;
}
.pricing-card--basic::before{
  content:"";
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:8px;
  background:linear-gradient(90deg, rgba(34,197,94,.95), rgba(132,204,22,.82));
}
.pricing-card--featured{
  background:linear-gradient(135deg, var(--olive-600), var(--olive-950));
  color:#fff;
  border:none;
  box-shadow:0 28px 75px rgba(43,58,43,.25);
  border-radius:24px 40px 20px 38px;
}
.pricing-card--featured::before{
  content:"";
  position:absolute;
  inset:auto -70px -90px auto;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,.04) 48%, transparent 72%);
}
.pricing-card--featured .price{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.18);
}
.pricing-card--featured .price__label{ color:rgba(255,255,255,.86); }
.pricing-card--featured .price__value{ color:#fff; }
.pricing-card--featured .price__cents{ color:rgba(255,255,255,.9); }

.featured-callout{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:76px;
}
.featured-callout strong{
  display:block;
  font-size:1.02rem;
  margin-bottom:4px;
}
.featured-callout span{
  display:block;
  color:rgba(255,255,255,.86);
  font-size:.95rem;
}

.pricing-card--vip{
  background:linear-gradient(135deg, #0B1220 0%, #111827 55%, #0B1220 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 75px rgba(2, 6, 23, .34);
  position:relative;
  overflow:hidden;
  border-radius:20px 38px 42px 24px;
}
.pricing-card--vip::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(255, 215, 0, .10), transparent 60%),
    radial-gradient(600px 220px at 90% 10%, rgba(94,123,94,.14), transparent 62%);
  pointer-events:none;
}
.pricing-card--vip::after{
  content:"";
  position:absolute;
  inset:0 0 auto auto;
  width:92px;
  height:92px;
  border-radius:0 38px 0 999px;
  background:linear-gradient(135deg, rgba(255,215,0,.92), rgba(250,204,21,.48));
  opacity:.18;
}
.pricing-card--vip .price{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.16);
}
.pricing-card--vip .price__label,
.pricing-card--vip .price__old,
.pricing-card--vip .price__hint,
.pricing-card--vip .list{
  color:rgba(255,255,255,.84);
}
.pricing-card--vip .price__value{ color:#fff; }
.pricing-card--vip .price__cents{ color:rgba(255,255,255,.9); }
.pricing-card--vip .price__save{
  background:rgba(255,215,0,.12);
  color:rgba(255,215,0,.96);
  border-color:rgba(255,215,0,.22);
}
.pricing-card--vip .btn--primary{
  background:linear-gradient(135deg, rgba(255,215,0,.96), rgba(255,215,0,.76));
  color:#111827;
  box-shadow:0 18px 40px rgba(255,215,0,.18);
}
.pricing-card--vip .btn--primary:hover{
  box-shadow:0 22px 50px rgba(255,215,0,.24);
}

.plan-compare{
  margin-top:26px;
  padding:24px;
  border:none;
  background:linear-gradient(135deg, rgba(15,23,42,.98) 0%, rgba(34,48,34,.98) 55%, rgba(94,123,94,.95) 100%);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.plan-compare::before{
  content:"";
  position:absolute;
  inset:-40px auto auto -40px;
  width:220px;
  height:220px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 44%, transparent 72%);
}
.plan-compare::after{
  content:"";
  position:absolute;
  right:-60px;
  bottom:-100px;
  width:280px;
  height:280px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(250,204,21,.20) 0%, rgba(250,204,21,.08) 42%, transparent 72%);
}
.plan-compare__head{
  margin-bottom:18px;
  position:relative;
  z-index:1;
}
.plan-compare__head h3{
  margin:0 0 6px;
  font-size:1.35rem;
  letter-spacing:-.02em;
}
.plan-compare__head p{
  margin:0;
  color:rgba(255,255,255,.78);
}
.plan-compare__table{
  overflow:auto;
  position:relative;
  z-index:1;
  border-radius:22px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(10px);
}
.compare-row{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:0;
  min-width:760px;
}
.compare-row > div{
  padding:15px 16px;
  border-top:1px solid rgba(255,255,255,.12);
  line-height:1.55;
}
.compare-row--head > div{
  background:linear-gradient(135deg, rgba(250,204,21,.92), rgba(245,158,11,.90));
  border-top:none;
  font-weight:900;
  color:#1f2937;
}
.compare-row:nth-child(2n):not(.compare-row--head) > div{
  background:rgba(255,255,255,.04);
}
.compare-row:not(.compare-row--head) > div:first-child{
  font-weight:800;
  color:#fff;
}
.compare-row strong{
  color:#FDE68A;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}
.step{
  padding:20px;
}
.step__num{
  margin-bottom:12px;
  font-weight:900;
}

.trust-banner{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:0;
  overflow:hidden;
}
.trust-banner__item{
  padding:18px 20px;
  border-right:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.78);
}
.trust-banner__item:last-child{ border-right:none; }
.trust-banner__item strong{
  display:block;
  margin-bottom:4px;
}
.trust-banner__item span{
  display:block;
  color:var(--muted);
  line-height:1.55;
}

.banner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:16px;
  align-items:center;
  padding:18px;
}
.banner__icon{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(94,123,94,.14);
  font-size:1.2rem;
}
.banner__title{ margin:0 0 4px; }
.banner__text{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.banner--hours{
  position:relative;
  overflow:hidden;
  grid-template-columns:108px 1fr;
  gap:28px;
  padding:36px 40px;
  border:none;
  border-radius:34px;
  background:linear-gradient(135deg, #ECFEFF 0%, #FFFFFF 38%, #EEF2FF 100%);
  box-shadow:0 28px 64px rgba(14, 116, 144, .16);
  isolation:isolate;
}
.banner--hours::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:12px;
  background:linear-gradient(180deg, #06B6D4 0%, #2563EB 55%, #7C3AED 100%);
}
.banner--hours::after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  right:-72px;
  top:-120px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(37,99,235,.16) 0%, rgba(37,99,235,.06) 42%, transparent 72%);
  pointer-events:none;
  z-index:-1;
}
.banner--hours .banner__icon{
  width:86px;
  height:86px;
  border-radius:28px;
  background:linear-gradient(135deg, #06B6D4, #2563EB);
  color:#fff;
  box-shadow:0 20px 38px rgba(37,99,235,.24);
  font-size:2rem;
}
.banner--hours .banner__title{
  font-size:clamp(1.7rem, 2.5vw, 2rem);
  margin-bottom:10px;
  color:#1E3A8A;
  letter-spacing:-.02em;
}
.banner--hours .banner__text{
  font-size:1.12rem;
  line-height:1.85;
  color:#1E40AF;
}
.badge--hours{
  display:none;
}

.faq{
  display:grid;
  gap:12px;
  margin-top:18px;
}
.faq__item{
  padding:12px 14px;
}
.faq__item summary{
  cursor:pointer;
  list-style:none;
  font-weight:900;
  padding:10px 8px;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item p{
  margin:0;
  padding:0 8px 10px;
  color:var(--muted);
  line-height:1.75;
}

.cta,
.about-cta{
  background:linear-gradient(135deg, var(--olive-600), var(--olive-950));
  color:#fff;
  border-radius:30px;
  box-shadow:0 26px 65px rgba(43,58,43,.22);
}
.cta{
  padding:40px 24px;
  text-align:center;
}
.cta__title{
  margin:0 0 10px;
  font-size:clamp(1.8rem, 2.8vw, 2.5rem);
  letter-spacing:-.03em;
}
.cta__text{
  margin:0 auto 18px;
  max-width:70ch;
  color:rgba(255,255,255,.9);
  line-height:1.75;
}

.page-hero{
  padding:58px 0 14px;
}
.page-hero__inner{
  text-align:center;
  max-width:860px;
}
.page-hero__title{
  margin:14px 0 12px;
  font-size:clamp(2.1rem, 4vw, 3.3rem);
  line-height:1.05;
  letter-spacing:-.04em;
}
.page-hero__subtitle{
  margin:0 auto;
  max-width:76ch;
  color:var(--muted);
  line-height:1.8;
}

.about-story{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.panel{
  padding:22px;
}
.panel--story{ min-height:100%; }
.panel__head{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:12px;
}
.panel__lead{
  margin:4px 0 0;
  color:var(--muted);
  font-weight:700;
}
.panel p + p{ margin-top:12px; }

.about-trio{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.about-trio--strong .panel{
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,250,252,.94));
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}
.values-grid--5{
  grid-template-columns:repeat(5, minmax(0,1fr));
}
.value-card{
  padding:18px;
}

.about-cta{
  padding:28px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.about-cta__title{
  margin:0 0 8px;
  font-size:clamp(1.6rem, 2.4vw, 2.15rem);
  letter-spacing:-.03em;
}
.about-cta__text{
  margin:0;
  color:rgba(255,255,255,.9);
  line-height:1.75;
  max-width:64ch;
}

.footer{
  padding:32px 0;
  text-align:center;
  color:var(--muted);
  font-size:.95rem;
  border-top:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.55);
}

.to-top{
  position:fixed;
  right:18px;
  bottom:18px;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(17,24,39,.12);
  background:rgba(255,255,255,.95);
  box-shadow:var(--shadow-soft);
  display:grid;
  place-items:center;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease;
}
.to-top.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .5s ease, transform .5s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .btn{ transition:none; }
}

@media (max-width: 1100px){
  .hero__layout{ grid-template-columns:1fr; }
  .hero__title{ max-width:16ch; }
  .hero__trust{ grid-template-columns:1fr 1fr 1fr; }
  .values-grid--5{ grid-template-columns:repeat(3, minmax(0,1fr)); }
}

@media (max-width: 980px){
  .benefits,
  .pricing,
  .steps,
  .about-story,
  .about-trio,
  .values-grid,
  .values-grid--5{
    grid-template-columns:1fr;
  }

  .pricing-card--featured{
    transform:none;
  }

  .trust-banner{
    grid-template-columns:1fr 1fr;
  }

  .trust-banner__item:nth-child(2){
    border-right:none;
  }

  .banner{
    grid-template-columns:auto 1fr;
  }

  .banner--hours{
    grid-template-columns:1fr;
    text-align:center;
    padding:28px 22px;
  }
  .banner--hours::before{
    width:100%;
    height:8px;
    inset:0 0 auto 0;
  }
  .banner--hours::after{
    right:50%;
    transform:translateX(50%);
    top:-120px;
  }
  .banner--hours .banner__icon{ margin:0 auto; }

  .about-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 820px){
  .brand__logo{ height:60px; }

  .nav-toggle{
    display:inline-block;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
  }

  .nav{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(17, 24, 39, .10);
    border-radius:16px;
    padding:12px;
    box-shadow:var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
  }
  .nav.is-open{ display:flex; }
  .nav__link{ padding:12px; }

  .hero{ padding-top:32px; }
  .hero__copy,
  .hero-highlight,
  .cta,
  .about-cta{
    border-radius:24px;
  }

  .hero__copy{ padding:24px 20px; }
  .hero-highlight{ padding:24px 20px; }

  .hero__title{
    font-size:clamp(2rem, 11vw, 2.8rem);
    max-width:100%;
  }
  .hero__subtitle{ font-size:.98rem; }

  .hero__trust{
    grid-template-columns:1fr;
  }

  .hero__actions{
    flex-direction:column;
  }
  .hero__actions .btn{
    width:100%;
  }

  .section{ padding:56px 0; }

  .pricing-card__top{
    min-height:auto;
  }

  .trust-banner{
    grid-template-columns:1fr;
  }
  .trust-banner__item{
    border-right:none;
    border-bottom:1px solid rgba(15,23,42,.08);
  }
  .trust-banner__item:last-child{ border-bottom:none; }

  .compare-row{
    min-width:680px;
  }
}