:root {
  --ink: #172b30;
  --muted: #60777c;
  --navy: #075866;
  --dark: #132c31;
  --cyan: #00afc2;
  --cyan-soft: #8be8ef;
  --bg: #f1f7f8;
  --line: #d5e2e4;
  --white: #fff;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(15, 47, 53, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--bg); font-family: "Manrope", system-ui, sans-serif; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; background: var(--white); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; padding: 14px 0; transition: .25s ease; color: var(--white); }
.site-header.scrolled { background: rgba(19, 44, 49, .96); box-shadow: 0 10px 30px rgba(0,0,0,.16); backdrop-filter: blur(16px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 225px; }
.brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.brand span { display: flex; flex-direction: column; line-height: 1.2; }
.brand strong { font-size: 1.06rem; letter-spacing: -.02em; }
.brand small { color: var(--cyan-soft); margin-top: 4px; font-size: .72rem; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .9rem; font-weight: 600; }
.main-nav > a:not(.nav-access) { opacity: .86; }
.main-nav > a:hover { opacity: 1; color: var(--cyan-soft); }
.nav-access { padding: 11px 18px; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 0; padding: 10px; }
.menu-toggle span { height: 2px; background: white; display: block; margin: 5px 0; }

.hero { min-height: 820px; position: relative; display: flex; align-items: center; color: var(--white); overflow: hidden; background: var(--dark); }
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slides { z-index: 0; }
.hero-slide { background-position: center; background-size: cover; background-repeat: no-repeat; opacity: 0; transform: scale(1.035); transition: opacity 1s ease, transform 6.5s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(11,32,37,.95) 0%, rgba(11,32,37,.8) 48%, rgba(11,32,37,.2) 100%); }
.hero::after { content: ""; position: absolute; z-index: 1; width: 600px; height: 600px; border-radius: 50%; right: -250px; top: -240px; background: rgba(0,175,194,.22); filter: blur(8px); pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.eyebrow { color: var(--navy); text-transform: uppercase; letter-spacing: .18em; font-weight: 800; font-size: .78rem; margin: 0 0 16px; }
.eyebrow.light { color: var(--cyan-soft); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; font-size: clamp(3rem, 6vw, 5.7rem); line-height: 1.02; letter-spacing: -.055em; margin-bottom: 26px; }
h1 span { color: var(--cyan-soft); }
.hero-copy { max-width: 650px; font-size: 1.16rem; color: rgba(255,255,255,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--cyan); color: var(--dark); }
.button.ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.button.full { width: 100%; border-radius: 14px; }
.button.small { min-height: 42px; padding: 0 18px; background: var(--cyan); color: var(--dark); }
.hero-points { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 24px; color: rgba(255,255,255,.76); font-size: .87rem; }
.hero-points span { color: var(--cyan-soft); margin-right: 6px; }
.hero-controls { position: absolute; z-index: 3; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; align-items: center; gap: 13px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(11,32,37,.42); backdrop-filter: blur(12px); }
.hero-arrow { width: 34px; height: 34px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 50%; color: var(--white); background: rgba(255,255,255,.1); cursor: pointer; }
.hero-arrow:hover, .hero-arrow:focus-visible { background: var(--cyan); color: var(--dark); }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: width .25s ease, background .25s ease; }
.hero-dots button.active { width: 28px; border-radius: 999px; background: var(--cyan-soft); }

.trust-strip { background: var(--dark); color: var(--white); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.16); }
.trust-grid div { display: grid; gap: 4px; background: var(--dark); padding: 10px 34px; }
.trust-grid strong { color: var(--cyan-soft); }
.trust-grid span { color: rgba(255,255,255,.65); font-size: .82rem; }

