:root {
  --green-950: #063d22;
  --green-900: #07552d;
  --green-850: #096234;
  --green-800: #08723a;
  --green-700: #0d8a3f;
  --green-600: #22a83f;
  --green-500: #49bf3a;
  --green-400: #7dde31;
  --green-300: #a5eb68;
  --green-100: #eaf7ed;
  --green-050: #f4fbf5;
  --ink: #10251b;
  --muted: #53655b;
  --line: #dce8df;
  --paper: #ffffff;
  --off-white: #fbfdfb;
  --fs-hero: 62px;
  --fs-section: 40px;
  --fs-card-title: 22px;
  --fs-body: 18px;
  --fs-button: 17px;
  --container: 1440px;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(7, 61, 35, .10);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
main, header, section, footer { width: 100%; max-width: 100%; }
.hero-grid > *, .trust-grid > *, .feature-grid > *, .experience-grid > *, .steps-grid > *, .pricing-grid > *, .faq-grid > *, .footer-grid > * { min-width: 0; }
h1, h2, h3, p, li, a, span { overflow-wrap: break-word; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.965);
  border-bottom: 1px solid rgba(7,61,35,.08);
  backdrop-filter: blur(16px);
}
.nav-shell {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 220px; max-height: 60px; object-fit: contain; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 34px; }
.main-nav a { position: relative; text-decoration: none; font-size: 17px; font-weight: 700; color: #21352a; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green-600); transition: right .2s ease; }
.main-nav a:hover::after { right: 0; }
.menu-toggle { display: none; }

.btn {
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  font-size: var(--fs-button);
  line-height: 1.2;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
  box-shadow: 0 10px 24px rgba(7,85,45,.20);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(7,85,45,.28); }
.btn-outline { border: 2px solid var(--green-800); color: var(--green-900); background: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 34px;
  background: linear-gradient(90deg, #fff 0%, #fbfdfb 48%, #eef8ef 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 410px;
  right: -125px;
  bottom: -80px;
  border-radius: 58% 42% 52% 48%;
  background: radial-gradient(ellipse at 40% 35%, rgba(63,161,59,.26), rgba(5,85,45,.06) 62%, transparent 68%);
  transform: rotate(-18deg);
  pointer-events: none;
}
.hero-glow { position: absolute; pointer-events: none; border-radius: 999px; filter: blur(22px); opacity: .55; }
.hero-glow-one { width: 330px; height: 330px; right: 12%; top: -180px; background: rgba(121,222,49,.23); }
.hero-glow-two { width: 280px; height: 280px; right: 0; bottom: -160px; background: rgba(7,85,45,.15); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(620px, 1.15fr);
  gap: 54px;
  align-items: center;
}
.eyebrow { margin: 0 0 14px; color: var(--green-800); font-size: 14px; letter-spacing: .18em; font-weight: 900; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--fs-hero);
  line-height: 1.03;
  letter-spacing: -.035em;
  color: var(--green-950);
}
.hero-lead { max-width: 720px; margin: 24px 0 28px; color: var(--muted); font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; padding-right: 35px; }
.laptop-frame { position: relative; width: min(760px, 100%); filter: drop-shadow(0 28px 36px rgba(0,0,0,.18)); }
.laptop-screen { position: relative; padding: 15px 15px 18px; border-radius: 22px 22px 9px 9px; background: linear-gradient(#151a18,#0e1110); border: 1px solid #242b28; }
.laptop-screen img { width: 100%; aspect-ratio: 1.9 / 1; object-fit: cover; object-position: center top; border-radius: 9px; background: #fff; }
.laptop-camera { position: absolute; z-index: 2; width: 5px; height: 5px; border-radius: 50%; background: #555; top: 6px; left: 50%; transform: translateX(-50%); }
.laptop-base { width: 112%; height: 18px; margin-left: -6%; border-radius: 1px 1px 14px 14px; background: linear-gradient(180deg,#d9dcda,#9ea4a1 70%,#858b88); box-shadow: inset 0 2px 2px rgba(255,255,255,.7); }
.laptop-base::after { content: ""; display: block; width: 17%; height: 4px; margin: 0 auto; border-radius: 0 0 5px 5px; background: #7c827f; }
.phone-frame {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 38px;
  width: 205px;
  height: 410px;
  padding: 10px 8px 12px;
  border-radius: 34px;
  background: linear-gradient(145deg,#1c201f,#050606);
  box-shadow: 0 24px 48px rgba(0,0,0,.26), inset 0 0 0 2px #343a37;
}
.phone-speaker { position: absolute; z-index: 3; top: 7px; left: 50%; transform: translateX(-50%); width: 43px; height: 5px; border-radius: 999px; background: #191c1b; }
.phone-screen { position: relative; height: 100%; overflow: hidden; border-radius: 27px; background: #f7faf8; }
.phone-brand { position: absolute; z-index: 2; top: 12px; left: 12px; width: 82px; padding: 5px 7px; border: 1px solid #dce8df; border-radius: 10px; background: rgba(255,255,255,.95); }
.phone-screen > img:last-child { width: 100%; height: 100%; object-fit: cover; object-position: left top; }

.section { padding: 76px 0; }
.section-heading { text-align: center; max-width: 1000px; margin: 0 auto 38px; }
.section-heading .eyebrow { margin-bottom: 8px; font-size: 13px; }
.section-heading h2 { margin: 0 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: var(--fs-section); line-height: 1.1; letter-spacing: -.025em; color: var(--ink); }
.section-heading p:last-child { margin: 0; font-size: 18px; color: #617168; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.97); }
.trust-grid { min-height: 110px; display: grid; grid-template-columns: repeat(4,1fr); align-items: stretch; }
.trust-item { display: grid; grid-template-columns: 50px 1fr; gap: 15px; align-items: center; padding: 18px 25px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 16px; line-height: 1.24; color: var(--green-950); }
.trust-item span:last-child { display: block; margin-top: 4px; color: #6a776f; font-size: 14px; line-height: 1.35; }
.icon-disc { width: 44px; height: 44px; display: grid; place-items: center; color: var(--green-800); border-radius: 50%; background: #eef8f0; }
.icon-disc svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.features-section { padding-top: 66px; background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.feature-card { min-height: 202px; padding: 28px 24px; border: 1px solid #e1e9e3; border-radius: 12px; background: linear-gradient(180deg,#fff,#fdfefd); box-shadow: 0 8px 24px rgba(7,61,35,.035); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.feature-card:hover { transform: translateY(-3px); border-color: #c8ddcc; box-shadow: 0 14px 30px rgba(7,61,35,.07); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; font-size: 28px; line-height: 1; color: var(--green-800); border-radius: 10px; background: #eff8f1; font-family: Georgia,serif; font-weight: 700; }
.feature-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-icon-whatsapp svg { width: 26px; height: 26px; }
.feature-card h3 { margin: 14px 0 8px; font-size: var(--fs-card-title); line-height: 1.15; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.45; }

.experiences-section { padding-top: 4px; }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.experience-panel { position: relative; min-height: 430px; border-radius: 14px; overflow: hidden; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; padding: 38px; }
.experience-panel::after { content: ""; position: absolute; right: -58px; bottom: -74px; width: 210px; height: 210px; border-radius: 68% 32% 64% 36%; background: radial-gradient(ellipse at center, rgba(117,217,99,.28), rgba(117,217,99,0) 70%); transform: rotate(-18deg); }
.experience-admin { color: #fff; background: linear-gradient(135deg, #06462a, #0a7138); box-shadow: 0 18px 38px rgba(7,61,35,.12); }
.experience-member { background: linear-gradient(135deg, #fbfefb, #e8f6ea); border: 1px solid #dbe9de; }
.experience-panel .eyebrow { margin-bottom: 3px; font-size: 11px; color: #a8f1a4; }
.experience-member .eyebrow { color: var(--green-800); }
.experience-panel h2 { margin: 3px 0 2px; font-family: Georgia, "Times New Roman", serif; font-size: 36px; line-height: 1.08; letter-spacing: -.025em; }
.experience-lead { margin: 0; font-size: 17px; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li { position: relative; padding-left: 32px; margin: 10px 0; font-size: 16px; line-height: 1.35; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: var(--green-400); color: var(--green-950); font-weight: 900; font-size: 13px; }
.experience-image { position: relative; z-index: 2; align-self: end; justify-self: end; }
.laptop-mini { width: 97%; transform: perspective(800px) rotateY(-5deg); filter: drop-shadow(0 16px 20px rgba(0,0,0,.20)); }
.laptop-mini img { border-radius: 10px; border: 8px solid #1b1e1d; border-bottom-width: 16px; }
.phone-mini { width: 64%; min-width: 160px; height: 330px; padding: 7px; border-radius: 28px; background: #171a19; box-shadow: 0 18px 30px rgba(0,0,0,.2); overflow: hidden; }
.phone-mini img { width: 100%; height: 100%; object-fit: cover; object-position: left top; border-radius: 22px; }

.compact-heading { margin-bottom: 34px; }
.how-section { padding-top: 20px; padding-bottom: 62px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.step-card { position: relative; min-height: 152px; display: grid; grid-template-columns: 48px 58px 1fr; gap: 12px; align-items: start; padding-top: 10px; }
.step-card:not(:last-child)::after { content: "→"; position: absolute; right: -21px; top: 34px; color: #9aaba0; font-size: 28px; font-weight: 300; }
.step-number { width: 38px; height: 38px; margin-top: 7px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--green-600); font-weight: 900; box-shadow: 0 8px 18px rgba(34,168,63,.2); }
.step-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: var(--green-900); background: #eef5f1; font-size: 25px; }
.step-card h3 { margin: 3px 0 7px; font-size: 18px; line-height: 1.2; }
.step-card p { margin: 0; color: #65756b; font-size: 14px; line-height: 1.45; }

.pricing-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #f8fcf8, #eef8ef); border-top: 1px solid #e5efe6; border-bottom: 1px solid #e5efe6; }
.pricing-section::before { content: ""; position: absolute; right: -90px; top: 30px; width: 260px; height: 320px; border-radius: 48% 52% 42% 58%; background: radial-gradient(ellipse, rgba(97,179,83,.17), rgba(97,179,83,0) 68%); transform: rotate(16deg); }
.pricing-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; max-width: 1250px; margin: 0 auto; }
.pricing-card { position: relative; display: flex; flex-direction: column; padding: 34px 36px 30px; border-radius: 13px; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(7,61,35,.055); }
.pricing-card[data-featured] { color: #fff; background: linear-gradient(160deg, #07552d, #0a7138); border-color: transparent; transform: translateY(-8px); box-shadow: 0 20px 42px rgba(7,61,35,.18); }
.featured-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); padding: 6px 22px; border-radius: 999px; color: var(--green-950); background: linear-gradient(180deg,#9af044,#63d72b); font-size: 13px; font-weight: 900; white-space: nowrap; box-shadow: 0 8px 18px rgba(52,180,53,.25); }
.plan-top h3 { margin: 0 0 2px; font-size: 23px; line-height: 1.2; }
.plan-top p { margin: 0; color: #68766e; font-size: 15px; }
.pricing-card[data-featured] .plan-top p { color: rgba(255,255,255,.8); }
.plan-price { margin: 24px 0 18px; font-size: 56px; line-height: .95; font-weight: 950; letter-spacing: -.035em; color: var(--green-800); }
.plan-price span { font-size: 27px; vertical-align: .22em; font-weight: 900; }
.plan-price small { font-size: 17px; font-weight: 750; letter-spacing: 0; color: #607067; }
.pricing-card[data-featured] .plan-price { color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.12); }
.pricing-card[data-featured] .plan-price small { color: rgba(255,255,255,.86); }
.plan-list { list-style: none; padding: 0; margin: 0 0 26px; }
.plan-list li { position: relative; margin: 9px 0; padding-left: 26px; font-size: 16px; line-height: 1.38; }
.plan-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green-600); font-size: 11px; font-weight: 900; }
.pricing-card[data-featured] .plan-list li::before { color: var(--green-950); background: var(--green-400); }
.plan-btn { width: 100%; margin-top: auto; min-height: 50px; }
.btn-lime { color: #093c20; background: linear-gradient(180deg,#a8f34b,#65d92a); box-shadow: 0 10px 22px rgba(69,205,42,.24); }
.btn-lime:hover { box-shadow: 0 14px 28px rgba(69,205,42,.34); }

.faq-section { padding-top: 52px; padding-bottom: 30px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 22px; max-width: 1320px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.faq-question { width: 100%; min-height: 60px; border: 0; background: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; color: var(--ink); font: inherit; font-size: 16px; font-weight: 750; cursor: pointer; }
.faq-question > span:last-child { color: var(--green-800); font-size: 24px; line-height: 1; transition: transform .2s ease; }
.faq-question[aria-expanded="true"] > span:last-child { transform: rotate(45deg); }
.faq-answer { padding: 0 18px 18px; color: var(--muted); }
.faq-answer p { margin: 0; font-size: 16px; line-height: 1.55; }

.cta-section { padding: 20px 0 0; }
.final-cta { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 35px 45px; border-radius: 14px; color: #fff; background: linear-gradient(110deg, #064a2b, #08723a); box-shadow: 0 18px 36px rgba(7,61,35,.13); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; width: 190px; height: 190px; border-radius: 65% 35% 55% 45%; background: radial-gradient(ellipse, rgba(116,221,82,.26), rgba(116,221,82,0) 70%); pointer-events: none; }
.final-cta::before { left: -65px; bottom: -90px; transform: rotate(30deg); }
.final-cta::after { right: -60px; top: -90px; transform: rotate(-25deg); }
.final-cta > * { position: relative; z-index: 1; }
.cta-kicker { margin: 0 0 4px; font-size: 12px; letter-spacing: .14em; font-weight: 900; color: #aef0a1; }
.final-cta h2 { margin: 0; font-family: Georgia,"Times New Roman",serif; font-size: 31px; line-height: 1.1; }
.final-cta p:not(.cta-kicker) { margin: 7px 0 0; color: rgba(255,255,255,.84); font-size: 16px; }
.cta-action { display: grid; gap: 8px; justify-items: center; min-width: 300px; }
.cta-action .btn { width: 100%; }
.cta-action small { font-size: 12px; color: rgba(255,255,255,.78); }

.site-footer { padding: 42px 0 20px; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(4,1fr); gap: 38px; align-items: start; }
.footer-brand img { width: 230px; }
.footer-brand p { max-width: 300px; margin: 12px 0 0; color: #596b60; font-size: 16px; line-height: 1.55; }
.footer-grid h3 { margin: 6px 0 14px; font-size: 18px; line-height: 1.2; color: var(--green-950); }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 9px 0; color: #52645a; text-decoration: none; font-size: 16px; line-height: 1.35; }
.footer-grid a:hover { color: var(--green-800); }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 36px; height: 36px; display: grid !important; place-items: center; margin: 0 !important; border-radius: 50%; color: var(--green-900) !important; background: #eef7f0; font-weight: 900; text-decoration: none; }
.footer-note { margin: 16px 0 0; color: var(--green-800); font-family: Georgia,"Times New Roman",serif; font-style: italic; font-size: 17px; line-height: 1.45; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 20px; color: #66766d; font-size: 14px; line-height: 1.4; }
.footer-bottom span:last-child { display: flex; align-items: center; gap: 12px; }
.footer-bottom i { width: 1px; height: 12px; background: var(--line); }
.footer-bottom a { text-decoration: none; }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--green-900), var(--green-600));
  box-shadow: 0 12px 28px rgba(7,61,35,.24);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease, box-shadow .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { box-shadow: 0 16px 32px rgba(7,61,35,.32); }
.back-to-top svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }


@media (max-width: 1180px) {
  .container { width: min(calc(100% - 40px), var(--container)); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 930px; }
  .hero-visual { min-height: 500px; max-width: 930px; width: 100%; margin: 0 auto; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .experience-grid { grid-template-columns: 1fr; max-width: 980px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pricing-grid { gap: 18px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root {
    --fs-hero: 44px;
    --fs-section: 34px;
    --fs-card-title: 21px;
    --fs-body: 17px;
    --fs-button: 16px;
  }
  .nav-shell { position: relative; grid-template-columns: auto auto; justify-content: space-between; min-height: 78px; }
  .brand img { width: 195px; }
  .menu-toggle { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 10px; background: #fff; display: grid; align-content: center; gap: 5px; padding: 12px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { height: 2px; background: var(--green-900); border-radius: 2px; }
  .main-nav { position: absolute; top: 70px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 10px; }
  .main-nav a::after { display: none; }
  .nav-cta { display: none; }
  .hero { padding-top: 40px; }
  .hero-grid { gap: 24px; }
  .hero-visual { min-height: 430px; }
  .phone-frame { width: 160px; height: 330px; right: 2%; bottom: 28px; }
  .section { padding: 62px 0; }
  .steps-grid { grid-template-columns: repeat(2,1fr); gap: 28px 38px; }
  .step-card:nth-child(2)::after { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; }
  .pricing-card[data-featured] { transform: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; gap: 24px; }
  .cta-action { justify-items: start; min-width: 0; width: min(100%, 360px); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  :root {
    --fs-hero: 40px;
    --fs-section: 31px;
    --fs-card-title: 20px;
    --fs-body: 17px;
    --fs-button: 16px;
  }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; min-height: 70px; }
  .brand { min-width: 0; }
  .site-header .brand img { width: min(172px, 54vw); }
  .menu-toggle { flex-shrink: 0; width: 46px; height: 46px; }
  .main-nav { top: 62px; width: 100%; max-width: 100%; }
  .hero { padding: 30px 0 24px; }
  .hero h1 { line-height: 1.06; letter-spacing: -.03em; }
  .hero-lead { font-size: 17px; margin-top: 20px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; min-height: 56px; }
  .hero-visual { width: 100%; min-width: 0; min-height: 305px; padding-right: 0; }
  .laptop-screen { padding: 7px 7px 10px; border-radius: 13px 13px 6px 6px; }
  .laptop-base { width: 100%; height: 11px; margin-left: 0; }
  .phone-frame { width: 104px; height: 220px; right: 0; bottom: 13px; padding: 6px 5px 7px; border-radius: 21px; }
  .phone-screen { border-radius: 16px; }
  .phone-brand { top: 7px; left: 7px; width: 56px; padding: 3px 4px; border-radius: 7px; }
  .trust-strip { padding: 14px 0; background: var(--green-050); }
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .trust-item { min-height: 0; padding: 18px; border: 1px solid var(--line) !important; border-radius: 12px; background: #fff; }
  .trust-item:last-child { border-bottom: 1px solid var(--line) !important; }
  .features-section { padding-top: 50px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading p:last-child { font-size: 17px; }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { min-height: 0; padding: 20px 18px; display: grid; grid-template-columns: 48px minmax(0, 1fr); grid-template-areas: "icon title" "icon text"; column-gap: 14px; row-gap: 4px; align-items: start; }
  .feature-icon { grid-area: icon; width: 44px; height: 44px; margin: 0; }
  .feature-card h3 { grid-area: title; margin: 1px 0 2px; }
  .feature-card p { grid-area: text; }
  .experience-panel { grid-template-columns: 1fr; padding: 28px 22px; min-height: 0; }
  .experience-panel h2 { font-size: 31px; }
  .experience-image { margin-top: 24px; justify-self: center; }
  .laptop-mini { width: 100%; }
  .phone-mini { width: 180px; min-width: 0; height: 300px; justify-self: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card { grid-template-columns: 38px 46px minmax(0, 1fr); gap: 10px; min-height: 0; padding: 18px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(7,61,35,.04); }
  .step-card::after { display: none; }
  .step-icon { width: 48px; height: 48px; }
  .pricing-grid { gap: 14px; width: 100%; }
  .pricing-card { width: 100%; min-width: 0; padding: 26px 20px; }
  .pricing-card[data-featured] { padding-top: 54px; }
  .featured-badge { top: 14px; left: auto; right: 16px; transform: none; }
  .plan-price { font-size: 48px; }
  .faq-section { padding-top: 44px; }
  .faq-question { min-height: 58px; font-size: 16px; }
  .final-cta { padding: 28px 22px; }
  .final-cta h2 { font-size: 29px; }
  .cta-action { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom span:last-child { display: grid; gap: 6px; }
  .footer-bottom i { display: none; }
  .back-to-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
}

:focus-visible {
  outline: 3px solid var(--green-400);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
