/* ===== FOOTWAVE GR — style.css ===== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #8B6914;
  --terracotta:  #C05E3C;
  --terracotta-light: #E8835F;
  --cream:       #FAF5EA;
  --warm-white:  #FFFDF7;
  --olive:       #7A8C4E;
  --olive-dark:  #4E5C2A;
  --sky:         #5B8FA8;
  --navy:        #1A2744;
  --navy-light:  #2C3E6E;
  --text:        #2D2416;
  --text-muted:  #6B5C3E;
  --border:      #E2D5B4;
  --shadow:      rgba(26,39,68,0.12);
  --radius:      12px;
  --radius-lg:   20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: var(--navy);
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  font-size: 11.5px;
  text-align: center;
  padding: 8px 20px;
  line-height: 1.5;
}
.disclaimer-bar a { color: var(--gold-light); }

/* ===== HEADER / NAV ===== */
header {
  background: var(--warm-white);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--gold); }
.logo-icon { font-size: 22px; }

nav { display: flex; gap: 28px; align-items: center; }
nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--terracotta); text-decoration: none; }
.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terracotta-light) !important; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1A2744 0%, #2C3E6E 50%, #1A2744 100%);
  color: #fff;
  padding: 70px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 44px;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.2;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  line-height: 1.6;
}
.price-badge {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.price-new {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--gold-light);
}
.price-old {
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}
.discount-tag {
  background: var(--terracotta);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.hero-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.5);
  text-decoration: none;
}
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  max-width: 420px;
  width: 100%;
}
.hero-img-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-item .icon { font-size: 20px; }

/* ===== SECTION COMMONS ===== */
.section { padding: 72px 24px; }
.section-alt { background: var(--cream); }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.section-title {
  font-size: 34px;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 48px;
}

/* ===== DOCTOR QUOTE ===== */
.doctor-quote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 24px;
}
.doctor-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}
.doctor-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.doctor-photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a4d7a, #5b6fa0);
  border: 4px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.doctor-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  font-style: italic;
}
.doctor-quote-text::before { content: '\201C'; color: var(--gold); }
.doctor-quote-text::after  { content: '\201D'; color: var(--gold); }
.doctor-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-light);
}
.doctor-title { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--shadow);
}
.benefit-icon { font-size: 44px; margin-bottom: 16px; }
.benefit-card h3 { font-size: 19px; margin-bottom: 10px; color: var(--navy); }
.benefit-card p { font-size: 15px; color: var(--text-muted); }

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.how-steps { display: flex; flex-direction: column; gap: 28px; }
.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
}
.step-content h3 { font-size: 18px; margin-bottom: 6px; }
.step-content p { font-size: 15px; color: var(--text-muted); }
.how-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.how-images img {
  border-radius: var(--radius);
  object-fit: cover;
  height: 200px;
  width: 100%;
}
.how-images img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

/* ===== STORY ===== */
.story-section {
  background: var(--cream);
}
.story-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
}
.story-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 16px var(--shadow);
}
.story-avatar-gen {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c97a, #c9a84c);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  box-shadow: 0 4px 16px var(--shadow);
}
.story-quote {
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 28px;
  box-shadow: 0 2px 16px var(--shadow);
}
.story-quote p { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 14px; }
.story-author { font-weight: 700; color: var(--navy); font-size: 15px; }
.story-detail { font-size: 13px; color: var(--text-muted); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 12px var(--shadow);
}
.review-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--text); margin-bottom: 16px; line-height: 1.6; }
.review-author { font-weight: 700; font-size: 14px; color: var(--navy); }
.review-city { font-size: 13px; color: var(--text-muted); }
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--olive);
  margin-top: 8px;
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--terracotta); }
.faq-icon {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== ORDER FORM ===== */
.order-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 24px;
}
.order-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.order-inner .section-title { color: #fff; }
.order-price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
}
.order-price-new {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold-light);
}
.order-price-old {
  font-size: 24px;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}
.order-badge {
  background: var(--terracotta);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.order-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 10px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-field input, .form-field select {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  font-family: 'Source Sans 3', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-field input::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus, .form-field select:focus {
  border-color: var(--gold);
}
.form-field select option { background: var(--navy); color: #fff; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Source Sans 3', sans-serif;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
}
.order-guarantee {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.order-guarantee span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== BLOG SECTION ===== */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: grid;
  grid-template-columns: 320px 1fr;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow);
}
.blog-card-large {
  grid-template-columns: 380px 1fr;
}
.blog-card .img-wrap {
  width: 100%;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}
.blog-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card-body p { flex: 1; margin-bottom: 16px; }
.blog-card-large .blog-card-body { padding: 36px; }
.blog-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.35;
}
.blog-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: none;
}
.blog-read-more:hover { gap: 10px; text-decoration: none; }
.blog-cta-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--terracotta);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 52px 24px 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; font-size: 22px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; }
footer h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
footer ul li a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; }
footer ul li a:hover { color: var(--gold-light); text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold-light); text-decoration: none; }

