:root {
  --green: #69c399;
  --green-dark: #3c9c73;
  --green-soft: #dff4e9;
  --ink: #15231e;
  --ink-2: #263b32;
  --muted: #66736e;
  --line: #dfe7e3;
  --paper: #f7faf8;
  --white: #ffffff;
  --shadow: 0 22px 65px rgba(21, 35, 30, .12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), 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; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 10px; transition: top .2s ease; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.94); backdrop-filter: blur(14px); border-color: var(--line); box-shadow: 0 10px 30px rgba(21,35,30,.06); }
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 90px; height: 46px; object-fit: contain; object-position: left center; }
.brand span { padding-left: 12px; border-left: 1px solid rgba(21,35,30,.16); color: var(--ink-2); }
.main-nav { display: flex; align-items: center; gap: 30px; font-weight: 650; font-size: 15px; }
.main-nav > a:not(.nav-cta) { position: relative; color: var(--ink-2); }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--green-dark); transition: right .2s ease; }
.main-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 11px 18px; border-radius: 999px; background: var(--ink); color: #fff; }
.nav-cta:hover { background: var(--green-dark); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--ink); padding: 11px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 820px; padding: 155px 0 95px; overflow: hidden; background: linear-gradient(145deg, #eef8f2 0%, #fff 58%, #edf7f1 100%); }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(105,195,153,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(105,195,153,.08) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(6px); opacity: .55; }
.hero-orb-one { width: 420px; height: 420px; background: radial-gradient(circle at 30% 30%, #b9efd5, #eaf8f0); right: -130px; top: 80px; }
.hero-orb-two { width: 260px; height: 260px; background: radial-gradient(circle at 30% 30%, #d1efe0, transparent 72%); left: -90px; bottom: -20px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--green-soft); font-size: 13px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--green); }
.eyebrow.dark { color: var(--green-dark); }
.hero .eyebrow { color: var(--green-dark); }
.hero h1 { max-width: 680px; margin: 0 0 26px; font-size: clamp(54px, 6vw, 88px); line-height: .98; letter-spacing: -.065em; font-weight: 840; }
.hero h1 em { color: var(--green-dark); font-style: normal; }
.hero-copy > p { max-width: 660px; margin: 0; color: var(--muted); font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; border-radius: 999px; font-weight: 800; line-height: 1.1; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: #fff; box-shadow: 0 16px 35px rgba(21,35,30,.18); }
.button-primary:hover { background: var(--green-dark); }
.button-ghost { border: 1px solid rgba(21,35,30,.16); background: rgba(255,255,255,.65); }
.button-ghost:hover { background: #fff; box-shadow: 0 12px 30px rgba(21,35,30,.08); }
.button-light { background: #fff; color: var(--ink); box-shadow: 0 16px 35px rgba(0,0,0,.16); }
.button-light:hover { background: var(--green-soft); }
.hero-facts { display: flex; gap: 34px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(21,35,30,.12); }
.hero-facts div { display: grid; gap: 2px; }
.hero-facts strong { font-size: 18px; }
.hero-facts span { color: var(--muted); font-size: 13px; }
.hero-visual { position: relative; }
.hero-card { position: relative; width: min(100%, 530px); margin-left: auto; padding: 14px; border: 1px solid rgba(255,255,255,.9); border-radius: 30px; background: rgba(255,255,255,.6); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.window-bar { display: flex; align-items: center; gap: 7px; height: 44px; padding: 0 8px; color: var(--muted); font-size: 12px; }
.window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #c9d4cf; }
.window-bar span { margin-left: 8px; }
.hero-card > img { width: 100%; aspect-ratio: 1.4 / 1; object-fit: cover; border-radius: 20px; filter: contrast(1.02); }
.status-card { position: absolute; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.85); border-radius: 16px; background: rgba(255,255,255,.93); box-shadow: 0 14px 35px rgba(21,35,30,.14); }
.status-card strong, .status-card small { display: block; }
.status-card strong { font-size: 13px; }
.status-card small { color: var(--muted); font-size: 11px; }
.status-online { left: -34px; bottom: 38px; }
.status-security { right: -28px; top: 95px; }
.status-security svg { width: 30px; fill: var(--green-dark); }
.pulse { width: 13px; height: 13px; border-radius: 50%; background: #34c679; box-shadow: 0 0 0 7px rgba(52,198,121,.16); }

.logo-strip { padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.logo-strip p { margin: 0 0 18px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.customer-logos, .partner-logos { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.customer-logos img { width: 130px; height: 42px; object-fit: contain; filter: grayscale(1); opacity: .58; transition: opacity .2s ease, filter .2s ease; }
.customer-logos img:hover { filter: grayscale(0); opacity: 1; }

.section { padding: 112px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section h2 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.08; letter-spacing: -.045em; }
.section-head > p, .benefit-intro > p { color: var(--muted); font-size: 18px; }
.section-head > p { max-width: 650px; margin: 18px auto 0; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 430px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #b9ddca; box-shadow: 0 22px 50px rgba(21,35,30,.08); }
.icon-box { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 28px; border-radius: 15px; background: var(--green-soft); }
.icon-box svg { width: 25px; fill: var(--green-dark); }
.service-card h3 { margin: 0 0 12px; font-size: 23px; letter-spacing: -.025em; }
.service-card p { margin: 0 0 24px; color: var(--muted); }
.service-card ul, .plan-card ul { margin: 0; padding: 0; list-style: none; }
.service-card li, .plan-card li { position: relative; padding: 8px 0 8px 22px; border-top: 1px solid #edf2ef; font-size: 14px; }
.service-card li::before, .plan-card li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.care { color: #fff; background: var(--ink); overflow: hidden; }
.care-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.care-copy h2 { margin: 0 0 22px; font-size: clamp(40px, 5vw, 62px); line-height: 1.06; letter-spacing: -.05em; }
.care-copy > p { margin: 0; color: #b8c6c0; font-size: 18px; }
.care-points { display: grid; gap: 18px; margin: 34px 0; }
.care-points > div { display: flex; align-items: flex-start; gap: 15px; }
.care-points b { display: grid; place-items: center; flex: 0 0 38px; height: 38px; border-radius: 12px; background: rgba(105,195,153,.16); color: var(--green); font-size: 12px; }
.care-points strong, .care-points small { display: block; }
.care-points small { color: #9fb0a8; }
.care-overview { padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.06); box-shadow: 0 24px 70px rgba(0,0,0,.2); }
.care-overview-head { display: grid; gap: 7px; margin-bottom: 22px; padding: 0 4px 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.care-overview-head span { color: var(--green); font-size: 12px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.care-overview-head strong { max-width: 520px; font-size: 27px; line-height: 1.2; letter-spacing: -.03em; }
.care-overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.care-overview article { display: grid; grid-template-columns: 42px 1fr; gap: 14px; min-height: 170px; padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(255,255,255,.045); }
.care-overview article svg { width: 28px; fill: var(--green); }
.care-overview h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.25; }
.care-overview p { margin: 0; color: #aabbb3; font-size: 14px; line-height: 1.55; }

.quicksupport { position: relative; overflow: hidden; background: linear-gradient(135deg, #f2faf6, #fff 58%, #e9f6ef); }
.quicksupport::before { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -170px; border-radius: 50%; background: rgba(105,195,153,.16); filter: blur(3px); }
.quicksupport-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.quicksupport-copy h2 { margin-bottom: 22px; }
.quicksupport-copy > p { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; }
.support-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 34px 0 28px; }
.support-steps > div { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.82); }
.support-steps b { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px; border-radius: 11px; background: var(--green-soft); color: var(--green-dark); font-size: 13px; }
.support-steps strong, .support-steps small { display: block; }
.support-steps strong { margin-bottom: 3px; font-size: 15px; }
.support-steps small { color: var(--muted); font-size: 12px; line-height: 1.45; }
.support-security { max-width: 680px !important; padding: 14px 16px; border-left: 3px solid var(--green-dark); background: rgba(255,255,255,.72); font-size: 14px !important; }
.download-card { padding: 34px; border: 1px solid rgba(105,195,153,.38); border-radius: 30px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); }
.download-app-icon { position: relative; display: grid; place-items: center; width: 92px; height: 92px; margin-bottom: 28px; border-radius: 24px; background: var(--ink); box-shadow: 0 18px 38px rgba(21,35,30,.2); }
.download-app-icon svg { width: 48px; fill: var(--green); }
.download-app-icon span { position: absolute; right: -7px; bottom: -7px; display: grid; place-items: center; min-width: 38px; height: 28px; padding: 0 7px; border: 4px solid #fff; border-radius: 10px; background: var(--green); color: var(--ink); font-size: 11px; font-weight: 950; }
.download-label { color: var(--green-dark); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.download-card h3 { margin: 8px 0 12px; font-size: 32px; line-height: 1.1; letter-spacing: -.04em; }
.download-card p { margin: 0; color: var(--muted); }
.download-button { width: 100%; gap: 10px; margin-top: 28px; }
.download-button svg { width: 21px; fill: currentColor; }
.download-note { display: block; margin-top: 14px; color: var(--muted); line-height: 1.5; text-align: center; }

.benefits { background: #fff; }
.benefits-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.benefit-intro { position: sticky; top: 140px; }
.benefit-intro h2 { margin-bottom: 22px; }
.text-link { display: inline-flex; gap: 12px; margin-top: 20px; color: var(--green-dark); font-weight: 800; }
.benefit-list { border-top: 1px solid var(--line); }
.benefit-list article { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.benefit-list article > span { color: var(--green-dark); font-size: 14px; font-weight: 850; }
.benefit-list h3 { margin: 0 0 8px; font-size: 24px; }
.benefit-list p { margin: 0; color: var(--muted); }

.testimonials { background: var(--paper); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card { margin: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.stars { color: #e4a829; letter-spacing: 3px; }
.quote-card blockquote { margin: 24px 0 30px; font-size: 19px; line-height: 1.55; font-weight: 650; }
.quote-card figcaption strong, .quote-card figcaption span { display: block; }
.quote-card figcaption span { color: var(--muted); font-size: 13px; }
.review-links { display: flex; justify-content: center; gap: 16px; margin-top: 28px; }
.review-links a { padding: 11px 17px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 750; font-size: 14px; }
.review-links a:hover { border-color: var(--green); }

.partner-strip { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-logos img { width: 120px; height: 44px; object-fit: contain; filter: grayscale(1); opacity: .55; }

.final-cta { padding-top: 90px; }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; padding: 54px; border-radius: 30px; color: #fff; background: linear-gradient(135deg, var(--green-dark), #225f47 75%); box-shadow: 0 30px 70px rgba(34,95,71,.24); }
.cta-box h2 { max-width: 720px; }
.cta-box p { max-width: 680px; margin: 18px 0 0; color: #d8eee4; font-size: 17px; }
.cta-actions { display: grid; gap: 14px; min-width: 230px; text-align: center; }
.cta-actions > a:not(.button) { color: #e3f5ec; font-weight: 750; }

.footer { padding: 72px 0 28px; color: #c9d6d0; background: #0e1713; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; }
.footer h3 { margin: 0 0 18px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > div:not(.footer-brand) a { display: block; margin: 9px 0; color: #aab9b2; font-size: 14px; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--green); }
.footer-brand p { max-width: 320px; color: #87998f; }
.footer-logo span { border-color: rgba(255,255,255,.16); color: #d9e7e1; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #718279; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .09s; }
.delay-2 { transition-delay: .18s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .main-nav { gap: 20px; }
  .hero-grid { gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .care-grid { grid-template-columns: 1fr; }
  .care-copy { max-width: 760px; }
  .quicksupport-grid { grid-template-columns: 1fr; gap: 52px; }
  .download-card { max-width: 680px; }
  .benefits-grid { gap: 50px; }
  .customer-logos, .partner-logos { flex-wrap: wrap; justify-content: center; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-actions { max-width: 280px; }
}

@media (max-width: 820px) {
  .nav-wrap { height: 74px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 74px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 10px; }
  .main-nav .nav-cta { margin-top: 6px; text-align: center; }
  .hero { min-height: auto; padding: 125px 0 75px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy > p { font-size: 18px; }
  .hero-visual { max-width: 590px; margin: 0 auto; }
  .hero-card { margin: 0 auto; }
  .section { padding: 82px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-intro { position: static; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 78px; }
  .brand span { font-size: 14px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-actions, .hero-actions .button { width: 100%; }
  .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-facts strong { font-size: 15px; }
  .hero-facts span { font-size: 11px; line-height: 1.35; }
  .status-card { min-width: 165px; padding: 10px 12px; }
  .status-online { left: -4px; bottom: 12px; }
  .status-security { right: -4px; top: 74px; }
  .service-grid { grid-template-columns: 1fr; }
  .care-overview-grid { grid-template-columns: 1fr; }
  .care-overview article { min-height: 0; }
  .support-steps { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .benefit-list article { grid-template-columns: 44px 1fr; }
  .review-links { flex-direction: column; }
  .review-links a { text-align: center; }
  .cta-box { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .hero-facts { grid-template-columns: 1fr; }
  .status-security { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
