/* ============================================
   Fonts
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ============================================
   Design tokens
   ============================================ */
:root {
  --navy: #1e3a5f;
  --navy-dark: #142a45;
  --navy-soft: #e8edf3;
  --coral: #ff6b4a;
  --coral-dark: #e85535;
  --coral-soft: #fff1ed;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --text: #0f1a2b;
  --text-muted: #5a6879;
  --text-light: #8792a3;
  --border: #e3e8ef;
  --border-strong: #c7d0dd;
}

/* ============================================
   Base
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1.1em; color: var(--text-muted); }
::selection { background: var(--coral-soft); color: var(--text); }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s;
  text-align: center;
}
.btn:hover {
  background: var(--coral-dark);
  box-shadow: 0 6px 20px rgba(255, 107, 74, 0.28);
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { display: block; width: 100%; }
.btn-navy { background: var(--navy); }
.btn-navy:hover { background: var(--navy-dark); box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25); }

/* ============================================
   Header
   ============================================ */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo .logo-dot { color: var(--coral); }
.main-nav ul {
  display: flex;
  gap: 32px;
  margin: 0; padding: 0;
  list-style: none;
}
.main-nav a {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--coral); }

/* ============================================
   Hero (bold, editorial)
   ============================================ */
.hero {
  padding: 90px 0 40px;
  background: var(--bg);
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.hero .lead {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: var(--text-muted);
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.hero-meta .dot {
  width: 3px; height: 3px; background: var(--border-strong); border-radius: 50%;
  align-self: center;
}
.hero-cover {
  max-width: 1000px;
  margin: 50px auto 0;
  padding: 0 24px;
}

/* ============================================
   Image placeholder + real images
   ============================================ */
.image-placeholder {
  background: var(--bg-alt);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 20px;
}
.image-placeholder .ph-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
}
.image-placeholder .ph-size {
  font-size: 0.7rem;
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.image-placeholder.tall { aspect-ratio: 3 / 4; }
.image-placeholder.wide { aspect-ratio: 21 / 9; }

.article-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}
.article-img.section { aspect-ratio: 16 / 9; }

/* ============================================
   Article body
   ============================================ */
.article {
  padding: 60px 0 40px;
}
.article-intro {
  padding-bottom: 40px;
}
.article-intro p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
}
.article-intro p:first-of-type::first-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.4rem;
  float: left;
  line-height: 1;
  padding: 4px 12px 0 0;
  color: var(--navy);
  font-weight: 700;
}

/* Section headings — big and cinematic */
.section-heading {
  text-align: center;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
  background: var(--bg-alt);
}
.section-heading .kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-heading h2 { margin: 0; }

/* Fact / myth items */
.fact-item, .myth-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}
.fact-item:last-child, .myth-item:last-child { border-bottom: none; }
.fact-icon, .myth-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.fact-icon {
  background: var(--navy);
  color: #fff;
}
.myth-icon {
  background: var(--coral-soft);
  color: var(--coral);
  border: 1.5px solid var(--coral);
}
.fact-icon svg, .myth-icon svg { width: 20px; height: 20px; }
.fact-item h3, .myth-item h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}
.fact-item h3 { color: var(--navy); }
.myth-item h3 { color: var(--coral-dark); }
.fact-item p, .myth-item p {
  color: var(--text);
  margin-bottom: 0.9em;
}
.fact-item p:last-child, .myth-item p:last-child { margin-bottom: 0; }

/* Pull-quote / callout */
.pull-quote {
  margin: 36px 0;
  padding: 28px 34px;
  border-left: 3px solid var(--coral);
  background: var(--bg-alt);
  border-radius: 4px 12px 12px 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 500;
}

.info-note {
  margin: 32px 0;
  padding: 22px 26px;
  background: var(--navy-soft);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.info-note strong { color: var(--navy); }
.info-note p { margin: 0; color: var(--text); font-size: 0.97rem; }

/* ============================================
   Conclusion
   ============================================ */
.conclusion {
  padding: 80px 0;
  background: var(--navy);
  color: #e2e8f0;
  text-align: center;
}
.conclusion .container { max-width: 720px; }
.conclusion h2 {
  color: #fff;
  margin-bottom: 22px;
}
.conclusion p {
  color: #c5cfdb;
  font-size: 1.05rem;
  margin-bottom: 1em;
}
.conclusion p:last-child { margin-bottom: 0; }

/* ============================================
   Guide sales block
   ============================================ */
.guide {
  padding: 100px 0;
  background: var(--bg-alt);
}
.guide .container { max-width: 1080px; }
.guide-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(15, 26, 43, 0.06);
}
.guide-image .image-placeholder {
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--border-strong);
  background: var(--navy-soft);
  color: var(--navy);
}
.guide-image .article-img { border-radius: 12px; }
.guide-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.guide h2 {
  color: var(--navy);
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
}
.guide-text {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 1.02rem;
  line-height: 1.65;
}
.guide-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-features li {
  color: var(--text);
  font-size: 0.95rem;
  padding-left: 28px;
  position: relative;
}
.guide-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 10px;
  border-left: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(-45deg);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}