.section { padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; margin-bottom: 48px; }
h2 { font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 20px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { color: var(--muted); max-width: 480px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { position: relative; min-height: 390px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card.featured { background: #e7f8fa; }
.product-card.dark { color: var(--white); background: var(--dark); border-color: var(--dark); }
.product-card::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: var(--cyan-soft); opacity: .12; right: -70px; top: -70px; }
.product-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: rgba(0,175,194,.12); color: var(--navy); }
.product-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.product-number { position: absolute; right: 28px; top: 32px; color: var(--muted); font-size: .75rem; font-weight: 700; }
.product-card h3 { font-size: 1.35rem; margin: 62px 0 12px; }
.product-card p { color: var(--muted); font-size: .9rem; }
.product-card.dark p, .product-card.dark .product-number { color: rgba(255,255,255,.65); }
.product-card a { position: absolute; bottom: 28px; left: 28px; font-weight: 800; color: var(--navy); font-size: .86rem; }
.product-card.dark a { color: var(--cyan-soft); }
.product-card a span, .text-link span { margin-left: 6px; }

.claims { background: var(--white); }
.claims-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.claims-visual { min-height: 570px; border-radius: 36px; background: linear-gradient(145deg, var(--dark), var(--navy)); position: relative; overflow: hidden; }
.claims-shape { position: absolute; width: 380px; height: 380px; border: 80px solid var(--cyan); border-radius: 50%; right: -80px; top: -100px; opacity: .7; }
.claims-shape::after { content: ""; position: absolute; width: 250px; height: 250px; border: 54px solid rgba(255,255,255,.35); border-radius: 50%; left: -180px; bottom: -240px; }
.claims-panel { position: absolute; inset: auto 32px 32px; padding: 28px; border-radius: 22px; background: rgba(255,255,255,.95); display: grid; gap: 8px; }
.claims-kicker { color: var(--navy); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; }
.claims-panel strong { font-size: 1.25rem; }
.claims-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1rem; }
.steps { list-style: none; padding: 0; margin: 34px 0; display: grid; gap: 18px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps li > span { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #def6f8; color: var(--navy); font-weight: 800; }
.steps div { display: grid; }
.steps small { color: var(--muted); }
.text-link { color: var(--navy); font-weight: 800; border-bottom: 1px solid var(--cyan); padding-bottom: 5px; }

.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.about-copy { color: var(--muted); }
.about-copy .lead { color: var(--ink); font-size: 1.3rem; font-weight: 700; }
.values { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.values span { padding: 8px 14px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; color: var(--navy); font-weight: 700; font-size: .78rem; }
.purpose-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.purpose-card { position: relative; min-height: 290px; padding: 38px; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--white); }
.purpose-card.accent { color: var(--white); border-color: var(--dark); background: var(--dark); }
.purpose-card > span { position: absolute; right: 30px; top: 24px; color: var(--line); font-size: 3.5rem; line-height: 1; font-weight: 800; opacity: .65; }
.purpose-card .eyebrow { position: relative; margin-bottom: 30px; }
.purpose-card.accent .eyebrow { color: var(--cyan-soft); }
.purpose-card h3 { position: relative; max-width: 410px; margin-bottom: 14px; font-size: 1.55rem; }
.purpose-card > p:last-child { position: relative; max-width: 520px; margin: 0; color: var(--muted); }
.purpose-card.accent > p:last-child { color: rgba(255,255,255,.68); }

.contact { background: var(--dark); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.68); }
address { margin: 42px 0; font-style: normal; display: grid; gap: 20px; }
address div { display: flex; gap: 14px; align-items: flex-start; }
.address-icon { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,175,194,.14); color: var(--cyan-soft); font-weight: 800; }
address a:hover { color: var(--cyan-soft); }
.contact-note { font-size: .8rem; }
.contact-form { background: var(--white); color: var(--ink); border-radius: 28px; padding: 36px; box-shadow: var(--shadow); display: grid; gap: 18px; }
.contact-form label { display: grid; gap: 7px; font-size: .8rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; color: var(--ink); background: #fbfdfd; outline: none; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,175,194,.12); }
.check { grid-template-columns: 20px 1fr !important; align-items: start; color: var(--muted); font-weight: 500 !important; }
.check input { width: 17px; margin-top: 4px; accent-color: var(--navy); }
.check a { color: var(--navy); text-decoration: underline; }
.form-error { min-height: 0; margin: 0; color: #b42318; font-size: .82rem; }
.form-help { color: var(--muted); text-align: center; }

.site-footer { background: #0b2025; color: var(--white); padding-top: 70px; }
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; padding-bottom: 55px; }
.footer-brand { align-self: start; }
.footer-links { display: grid; align-content: start; gap: 10px; color: rgba(255,255,255,.64); font-size: .82rem; }
.footer-links strong { color: var(--white); margin-bottom: 8px; font-size: .88rem; }
.footer-links a:hover { color: var(--cyan-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.45); font-size: .72rem; }

.cookie-banner { position: fixed; z-index: 100; left: 22px; right: 22px; bottom: 22px; max-width: 820px; margin: auto; padding: 18px 20px; border-radius: 18px; background: var(--white); box-shadow: 0 18px 60px rgba(0,0,0,.25); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 3px 0 0; color: var(--muted); font-size: .78rem; }
.cookie-banner a { color: var(--navy); text-decoration: underline; }

.legal-page { padding: 150px 0 90px; min-height: 80vh; }
.legal-card { max-width: 900px; background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: clamp(28px, 6vw, 70px); margin: auto; }
.legal-card h1 { color: var(--ink); font-size: clamp(2.4rem, 5vw, 4.2rem); }
.legal-card h2 { font-size: 1.45rem; margin-top: 34px; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-card a { color: var(--navy); text-decoration: underline; }
.legal-header { background: var(--dark); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 76px; left: 20px; right: 20px; display: none; padding: 22px; border-radius: 18px; background: var(--dark); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .main-nav.open { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .claims-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .purpose-grid { grid-template-columns: 1fr; }
  .claims-visual { min-height: 430px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2; }
}

@media (max-width: 680px) {
  .container { width: calc(100% - 28px); }
  .brand { min-width: 0; }
  .brand small { max-width: 180px; }
  .menu-toggle { flex: 0 0 44px; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 95px; }
  h1 { max-width: 100%; font-size: clamp(2.15rem, 9.5vw, 2.8rem); overflow-wrap: anywhere; }
  .hero-copy { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: min(100%, 300px); }
  .hero-points { display: grid; gap: 8px; padding-bottom: 46px; }
  .hero-controls { bottom: 14px; }
  .hero-arrow { width: 30px; height: 30px; }
  .section { padding: 78px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 340px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { padding: 18px 10px; }
  .claims-visual { min-height: 350px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .purpose-grid { margin-top: 46px; }
  .purpose-card { min-height: 0; padding: 28px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { align-items: stretch; flex-direction: column; }
}

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