@font-face {
  font-family: "Chillax";
  src: url("fonts/Chillax-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chillax";
  src: url("fonts/Chillax-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chillax";
  src: url("fonts/Chillax-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #013e6c;
  --coral: #f5685b;
  --ink: #153047;
  --muted: #617487;
  --surface: #f4f8fb;
  --line: #dbe6ee;
  --white: #ffffff;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 18px 55px rgba(1, 62, 108, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Chillax", "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: white; padding: 10px 14px; border-radius: 10px; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(1,62,108,.08);
}
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 250px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--blue); }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--coral); }
.nav-cta { border-bottom: 3px solid var(--coral); padding-bottom: 5px; }
.menu-button { display: none; border: 0; background: transparent; font-size: 28px; color: var(--blue); }

.hero { padding: 70px 0 56px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 64px; }
.eyebrow { color: var(--coral); text-transform: uppercase; letter-spacing: .16em; font-weight: 300; font-size: .82rem; }
h1, h2, h3 { color: var(--blue); line-height: 1.13; margin-top: 0; font-weight: 500; }
h1 { font-size: clamp(2.9rem, 6vw, 5.4rem); letter-spacing: -.045em; margin-bottom: 24px; }
h1 .dot { color: var(--coral); }
.hero-copy { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); max-width: 650px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 999px; text-decoration: none; font-weight: 500; border: 2px solid transparent; }
.button-primary { color: white; background: var(--coral); box-shadow: 0 10px 28px rgba(245,104,91,.25); }
.button-primary:hover { transform: translateY(-2px); }
.button-secondary { color: var(--blue); border-color: var(--line); background: white; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: 40px; box-shadow: var(--shadow); }
.badge { position: absolute; right: -12px; bottom: 24px; background: white; border: 1px solid var(--line); padding: 14px 18px; border-radius: 16px; box-shadow: var(--shadow); font-weight: 500; color: var(--blue); }

.trust { background: var(--surface); padding: 54px 0; border-block: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { padding: 28px; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: var(--radius); }
.icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: rgba(245,104,91,.13); color: var(--coral); font-size: 26px; margin-bottom: 20px; }
.trust-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.trust-card p { margin: 0; color: var(--muted); }

.section { padding: 92px 0; }
.section-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.section-media img { border-radius: 34px; box-shadow: var(--shadow); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -.035em; margin-bottom: 22px; }
.lead { color: var(--muted); font-size: 1.12rem; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--coral); font-weight: 500; }

.products { background: var(--surface); }
.products .section-grid { grid-template-columns: 1.05fr .95fr; }
.products .section-media { order: 2; }
.product-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.product-tags span { background: white; color: var(--blue); border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; font-weight: 500; }
.note { margin-top: 26px; padding: 18px 20px; border-left: 4px solid var(--coral); background: white; color: var(--muted); }

.contact-band { padding: 36px 0; background: linear-gradient(90deg, rgba(245,104,91,.12), rgba(1,62,108,.06)); }
.contact-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.contact-row h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 6px; }
.contact-row p { margin: 0; color: var(--muted); }

.site-footer { background: var(--blue); color: white; padding: 54px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-logo { width: 210px; filter: brightness(0) invert(1); opacity: .96; }
.site-footer h3 { color: white; font-size: 1rem; margin-bottom: 14px; font-weight: 500; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.8); }
.site-footer a { text-decoration: none; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.18); font-size: .9rem; color: rgba(255,255,255,.7); font-weight: 300; }

.legal-main { padding: 64px 0 90px; }
.legal-card { max-width: 900px; margin: 0 auto; padding: clamp(24px, 5vw, 56px); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.legal-card h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
.legal-card h2 { font-size: 1.55rem; margin-top: 34px; }
.placeholder { background: #fff3d9; border: 1px dashed #d59d2b; padding: 2px 6px; border-radius: 5px; }

@media (max-width: 860px) {
  .menu-button { display: block; }
  .nav-links { display: none; position: absolute; inset: 82px 20px auto; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hero-grid, .section-grid, .products .section-grid { grid-template-columns: 1fr; gap: 42px; }
  .products .section-media { order: initial; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-row { align-items: flex-start; flex-direction: column; }
  .brand img { width: 205px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero { padding-top: 46px; }
  .badge { position: static; margin-top: 14px; display: inline-block; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-card { border-radius: 18px; }
}
