:root {
  --ink: #102b43;
  --ink-2: #34536d;
  --muted: #667f93;
  --line: #d8e8f2;
  --ice: #eef8ff;
  --ice-2: #d7efff;
  --blue: #1479b8;
  --blue-dark: #0d5e92;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(34, 91, 128, .12);
  --radius: 22px;
  --max: 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.6;
  text-rendering: optimizeLegibility;
}
body.locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #f3a712; outline-offset: 3px; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 15px; background: var(--ink); color: white; border-radius: 10px; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 100px 0; }
.section--ice { background: linear-gradient(180deg, #f8fcff 0%, #edf8ff 100%); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--blue-dark); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: #69b9e9; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7.5vw, 6.4rem); max-width: 880px; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); max-width: 780px; }
h3 { font-size: 1.25rem; }
p { margin: 0; }
.lead { max-width: 670px; margin-top: 26px; color: var(--ink-2); font-size: clamp(1.07rem, 1.8vw, 1.3rem); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 48px; }
.section-head p { max-width: 460px; color: var(--muted); }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 13px 21px; border: 1px solid transparent; border-radius: 12px; background: var(--blue); color: white; font-weight: 750; text-decoration: none; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--blue-dark); box-shadow: 0 12px 26px rgba(20, 121, 184, .22); }
.button--ghost { border-color: #bdd9e9; background: rgba(255,255,255,.75); color: var(--ink); }
.button--ghost:hover { background: white; }
.button--small { min-height: 42px; padding: 9px 15px; font-size: .92rem; }
.text-link { color: var(--blue-dark); font-weight: 750; text-underline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(216,232,242,.82); background: rgba(255,255,255,.87); backdrop-filter: blur(18px); }
.nav { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 1.12rem; font-weight: 850; letter-spacing: -.02em; text-decoration: none; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; background: var(--ink); color: white; font-size: .9rem; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink-2); font-size: .93rem; font-weight: 650; text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: white; color: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 84px 0 70px; }
.hero::before { content: ""; position: absolute; width: 660px; height: 660px; top: -260px; right: -160px; border-radius: 50%; background: radial-gradient(circle, rgba(179,224,250,.7), rgba(238,248,255,0) 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 54px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 span { color: var(--blue); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 42px; padding: 0; color: var(--muted); list-style: none; font-size: .91rem; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #62b6e8; box-shadow: 0 0 0 5px #e5f5ff; }
.hero-visual { position: relative; min-height: 520px; }
.photo-shell { position: absolute; inset: 0 0 55px 40px; overflow: hidden; border: 1px solid rgba(255,255,255,.8); border-radius: 30px; background: var(--ice); box-shadow: var(--shadow); }
.photo-shell img { width: 100%; height: 100%; object-fit: cover; }
.code-card { position: absolute; right: 25px; bottom: 0; width: min(340px, 84%); padding: 23px; border: 1px solid rgba(204,228,242,.85); border-radius: 20px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); backdrop-filter: blur(15px); }
.code-card-top { display: flex; gap: 7px; margin-bottom: 19px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #bad5e6; }
.code-line { height: 8px; margin: 11px 0; border-radius: 8px; background: #d9edf9; }
.code-line:nth-child(2) { width: 82%; background: #88c8ee; }
.code-line:nth-child(3) { width: 58%; }
.code-line:nth-child(4) { width: 72%; }
.code-line:nth-child(5) { width: 44%; background: #9ed4f3; }

.service-grid, .benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.76); box-shadow: 0 12px 38px rgba(39,91,124,.06); }
.card-number { display: grid; width: 44px; height: 44px; margin-bottom: 30px; place-items: center; border-radius: 12px; background: var(--ice-2); color: var(--blue-dark); font-weight: 850; }
.card p { margin-top: 14px; color: var(--muted); }
.card ul { margin: 20px 0 0; padding-left: 20px; color: var(--ink-2); }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.process-step { min-height: 285px; padding: 28px; background: white; }
.process-step strong { display: block; margin-bottom: 70px; color: var(--blue); font-size: .82rem; letter-spacing: .12em; }
.process-step p { margin-top: 14px; color: var(--muted); }

.split { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 70px; }
.feature-photo { overflow: hidden; min-height: 570px; border-radius: 30px; box-shadow: var(--shadow); }
.feature-photo img { width: 100%; height: 570px; object-fit: cover; }
.benefit-list { display: grid; gap: 16px; margin-top: 38px; }
.benefit { display: grid; grid-template-columns: 42px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.benefit-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: var(--ice); color: var(--blue-dark); font-weight: 850; }
.benefit p { margin-top: 5px; color: var(--muted); }

.solutions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.solution { position: relative; min-height: 390px; overflow: hidden; border-radius: 26px; background: #0d2e49; color: white; }
.solution img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.solution::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 25%, rgba(5,27,45,.9)); }
.solution-copy { position: absolute; z-index: 1; right: 28px; bottom: 28px; left: 28px; }
.solution-copy p { margin-top: 10px; color: #d6e9f5; }
.solution-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 15px; }
.tag { padding: 5px 10px; border: 1px solid rgba(255,255,255,.35); border-radius: 99px; background: rgba(255,255,255,.12); font-size: .76rem; }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); border-radius: 24px; background: white; }
.price-card--featured { border-color: #70bde9; box-shadow: var(--shadow); transform: translateY(-10px); }
.popular { position: absolute; top: 18px; right: 18px; padding: 5px 9px; border-radius: 99px; background: var(--ice-2); color: var(--blue-dark); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.price { margin: 24px 0 4px; font-size: 2.35rem; font-weight: 850; letter-spacing: -.04em; }
.term { color: var(--muted); font-size: .9rem; }
.price-card ul { flex: 1; margin: 25px 0 30px; padding-left: 20px; color: var(--ink-2); }
.extra-costs { margin-top: 26px; padding: 22px; border-left: 4px solid #6fbee9; border-radius: 0 14px 14px 0; background: #f4faff; color: var(--ink-2); }

.faq { max-width: 850px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; color: var(--ink); text-align: left; font-weight: 780; }
.faq-button span:last-child { color: var(--blue); font-size: 1.5rem; transition: transform .2s ease; }
.faq-button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-panel { display: none; padding: 0 45px 24px 0; color: var(--muted); }
.faq-panel.open { display: block; }

.contact { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; }
.contact-info { padding: 40px; border-radius: 26px; background: var(--ink); color: white; }
.contact-info p { margin-top: 16px; color: #c7dce9; }
.contact-list { display: grid; gap: 21px; margin-top: 38px; }
.contact-label { display: block; color: #8ebbd7; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-value { display: block; margin-top: 3px; color: white; font-weight: 700; text-decoration: none; }
.contact-note { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); font-size: .84rem; }
.form-card { padding: 40px; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.field--full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 7px; color: var(--ink-2); font-size: .9rem; font-weight: 750; }
input, textarea, select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bcd4e3; border-radius: 10px; background: #fbfdff; color: var(--ink); }
textarea { min-height: 125px; resize: vertical; }
.check { display: flex; align-items: flex-start; gap: 10px; }
.check input { width: 18px; min-height: 18px; margin-top: 4px; }
.check label { margin: 0; font-weight: 500; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 24px; }
.form-status { color: var(--blue-dark); font-weight: 700; }
.form-hint { margin-top: 16px; color: var(--muted); font-size: .84rem; }

.site-footer { padding: 48px 0 24px; border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; }
.footer-note { max-width: 430px; margin-top: 14px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 15px 24px; }
.footer-links a { color: var(--ink-2); font-size: .9rem; }
.footer-links button { padding: 0; border: 0; background: transparent; font-size: .9rem; }
.copyright { margin-top: 35px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

.cookie-bar { position: fixed; z-index: 70; right: 22px; bottom: 22px; left: 22px; display: none; max-width: 1120px; margin-inline: auto; padding: 22px; border: 1px solid #c8deeb; border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: 0 24px 70px rgba(20,56,82,.22); backdrop-filter: blur(18px); }
.cookie-bar.visible { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
.cookie-bar p { color: var(--muted); font-size: .9rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.dialog { width: min(560px, calc(100% - 30px)); padding: 0; border: 0; border-radius: 22px; color: var(--ink); box-shadow: 0 30px 90px rgba(15,46,70,.3); }
.dialog::backdrop { background: rgba(10,31,48,.54); backdrop-filter: blur(3px); }
.dialog-inner { padding: 30px; }
.dialog-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.icon-button { display: grid; flex: 0 0 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--ink); font-size: 1.3rem; }
.cookie-choice { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.cookie-choice p { color: var(--muted); font-size: .84rem; }
.switch { position: relative; width: 48px; height: 27px; }
.switch input { width: 1px; height: 1px; opacity: 0; }
.switch span { position: absolute; inset: 0; border-radius: 99px; background: #a9c0cf; transition: .2s; }
.switch span::after { content: ""; position: absolute; width: 21px; height: 21px; top: 3px; left: 3px; border-radius: 50%; background: white; transition: .2s; }
.switch input:checked + span { background: var(--blue); }
.switch input:checked + span::after { transform: translateX(21px); }
.switch input:disabled + span { background: var(--blue-dark); opacity: .7; }

.legal-hero { padding: 76px 0 48px; background: var(--ice); }
.legal-hero h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.legal-hero p { max-width: 680px; margin-top: 20px; color: var(--muted); }
.legal { display: grid; grid-template-columns: 250px 1fr; gap: 70px; padding: 70px 0 100px; }
.legal-nav { position: sticky; top: 105px; align-self: start; display: grid; gap: 10px; }
.legal-nav a { color: var(--ink-2); font-size: .9rem; }
.legal-content { max-width: 800px; }
.legal-content section { scroll-margin-top: 110px; margin-bottom: 45px; }
.legal-content h2 { margin-bottom: 17px; font-size: 1.7rem; }
.legal-content p, .legal-content li { color: var(--ink-2); }
.legal-content p + p { margin-top: 12px; }
.legal-content ul { padding-left: 22px; }
.legal-meta { margin-top: 18px; font-size: .9rem; }

@media (max-width: 960px) {
  .nav-links { position: fixed; top: 76px; right: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 18px 20px 26px; border-bottom: 1px solid var(--line); background: white; box-shadow: 0 20px 35px rgba(20,56,82,.12); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; }
  .menu-button { display: block; }
  .hero-grid, .split, .contact { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; }
  .service-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .contact-info { order: 2; }
  .legal { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; }
}

@media (max-width: 660px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding-top: 55px; }
  .hero-grid { gap: 40px; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.4rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 385px; }
  .photo-shell { inset: 0 0 45px 15px; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .service-grid, .benefit-grid, .solutions, .process, .form-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 230px; }
  .process-step strong { margin-bottom: 45px; }
  .feature-photo, .feature-photo img { min-height: 420px; height: 420px; }
  .solution { min-height: 340px; }
  .contact-info, .form-card { padding: 27px; }
  .footer-top { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .cookie-bar.visible { right: 10px; bottom: 10px; left: 10px; display: block; max-height: calc(100vh - 20px); overflow-y: auto; }
  .cookie-actions { margin-top: 17px; }
  .cookie-actions .button { flex: 1; }
}

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