:root {
  --brand: #02a1a7;
  --brand-dark: #027d82;
  --brand-soft: #e8f8f8;
  --ink: #15242b;
  --muted: #617078;
  --line: #dce5e7;
  --soft: #f4f8f8;
  --white: #ffffff;
  --dark: #10272d;
  --shadow: 0 20px 55px rgba(15, 50, 58, .12);
  --shadow-sm: 0 10px 30px rgba(15, 50, 58, .08);
  --radius: 22px;
  --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;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: 98px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--dark); color: white; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--ink); color: white; padding: 12px 16px; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.announcement { background: var(--dark); color: white; font-size: 14px; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.announcement__link { color: #83e3e4; font-weight: 700; text-decoration: none; white-space: nowrap; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(220,229,231,.85);
  backdrop-filter: blur(14px);
}
.header__inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; width: 182px; flex: 0 0 auto; }
.brand img { display: block; width: 100%; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 650; }
.site-nav > a:not(.button) { text-decoration: none; color: #405159; }
.site-nav > a:not(.button):hover { color: var(--brand-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: white; border-radius: 12px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); border-radius: 4px; transition: transform .2s, opacity .2s; }

.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid var(--brand); border-radius: 13px; padding: 12px 20px;
  background: var(--brand); color: white; font-weight: 780; text-decoration: none;
  box-shadow: 0 9px 20px rgba(2,161,167,.2); transition: transform .18s, box-shadow .18s, background .18s;
  cursor: pointer;
}
.button:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 13px 26px rgba(2,125,130,.24); }
.button--small { min-height: 42px; padding: 8px 17px; border-radius: 11px; }
.button--secondary { background: white; color: var(--ink); border-color: #bdcacc; box-shadow: none; }
.button--secondary:hover { background: var(--soft); border-color: #9db0b4; color: var(--ink); }
.button--outline { background: transparent; color: var(--brand-dark); box-shadow: none; }
.button--outline:hover { color: white; }
.button--full { width: 100%; }
.button--white { background: white; color: var(--brand-dark); border-color: white; box-shadow: none; }
.button--white:hover { background: #eefafa; color: var(--brand-dark); border-color: #eefafa; }

.hero {
  position: relative; overflow: hidden; padding-top: 74px; padding-bottom: 84px;
  background:
    radial-gradient(circle at 82% 5%, rgba(2,161,167,.14), transparent 33%),
    linear-gradient(180deg, #fff 0%, #fbfefe 100%);
}
.hero::before, .hero::after { content:""; position:absolute; border: 1px solid rgba(2,161,167,.13); border-radius:50%; pointer-events:none; }
.hero::before { width: 440px; height: 440px; right: -180px; top: -180px; }
.hero::after { width: 250px; height: 250px; right: 110px; top: 80px; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(350px,.72fr); gap: 72px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--brand-dark); font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.eyebrow__dot, .status-dot { width: 9px; height: 9px; border-radius: 50%; background: #35c66f; box-shadow: 0 0 0 5px rgba(53,198,111,.12); }
.hero h1 { margin: 18px 0 22px; max-width: 760px; font-size: clamp(42px, 5.6vw, 70px); line-height: 1.04; letter-spacing: -.045em; }
.hero h1 span { color: var(--brand); }
.hero__lead { max-width: 760px; margin: 0; color: var(--muted); font-size: 19px; line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero__assurances { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; color: #53646b; font-size: 14px; }

.consult-card { position: relative; background: white; border: 1px solid var(--line); border-radius: 28px; padding: 29px; box-shadow: var(--shadow); }
.consult-card::before { content:""; position:absolute; inset: 8px -8px -8px 8px; z-index:-1; border-radius:28px; background: rgba(2,161,167,.09); }
.consult-card__top { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #4f646b; font-weight: 700; }
.consult-card h2 { margin: 15px 0 6px; font-size: 27px; line-height: 1.25; }
.consult-card > p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.consult-card form { display: grid; gap: 14px; }
.consult-card label { display: grid; gap: 6px; color: #3d5158; font-size: 13px; font-weight: 750; }
.consult-card input, .consult-card select { width: 100%; min-height: 47px; border: 1px solid #ccd8da; border-radius: 11px; padding: 10px 13px; color: var(--ink); background: white; outline: none; }
.consult-card input:focus, .consult-card select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(2,161,167,.11); }
.consult-card small { display: block; margin-top: 12px; color: #7a898f; font-size: 11px; text-align: center; }
.consult-card small a { color: var(--brand-dark); }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 24px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { color: var(--brand-dark); font-size: 26px; line-height: 1.2; }
.trust-item span { margin-top: 6px; color: var(--muted); font-size: 14px; }
.trust-note { margin: -1px auto 0; padding: 9px 20px 11px; max-width: var(--container); color: #7d8a8f; font-size: 11px; text-align: center; }

.section-heading { display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: end; margin-bottom: 44px; }
.section-kicker { display: inline-block; color: var(--brand-dark); font-size: 13px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.section-heading h2, .process-intro h2, .why-grid h2, .faq-layout h2, .cta-box h2 { margin: 9px 0 0; font-size: clamp(32px, 4.1vw, 49px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading > p, .process-intro > p, .faq-layout > div > p { margin: 0; color: var(--muted); }
.section-heading--light p { color: #b9c8cc; }
.section-heading--light .section-kicker { color: #68d7d9; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.service-card { min-height: 310px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); border-color: #a9d9da; box-shadow: var(--shadow); }
.service-card--accent { background: linear-gradient(145deg, var(--dark), #164048); color: white; border-color: transparent; }
.service-card--accent p { color: #c6d5d8 !important; }
.service-card--accent a { color: #7fe0e2 !important; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 14px; background: var(--brand-soft); color: var(--brand-dark); font-size: 13px; font-weight: 900; }
.service-card--accent .icon-box { background: rgba(255,255,255,.12); color: white; }
.service-card h3 { margin: 0; font-size: 21px; line-height: 1.3; }
.service-card p { margin: 13px 0 23px; color: var(--muted); font-size: 15px; }
.service-card a { margin-top: auto; color: var(--brand-dark); font-weight: 800; text-decoration: none; }

.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.package-card { position: relative; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-sm); }
.package-card--featured { border: 2px solid var(--brand); box-shadow: var(--shadow); transform: translateY(-8px); }
.popular-badge { position: absolute; top: -14px; right: 24px; padding: 7px 12px; border-radius: 999px; background: var(--brand); color: white; font-size: 11px; font-weight: 850; }
.package-label { color: var(--brand-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.package-card h3 { margin: 11px 0 5px; font-size: 29px; }
.package-price { margin: 0 0 22px; color: var(--ink); font-size: 30px; font-weight: 900; line-height: 1.2; }
.package-price small { display: block; color: var(--muted); font-size: 12px; font-weight: 650; }
.package-card ul { min-height: 133px; margin: 0 0 26px; padding: 0; list-style: none; }
.package-card li { position: relative; padding: 7px 0 7px 27px; color: #4e6067; }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 900; }
.price-disclaimer { margin-top: 27px; padding: 19px 22px; border: 1px solid #cbdcde; border-radius: 15px; background: rgba(255,255,255,.72); color: #5d6d73; font-size: 13px; }

.process-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 92px; align-items: start; }
.process-intro { position: sticky; top: 120px; }
.process-intro > p { margin: 22px 0; }
.text-link { color: var(--brand-dark); font-weight: 800; text-decoration: none; }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 0 0 33px; }
.timeline li::after { content:""; position:absolute; left:26px; top:55px; bottom:0; width:2px; background:#d8e8e9; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li:last-child::after { display:none; }
.timeline li > span { width:54px; height:54px; display:grid; place-items:center; border-radius:50%; background:var(--brand-soft); color:var(--brand-dark); font-weight:900; }
.timeline h3 { margin: 2px 0 4px; font-size: 20px; }
.timeline p { margin: 0; color: var(--muted); }

.video-grid { display: grid; grid-template-columns: minmax(0,1.7fr) minmax(270px,.7fr); gap: 28px; align-items: start; }
.video-card { border: 1px solid rgba(255,255,255,.15); border-radius: 23px; background: rgba(255,255,255,.05); overflow: hidden; }
.video-card__label { display: flex; justify-content: space-between; padding: 15px 18px; color: #dce8ea; font-weight: 780; }
.video-card__label small { color: #91a8ad; }
.video-card video { display: block; width: 100%; background: #000; }
.video-card--wide video { aspect-ratio: 16/9; object-fit: cover; }
.phone-frame { max-width: 360px; margin: 0 auto 22px; padding: 10px; border-radius: 31px; background: #07171b; box-shadow: 0 20px 42px rgba(0,0,0,.35); }
.phone-frame video { aspect-ratio: 9/16; border-radius: 22px; object-fit: cover; }

.why-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 78px; align-items: start; }
.benefit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 17px; }
.benefit-grid article { padding: 23px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.benefit-grid strong { font-size: 18px; }
.benefit-grid p { margin: 7px 0 0; color: var(--muted); font-size: 14px; }

.faq-layout { display: grid; grid-template-columns: .68fr 1.32fr; gap: 80px; align-items: start; }
.faq-layout > div:first-child { position: sticky; top: 120px; }
.faq-layout > div:first-child > p { margin: 20px 0 26px; }
.accordion { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 16px; background: white; padding: 0 20px; }
summary { position: relative; padding: 20px 36px 20px 0; cursor: pointer; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 17px; color: var(--brand-dark); font-size: 23px; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 0 20px; color: var(--muted); }

.cta-section { padding: 0 0 90px; }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; padding: 50px; border-radius: 28px; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: white; box-shadow: var(--shadow); }
.cta-box h2 { max-width: 800px; }
.cta-box p { margin: 14px 0 0; max-width: 730px; color: #d8f1f1; }
.section-kicker--light { color: #c9ffff; }

.site-footer { padding-top: 62px; background: #0c2026; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1fr; gap: 50px; padding-bottom: 46px; }
.footer-brand img { width: 195px; padding: 8px; border-radius: 10px; background: white; }
.footer-brand > p { margin: 12px 0 0; color: #9fb2b7; letter-spacing: .08em; font-size: 12px; text-transform: uppercase; }
.footer-brand .company-name { margin-top: 17px; color: white; font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.footer-grid h2 { margin: 0 0 13px; font-size: 15px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a, .footer-grid > div > p { margin: 5px 0; color: #aebfc3; font-size: 14px; text-decoration: none; }
.footer-grid a:hover { color: white; }
.social-links { display: flex; gap: 9px; margin-top: 12px; }
.social-links a { width: 37px; height: 37px; display: grid; place-items: center; margin: 0; border: 1px solid #345057; border-radius: 10px; color: white; font-size: 11px; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 21px 0 25px; border-top: 1px solid #294047; color: #81969b; font-size: 11px; }

.floating-wa { position: fixed; right: 22px; bottom: 22px; z-index: 1100; display: flex; align-items: center; gap: 9px; padding: 12px 17px 12px 13px; border-radius: 999px; background: #25d366; color: white; box-shadow: 0 12px 32px rgba(12,70,37,.3); font-weight: 850; text-decoration: none; transition: transform .18s, box-shadow .18s; }
.floating-wa:hover { transform: translateY(-3px); box-shadow: 0 17px 36px rgba(12,70,37,.38); }
.floating-wa svg { width: 29px; height: 29px; }

.legal-page { min-height: 70vh; padding: 70px 0 90px; }
.legal-page article { max-width: 820px; }
.legal-page h1 { font-size: clamp(36px,5vw,58px); line-height:1.1; }
.legal-page h2 { margin-top: 36px; }
.legal-page p, .legal-page li { color: var(--muted); }
.back-link { display:inline-block; margin-top:20px; color:var(--brand-dark); font-weight:800; text-decoration:none; }

@media (max-width: 980px) {
  .section { padding: 76px 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 45px; }
  .consult-card { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .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); }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .process-layout, .why-grid, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .process-intro, .faq-layout > div:first-child { position: static; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card--portrait { max-width: 520px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .cta-box { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .announcement__inner { justify-content: center; text-align: center; min-height: 43px; }
  .announcement__link { display: none; }
  .header__inner { min-height: 70px; }
  .brand { width: 158px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: calc(100% + 9px); display: none; flex-direction: column; align-items: stretch; gap: 2px; padding: 13px; border: 1px solid var(--line); border-radius: 17px; background: white; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav > a:not(.button) { padding: 11px 12px; border-radius: 10px; }
  .site-nav > a:not(.button):hover { background: var(--soft); }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .package-grid { grid-template-columns: 1fr; }
  .package-card--featured { transform: none; }
  .package-card ul { min-height: auto; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 64px 0; }
  .hero { padding-top: 52px; padding-bottom: 65px; }
  .hero h1 { font-size: 43px; }
  .hero__lead { font-size: 17px; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .hero__assurances { display: grid; gap: 8px; }
  .consult-card { padding: 22px; border-radius: 22px; }
  .trust-grid, .service-grid, .benefit-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 105px; border-right: 0; border-bottom: 1px solid var(--line); text-align: center; }
  .trust-item:last-child { border-bottom: 0; }
  .service-card { min-height: 0; }
  .process-layout { gap: 36px; }
  .timeline li { grid-template-columns: 46px 1fr; gap: 15px; }
  .timeline li > span { width:46px; height:46px; }
  .timeline li::after { left:22px; top:47px; }
  .video-card__label { font-size: 13px; }
  .cta-section { padding-bottom: 65px; }
  .cta-box { padding: 31px 23px; border-radius: 22px; }
  .footer-grid { gap: 31px; }
  .footer-bottom { flex-direction: column; }
  .floating-wa { right: 14px; bottom: 14px; width: 58px; height: 58px; justify-content: center; padding: 0; }
  .floating-wa span { display: none; }
  .floating-wa svg { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
