:root {
  --navy: #0f1b2d;
  --navy-light: #1c3050;
  --accent: #2e6fee;
  --accent-light: #5e93ff;
  --bg: #f7f9fc;
  --white: #ffffff;
  --text-dark: #15202b;
  --text-muted: #5b6b7c;
  --border: #e3e8ef;
  --success: #1ea672;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(15,27,45,0.06);
  --shadow-md: 0 12px 32px rgba(15,27,45,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.header-inner { display: flex; align-items: center; justify-content: center; }
.logo { font-size: 22px; font-weight: 800; font-family: 'Manrope', sans-serif; color: var(--navy); }
.logo-accent { color: var(--accent); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 64px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: rgba(94,147,255,0.18);
  color: var(--accent-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-bullets { list-style: none; margin-bottom: 32px; }
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}
.check {
  color: var(--success);
  background: rgba(30,166,114,0.18);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.trust-line {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(46,111,238,0.35); }
.cta-button-large { font-size: 18px; padding: 18px 40px; }

.hero-visual { display: flex; justify-content: center; }
.hero-image {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  display: block;
}

/* Feature icons image */
.feature-icons-image {
  max-width: 700px;
  margin: 0 auto 40px;
}
.feature-icons-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* Lifestyle row */
.lifestyle-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.lifestyle-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}
.why-grid-stacked { grid-template-columns: 1fr; gap: 18px; }

/* Before/after image */
.before-after-image {
  max-width: 900px;
  margin: 0 auto;
}
.before-after-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-title {
  font-size: 30px;
  text-align: center;
  margin-bottom: 14px;
}
.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.why-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.why-card p { font-size: 14.5px; color: var(--text-muted); }

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.stars { color: #f5a623; font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 14.5px; color: var(--text-dark); margin-bottom: 14px; font-style: italic; }
.reviewer { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* Legal notice */
.legal-notice-section { padding: 32px 0; }
.legal-box {
  background: #fff8e8;
  border: 1px solid #f0d99a;
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 13.5px;
  color: #6b5a2a;
  max-width: 880px;
  margin: 0 auto;
}

/* Final CTA */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0;
}
.final-cta-inner { text-align: center; }
.final-cta-inner h2 { color: var(--white); font-size: 30px; margin-bottom: 12px; }
.final-cta-inner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 16px; }

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 28px 0;
  text-align: center;
}
.footer-inner p { color: rgba(255,255,255,0.55); font-size: 12.5px; margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p { font-size: 13.5px; color: rgba(255,255,255,0.85); flex: 1; min-width: 240px; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}
.cookie-btn-accept { background: var(--accent); color: var(--white); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.3); }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-bullets { display: inline-block; text-align: left; }
  .hero-sub { margin: 0 auto 28px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .review-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .lifestyle-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 56px; }
  .section { padding: 48px 0; }
}
