@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --primary: #1E3A8A;          /* deep blue */
  --accent: #F59E0B;           /* warm amber */
  --light-bg: #F0F4FF;         /* icy blue tint */
  --text-dark: #0F172A;
  --text-muted: #475569;
  --border-light: #CBD5E1;
  --shadow-sm: 0 6px 20px rgba(0,0,0,0.04);
  --radius: 16px;
  --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --spacing-section: 80px;
  --spacing-inner: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
}
.thanks-wrapper {
  word-break: break-word;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- HEADER (clean white + blue accents) ---------- */
.site-header {
  background: #ffffff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  color: var(--primary);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 0;
}

.logo span {
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  font-weight: 500;
}

.nav-menu a {
  color: var(--primary);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-menu a:hover {
  opacity: 1;
  color: var(--accent);
}

.header-notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 220px;
  text-align: right;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--primary);
  left: 0;
  transition: transform 0.2s;
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* ---------- HERO – image on left, content on right ---------- */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(115deg, var(--light-bg) 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* swap order so image is first visually */
.hero-image {
  order: -1;
}
.hero-content {
  order: 1;
}

.hero-title span {
  color: var(--accent);
  display: block;
  font-size: 0.6em;
  font-weight: 400;
  letter-spacing: 1.2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.price-block {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
}

.price-old {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.discount-badge {
  background: var(--accent);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  background: transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.stock-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}

.hero-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
}

.hero-perks i {
  color: var(--accent);
  width: 20px;
}

/* ---------- FEATURES (3 cards, softer look) ---------- */
.features {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.feature-card {
  background: var(--light-bg);
  padding: 36px 28px;
  border-radius: 20px;
  border: 1px solid rgba(30,58,138,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.02);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.feature-card i {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-top: 18px;
  border-radius: 12px;
}

/* ---------- SPECS & CTA – CTA on left, specs on right ---------- */
.specs-cta {
  padding: var(--spacing-section) 0;
  background: var(--light-bg);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* swap order so CTA box appears first (left) */
.cta-box {
  order: -1;
}
.specs-list {
  order: 1;
}

.specs-list ul {
  margin-top: 28px;
}

.specs-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.specs-list i {
  width: 26px;
  color: var(--accent);
}

.cta-box {
  background: white;
  padding: 44px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  border: 1px solid rgba(30,58,138,0.06);
}

.order-form {
  margin-top: 28px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  outline: none;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkbox-group input {
  width: 20px;
  height: 20px;
}

.form-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: var(--spacing-section) 0;
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.review-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.03);
  border: 1px solid rgba(30,58,138,0.05);
  transition: box-shadow 0.2s;
}

.review-card:hover {
  box-shadow: 0 12px 34px rgba(0,0,0,0.06);
}

.review-stars {
  color: #f5b342;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.review-text {
  font-style: italic;
  margin-bottom: 22px;
  color: var(--text-dark);
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-author i {
  font-size: 2.6rem;
  color: var(--text-muted);
}

.review-author strong {
  display: block;
  font-weight: 600;
}

.review-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- FAQ inside specs ---------- */
.faq-inline-specs {
  margin-top: 30px;
}

.faq-item {
  background: white;
  padding: 4px 24px;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding-bottom: 20px;
  color: var(--text-muted);
}

/* ---------- FOOTER (deep blue) ---------- */
.site-footer {
  background: #0F172A;
  color: #cbd5e1;
  padding: 56px 0 28px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: white;
  margin-bottom: 18px;
}

.footer-col address {
  font-style: normal;
  line-height: 1.8;
  font-size: 0.98rem;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 28px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 18px;
}

.copyright {
  font-size: 0.9rem;
  color: #64748b;
}

/* ---------- LEGAL PAGES ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}
.legal-content h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.legal-content h2 { font-size: 1.9rem; margin: 1.5rem 0 1rem; }
.legal-content h3 { font-size: 1.5rem; margin: 1.2rem 0 0.8rem; }
.legal-content p { font-size: 1rem; line-height: 1.7; color: #1e293b; margin-bottom: 1.2rem; }
.legal-content ul, .legal-content ol { margin: 1rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  :root {
    --spacing-section: 56px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 28px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-light);
  }

  .nav-menu.active {
    display: flex;
  }

  .header-notice {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-grid,
  .features-grid,
  .specs-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* reset order for mobile so it flows naturally */
  .hero-image { order: 0; }
  .hero-content { order: 0; }
  .cta-box { order: 0; }
  .specs-list { order: 0; }

  .hero-perks {
    flex-direction: column;
    gap: 14px;
  }
}