.price-old {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1rem;
}
.price-new {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: #a8b3c4;
  padding: 44px 0 30px;
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid #2a3f5c;
  margin-bottom: 20px;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo .logo-dot { color: var(--coral); }
.footer-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  padding: 0; margin: 0;
  flex-wrap: wrap;
}
.footer-nav a { color: #a8b3c4; transition: color 0.15s; }
.footer-nav a:hover { color: var(--coral); }
.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: #7b8699;
}

/* ============================================
   Checkout
   ============================================ */
.checkout-page {
  padding: 70px 0 90px;
  min-height: 70vh;
  background: var(--bg-alt);
}
.checkout-page .page-title { text-align: center; margin-bottom: 10px; }
.checkout-page .page-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 44px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.checkout-form, .order-summary {
  background: #fff;
  border: 1px solid var(--border);
  padding: 34px;
  border-radius: 16px;
}
.checkout-form h2, .order-summary h2 {
  font-size: 1.15rem; margin-bottom: 22px;
  color: var(--navy);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.15s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--coral);
}
.summary-item {
  display: flex;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.summary-thumb {
  width: 68px; height: 88px;
  border-radius: 6px;
  background: var(--navy-soft);
  border: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
  padding: 6px;
}
.summary-info h3 {
  font-size: 1rem; margin-bottom: 4px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--navy);
}
.summary-info p { font-size: 0.87rem; color: var(--text-light); margin: 0; }
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.summary-row.total {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

/* ============================================
   Thank you
   ============================================ */
.thank-you-container {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--bg-alt);
}
.thank-you-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
  max-width: 520px;
  width: 100%;
}
.thank-you-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}
.thank-you-icon svg { width: 42px; height: 42px; color: var(--coral); }
.thank-you-card h1 { font-size: 2rem; margin-bottom: 12px; color: var(--navy); }
.thank-you-card p { color: var(--text-muted); }
.order-number {
  display: inline-block;
  background: var(--navy-soft);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.87rem;
  color: var(--navy);
  margin: 14px 0 28px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
}
.order-number strong { color: var(--navy-dark); }

/* ============================================
   Info pages
   ============================================ */
.info-page {
  padding: 70px 0 90px;
  min-height: 70vh;
  background: var(--bg-alt);
}
.info-page .page-header {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.info-page .page-header h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--navy);
}
.info-page .page-header .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}
.info-content {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 50px 55px;
  font-size: 1rem;
  line-height: 1.8;
}
.info-content h2 {
  font-size: 1.3rem;
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--navy);
}
.info-content h2:first-child { margin-top: 0; }
.info-content p { color: var(--text); }
.info-content ul {
  padding-left: 22px;
  margin: 0 0 1.2em;
  color: var(--text);
}
.info-content ul li { margin-bottom: 8px; }
.info-content .updated {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}
.info-content a { color: var(--coral); text-decoration: underline; text-underline-offset: 2px; }
.info-content a:hover { color: var(--coral-dark); }

/* Contacts */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 32px;
}
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 24px;
}
.contact-card .label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.contact-card .value {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
  font-family: 'Space Grotesk', sans-serif;
}
.contact-card .value a { color: var(--navy); }
.contact-card .value a:hover { color: var(--coral); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 860px) {
  .hero { padding: 60px 0 30px; }
  .guide { padding: 60px 0; }
  .guide-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .checkout-layout { grid-template-columns: 1fr; max-width: 560px; }
  .info-content { padding: 34px 24px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .fact-item, .myth-item { gap: 18px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .article { padding: 40px 0 30px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .main-nav ul { gap: 20px; }
  .thank-you-card { padding: 44px 24px; }
  .pull-quote { padding: 22px 24px; font-size: 1.1rem; }
  .article-intro p:first-of-type::first-letter { font-size: 2.6rem; }
}