/* ===== PAGES (legal) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 52px 24px 40px;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: 36px; }
.page-hero p { color: rgba(255,255,255,0.75); margin-top: 10px; }
.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px;
}
.page-content h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 12px;
}
.page-content p, .page-content li { font-size: 15px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.7; }
.page-content ul { padding-left: 20px; }
.page-content strong { color: var(--text); }
.page-content a { color: var(--terracotta); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 36px;
}

/* ===== ARTICLE (blog) ===== */
.article-hero {
  background: var(--navy);
  padding: 52px 24px 40px;
  text-align: center;
}
.article-hero h1 { color: #fff; font-size: 36px; max-width: 800px; margin: 14px auto 0; }
.article-hero .blog-tag { font-size: 12px; }
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 24px 64px;
}
.article-body h2 { font-size: 26px; color: var(--navy); margin: 36px 0 14px; }
.article-body h3 { font-size: 20px; color: var(--navy); margin: 28px 0 10px; }
.article-body p { font-size: 16px; color: var(--text); margin-bottom: 18px; line-height: 1.75; }
.article-body ul { padding-left: 22px; margin-bottom: 18px; }
.article-body li { font-size: 16px; color: var(--text); margin-bottom: 8px; line-height: 1.65; }
.article-body img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
  box-shadow: 0 4px 20px var(--shadow);
}
.info-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.info-box strong { color: var(--text); }
.disclaimer-article {
  background: #f5f0e6;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 32px 0 0;
  line-height: 1.6;
}
.article-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin: 36px 0;
}
.article-cta h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 20px; }
.article-cta a {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.article-cta a:hover { background: var(--gold-light); text-decoration: none; transform: translateY(-2px); }
.article-faq { margin: 40px 0; }
.article-faq h2 { margin-bottom: 24px; }

/* ===== THANK-YOU ===== */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}
.thankyou-box {
  max-width: 540px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  box-shadow: 0 8px 40px var(--shadow);
}
.thankyou-icon { font-size: 64px; margin-bottom: 16px; }
.thankyou-box h1 { font-size: 30px; margin-bottom: 12px; }
.thankyou-box p { color: var(--text-muted); font-size: 16px; margin-bottom: 10px; }
.thankyou-box .price-highlight { color: var(--gold-dark); font-weight: 700; font-size: 18px; }
.thankyou-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--terracotta);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.thankyou-btn:hover { background: var(--terracotta-light); transform: translateY(-2px); text-decoration: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 34px; }
  .price-badge { justify-content: center; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { max-width: 340px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-images { grid-template-columns: 1fr 1fr; }
  .how-images img:first-child { grid-column: auto; height: 200px; }
  .blog-card { grid-template-columns: 260px 1fr; }
  .blog-card-large { grid-template-columns: 260px 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .doctor-inner { grid-template-columns: 1fr; text-align: center; }
  .doctor-photo, .doctor-photo-placeholder { margin: 0 auto; }
  .story-inner { grid-template-columns: 1fr; text-align: center; }
  .story-avatar, .story-avatar-gen { margin: 0 auto; }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { flex-direction: column; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card .img-wrap { min-height: 200px; height: 200px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 26px; }
  nav { display: none; }
  .order-form { padding: 24px 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== ADVERTORIAL LABEL ===== */
.advertorial-label {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 5px 16px;
  font-weight: 700;
}

/* ===== AWARENESS BLOCK ===== */
.awareness-section { padding: 80px 24px; background: var(--navy); }
.awareness-inner { max-width: 1100px; margin: 0 auto; }
.awareness-eyebrow {
  display: inline-block;
  background: rgba(201,168,76,0.2); color: var(--gold-light);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 16px;
}
.awareness-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: #fff;
  text-align: center; margin-bottom: 12px;
}
.awareness-sub { text-align: center; color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 560px; margin: 0 auto 48px; }
.awareness-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-bottom: 48px;
}
.aw-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 28px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.aw-icon { font-size: 26px; }
.aw-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1.1; }
.aw-label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; line-height: 1.4; }
.aw-text { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin: 0; }
.aw-cta-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 28px 36px;
}
.aw-cta-text { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85); margin: 0; max-width: 500px; }

/* ===== FW QTY PILLS ===== */
.fw-qty-row {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 24px;
}
.fw-qty-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.fw-qty-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.fw-pill {
  flex: 1; cursor: pointer;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 10px; min-width: 100px;
}
.fw-pill input { display: none; }
.fw-pill span {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 12px; gap: 3px; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
}
.fw-pill span strong { font-size: 1.2rem; font-weight: 800; color: #fff; display: block; }
.fw-pill span em { font-style: normal; font-size: 0.7rem; color: var(--gold-light); }
.fw-pill span mark { display: block; background: var(--gold); color: var(--navy); font-size: 0.65rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.fw-pill.active { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.fw-pill-best { border-color: rgba(201,168,76,0.4); }

/* INFO BOX in articles */
.info-box { background: rgba(91,143,168,0.1); border-left: 3px solid var(--sky); border-radius: 0 10px 10px 0; padding: 14px 18px; margin: 20px 0; font-size: 0.92rem; }

/* NAV extended — flex-shrink */
header .logo { flex-shrink: 0; white-space: nowrap; }
header .nav-cta { flex-shrink: 0; white-space: nowrap; }
header nav { gap: 16px; }
header nav a { font-size: 0.84rem; }

@media (max-width: 900px) { .awareness-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) {
  .awareness-grid { grid-template-columns: 1fr; gap: 14px; }
  .awareness-section { padding: 60px 16px; }
  .aw-cta-row { flex-direction: column; text-align: center; padding: 24px 20px; }
  .fw-qty-pills { flex-direction: column; }
}
