@import url('../assets/fonts.css');


:root {
  --max: 1160px;
  --ink: #172b3a;
  --muted: #5f7180;
  --line: #dce7ed;
  --red: #cc1f1f;
  --blue: #036fa3;
  --soft: #eef6f8;
  --cream: #fff9f5;
  --shadow: 0 18px 50px rgba(19, 55, 76, .14);
  --radius-card: 14px;
  --radius-control: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: Poppins, Arial, sans-serif; line-height: 1.55; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: auto; }
.narrow { max-width: 900px; }

.site-header { position: sticky; top: 0; z-index: 5; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.header-inner { height: 78px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 147px; display: block; }
.desktop-nav { display: flex; gap: 24px; margin-left: auto; font-size: 12px; font-weight: 800; }
.desktop-nav a { text-decoration: none; }
.desktop-nav a:hover, .site-footer a:hover, .text-link:hover { color: var(--red); }
.menu-toggle, .mobile-nav { display: none; }

.hero { padding: 82px 0 72px; background: linear-gradient(135deg, #fff5f3, #eaf4f8); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
h1, h2, h3 { text-wrap: balance; }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(40px, 5vw, 68px); line-height: 1.05; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin: 22px 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.answer-panel { max-width: 680px; margin: 25px 0; padding: 19px 22px; border-left: 4px solid var(--red); border-radius: 0 12px 12px 0; background: rgba(255,255,255,.82); box-shadow: 0 8px 28px rgba(19,55,76,.07); }
.answer-panel strong { font-size: 15px; }
.answer-panel p { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border: 0; border-radius: var(--radius-control); text-decoration: none; font: 800 13px Poppins, Arial, sans-serif; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(19,55,76,.14); }
.button-primary { background: var(--red); color: #fff; box-shadow: 0 10px 22px rgba(204,31,31,.2); }
.text-link { color: var(--blue); font-size: 13px; font-weight: 800; text-decoration: none; }
.hero-note { margin-top: 20px; color: #536875; font-size: 12px; font-weight: 700; }
.button:focus-visible, .text-link:focus-visible, summary:focus-visible, .menu-toggle:focus-visible, a:focus-visible { outline: 3px solid #f2a000; outline-offset: 3px; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 430px; }
.orbit { position: absolute; border: 1px solid rgba(3,111,163,.22); border-radius: 50%; }
.orbit-one { width: 410px; height: 410px; }
.orbit-two { width: 300px; height: 300px; border-style: dashed; }
.product-box { position: relative; z-index: 1; width: min(340px, 78%); filter: drop-shadow(20px 24px 24px rgba(16,50,69,.28)); transform: rotate(4deg); }
.floating-note { position: absolute; z-index: 2; display: flex; gap: 10px; align-items: center; padding: 13px 15px; background: #fff; border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow); font-size: 11px; font-weight: 800; }
.floating-note span { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 8px; background: #ffe2e2; color: var(--red); font-size: 12px; }
.note-one { top: 39px; right: 0; }
.note-two { bottom: 39px; left: 0; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 20px 0; }
.trust-grid div { display: flex; justify-content: center; gap: 12px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border: 0; }
.trust-grid strong { color: var(--red); font-size: 17px; }
.trust-grid span { color: var(--muted); font-size: 12px; font-weight: 700; }

.section { padding: 92px 0; }
.section-tint { background: var(--soft); }
.section-intro { max-width: 780px; margin-bottom: 38px; }
.section h2 { max-width: 25ch; margin: 0 0 15px; font-size: clamp(30px, 4vw, 46px); line-height: 1.1; letter-spacing: -.035em; }
.section-intro > p:last-child, .direct-answer > .container > p:not(.eyebrow), .two-column > div > p:not(.eyebrow), .visual-grid > div > p:not(.eyebrow), .cta-panel p:not(.eyebrow) { max-width: 68ch; color: var(--muted); font-size: 16px; line-height: 1.7; }
.answer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 35px; }
.answer-grid article { padding: 27px 23px; border: 1px solid var(--line); border-radius: var(--radius-card); background: #fff; box-shadow: 0 5px 20px rgba(19,55,76,.05); }
.icon-number { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 9px; background: #ffe2e2; color: var(--red); font-size: 13px; font-weight: 900; }
.answer-grid h3 { margin: 15px 0 9px; font-size: 19px; }
.answer-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.steps { display: grid; gap: 0; max-width: 940px; margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: grid; grid-template-columns: 64px 1fr; gap: 21px; padding: 25px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-number { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--red); color: #fff; font-size: 12px; font-weight: 900; }
.steps h3 { margin: 1px 0 8px; font-size: 20px; }
.steps p { max-width: 70ch; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.step-result { display: inline-block; margin-top: 10px; color: #16815c; font-size: 12px; font-weight: 800; }

.compare-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: stretch; }
.compare-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-card); background: #fff; box-shadow: 0 5px 20px rgba(19,55,76,.05); }
.compare-card.featured { border: 2px solid var(--red); box-shadow: var(--shadow); }
.compare-label { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.compare-card h3 { margin: 12px 0 18px; font-size: 23px; line-height: 1.2; }
.compare-card ul { display: grid; gap: 13px; margin: 0 0 25px; padding: 0; list-style: none; }
.compare-card li { position: relative; padding-left: 25px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.compare-card li::before { content: '✓'; position: absolute; left: 0; color: #16815c; font-weight: 900; }

.visual-section { padding: 88px 0; }
.visual-section.dark { background: #102534; color: #fff; }
.visual-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 65px; align-items: center; }
.visual-section h2 { color: #fff; }
.visual-grid > div > p:not(.eyebrow) { color: #c4d1d8; }
.source-note { margin-top: 22px; color: #a7bbc6 !important; font-size: 12px !important; }
.visual-grid figure, .feature-shot { margin: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.visual-section figure { background: #18394b; border-color: rgba(255,255,255,.17); }
.visual-grid img, .feature-shot img { display: block; width: 100%; border-radius: 10px; }
.visual-grid figcaption, .feature-shot figcaption { padding: 9px 3px 2px; color: var(--muted); font-size: 11px; font-weight: 700; }

.two-column { display: grid; grid-template-columns: 1fr .9fr; gap: 75px; align-items: start; }
.check-list { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 18px 15px 42px; border: 1px solid var(--line); border-radius: var(--radius-control); background: #fff; color: var(--muted); font-size: 14px; }
.check-list li::before { content: '✓'; position: absolute; left: 16px; color: #16815c; font-weight: 900; }

.faq-section { padding-top: 75px; }
.faq-section details { padding: 20px 0; border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; min-height: 44px; gap: 18px; cursor: pointer; font-size: 16px; font-weight: 800; }
summary::after { content: '+'; display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; color: var(--blue); font-size: 20px; }
details[open] summary::after { content: '−'; color: var(--red); }
.faq-section details p { max-width: 72ch; margin: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.final-cta { padding-top: 55px; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 48px 54px; border-radius: var(--radius-card); background: #102534; color: #fff; }
.cta-panel h2 { color: #fff; }
.cta-panel p:not(.eyebrow) { color: #c4d1d8; }
.site-footer { padding: 25px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer a { display: inline-flex; align-items: center; min-height: 44px; color: var(--blue); font-weight: 800; text-decoration: none; }

@media (max-width: 800px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .header-inner { height: 68px; }
  .brand img { width: 124px; }
  .desktop-nav { display: none; }
  .language-switcher { margin-left: auto; margin-right: 0; }
  .menu-toggle { display: inline-flex; align-items: center; margin-left: 0; min-height: 44px; padding: 0 13px; border: 1px solid var(--line); border-radius: var(--radius-control); background: #fff; font: 700 12px Poppins, Arial, sans-serif; }
  .mobile-nav { position: absolute; top: 62px; left: 14px; right: 14px; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius-control); background: #fff; box-shadow: var(--shadow); }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 12px; text-decoration: none; font-size: 13px; font-weight: 700; }
  .hero { padding: 48px 0; }
  .hero-grid, .visual-grid, .two-column { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 40px; }
  .hero-lead { font-size: 15px; }
  .answer-panel p { font-size: 13px; }
  .hero-visual { min-height: 280px; }
  .product-box { width: 235px; }
  .orbit-one { width: 290px; height: 290px; }
  .orbit-two { width: 215px; height: 215px; }
  .note-one { top: 10px; right: 0; }
  .note-two { bottom: 14px; left: 0; }
  .floating-note { padding: 10px 11px; font-size: 10px; }
  .trust-grid, .answer-grid, .compare-grid { grid-template-columns: 1fr; gap: 13px; }
  .trust-grid div { justify-content: flex-start; border: 0; }
  .section { padding: 70px 0; }
  .steps li { grid-template-columns: 50px 1fr; gap: 14px; }
  .step-number { width: 44px; height: 44px; font-size: 10px; }
  .steps h3 { font-size: 18px; }
  .compare-card { padding: 24px; }
  .cta-panel { display: block; padding: 32px 25px; }
  .cta-panel .button { margin-top: 20px; }
  .footer-inner { display: block; }
  .site-footer nav { margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover { transform: none; }
}
.language-control { display: inline-flex; align-items: center; gap: 8px; margin-left: auto; margin-right: 12px; }
.language-control label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.language-control select { min-height: 36px; padding: 0 30px 0 10px; border: 1px solid var(--line); border-radius: var(--radius-control); background: #fff; color: var(--blue); font: 800 12px Poppins, Arial, sans-serif; cursor: pointer; }
.language-control select:focus-visible { outline: 3px solid #f2a000; outline-offset: 3px; }
@media (max-width: 800px) { .language-control { margin-right: 0; } .language-control select { min-height: 44px; padding: 0 24px 0 8px; font-size: 10px; } }
