/* ═══════════════════════════════════════════════════════════════
   TAURUS ADS — SERMORELIN LANDING PAGE (index.html)
   Extended sections below the hero
═══════════════════════════════════════════════════════════════ */

/* ── Tokens (inherit from style.css :root) ─────────────────── */
:root {
  --orange:       #f1471d;
  --orange-dark:  #d64924;
  --bg-dark:      #07090b;
  --bg-card:      rgba(60, 61, 54, 0.24);
  --border-light: rgba(255, 255, 255, 0.18);
  --cream:        #ece1cc;
  --cream-card:   #f6efe1;
  --text-light:   #fff9ef;
  --text-muted:   #c6baa7;
  --text-dark:    #201d17;
  --font-display: "Bebas Neue", Arial, Helvetica, sans-serif;
  --font-body:    "Inter", Arial, Helvetica, sans-serif;
  --max-w:        1090px;
  --page-px:      clamp(1rem, 4vw, 2.5rem);
}

/* ── Header override for full-width sticky ─────────────────── */
.top-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border-light);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT / CREAM SECTION
══════════════════════════════════════════════════════════════ */
.serm-about {
  width: 100%;
  padding: 0;
}

.serm-about-inner {
  background: var(--cream);
  padding: 0 0 2rem;
}

.serm-about-hero {
  position: relative;
  overflow: hidden;
}

.serm-about-hero img {
  width: 100%;
  height: clamp(300px, 42vw, 520px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.serm-about-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
}

.serm-kicker {
  margin: 0 0 0.4rem;
  color: #fff7eb;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.serm-about-title {
  margin: 0 0 0.75rem;
  color: #fff9ef;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.serm-btn {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  margin-top: clamp(1.5rem, 6vw, 4rem);
  transition: background 0.2s;
}

.serm-btn:hover { background: var(--orange-dark); color: #fff; }

.serm-content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-px);
}

.serm-summary {
  margin-top: -1.5rem;
  border-radius: 18px;
  background: var(--cream-card);
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.serm-mini-title {
  margin: 0 0 0.2rem;
  color: #6d6454;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}

.serm-heading {
  margin: 0 0 1.25rem;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1;
}

.serm-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.serm-summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.serm-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-bottom: 0.1rem;
}

.serm-summary-sub {
  margin: 0;
  color: #383124;
  font-size: 0.72rem;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0.02rem;
}

.serm-summary-main {
  margin: 0;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
}

.serm-treatment {
  margin-top: 1rem;
  border-radius: 16px;
  background: var(--cream-card);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.25rem;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.serm-treatment-image {
  background: #0e1318;
  border-radius: 12px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.serm-treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serm-treatment-content h3 {
  margin: 0 0 1rem;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1;
}

.serm-treatment-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.serm-treatment-content li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  color: #2a251d;
  font-size: 0.875rem;
  line-height: 1.4;
}

.serm-treatment-content li:last-child { margin-bottom: 0; }

.serm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 0.35rem;
  display: inline-block;
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS / STEPS
══════════════════════════════════════════════════════════════ */
.serm-steps {
  background: var(--bg-dark);
  padding: 4rem var(--page-px);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.serm-steps-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.serm-steps-kicker {
  margin: 0 0 0.2rem;
  color: #fff7eb;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.serm-steps-title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: #fff9ef;
}

.serm-steps-sub {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.serm-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
}

.serm-step-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border-light);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  position: relative;
}

.serm-step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.serm-step-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
  color: #fff9ef;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.serm-orange { color: var(--orange); }

.serm-step-card p {
  color: rgba(255,249,239,0.75);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.serm-badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 0.5px solid rgba(255,255,255,0.25);
  color: #d6c7ad;
  font-size: 0.7rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   PRESCRIBED BY DOCTORS
══════════════════════════════════════════════════════════════ */
.serm-doctors {
  background: #0a0c0e;
  padding: 4rem var(--page-px);
}

.serm-doctors-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.serm-doctors-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
  color: #f0e6d5;
}

.serm-doctors-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.serm-doctors-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.serm-doctors-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff9ef;
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
}

.serm-cta-btn {
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  transition: background 0.2s;
}

.serm-cta-btn:hover { background: var(--orange-dark); color: #fff; }

.serm-doctors-image {
  border-radius: 18px;
  overflow: hidden;
}

.serm-doctors-image img {
  width: 100%;
  height: clamp(300px, 40vw, 480px);
  object-fit: cover;
  border-radius: 18px;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════════ */
.serm-reviews {
  padding: 4rem var(--page-px) 0;
  background: var(--bg-dark);
}

.serm-reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.serm-reviews-title {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: #fff9ef;
}

.serm-rating {
  margin: 0 0 1.5rem;
  font-size: 0.82rem;
  color: #d5c7b2;
}

.serm-stars {
  color: var(--orange);
  letter-spacing: 0.06rem;
  margin-right: 0.25rem;
}

.serm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.serm-review-card {
  border: 0.5px solid var(--border-light);
  border-radius: 20px;
  background: var(--bg-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.serm-review-stars {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 0.06rem;
}

.serm-review-title {
  margin: 0 0 0.6rem;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
}

.serm-review-text {
  margin: 0;
  color: #fff9ef;
  font-size: 0.82rem;
  line-height: 1.5;
  flex: 1;
}

.serm-review-meta {
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06rem;
}

.serm-review-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 1rem;
  padding-bottom: 3rem;
}

.serm-review-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--border-light);
  background: var(--bg-card);
  color: #fff;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.serm-review-arrow:hover { background: rgba(241,71,29,0.25); }

/* ══════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════ */
.serm-questions {
  background: rgba(60, 61, 54, 0.18);
  padding: 4rem var(--page-px);
}

.serm-questions-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.serm-questions-title {
  margin: 0 0 2rem;
  color: #f0e6d5;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  text-align: center;
}

.serm-questions-accordion {
  max-width: 680px;
  margin: 0 auto;
}

.serm-questions-accordion .accordion-item {
  border: 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.14);
  background: transparent;
}

.serm-questions-accordion .accordion-button {
  background: transparent;
  color: #fff9ef;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 1.1rem 0;
  font-family: var(--font-body);
}

.serm-questions-accordion .accordion-button:not(.collapsed) {
  color: #fff9ef;
  background: transparent;
}

.serm-questions-accordion .accordion-button::after {
  filter: invert(1);
  opacity: 0.7;
}

.serm-questions-accordion .accordion-body {
  color: #c6baa7;
  font-size: 0.82rem;
  line-height: 1.6;
  padding: 0 0 1.1rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.serm-footer {
  border-top: 0.5px solid rgba(255,255,255,0.1);
  background: #0a0d0a;
  padding: 2rem var(--page-px) 1rem;
}

.serm-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .serm-summary-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .serm-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .serm-steps-grid   { grid-template-columns: repeat(2, 1fr); }
  .serm-doctors-inner { grid-template-columns: 1fr; gap: 2rem; }
  .serm-footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 767px)
══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .serm-about-hero img { height: 260px; }
  .serm-about-title    { font-size: 2.2rem; }
  .serm-summary-grid   { grid-template-columns: 1fr 1fr; gap: 0.85rem; }
  .serm-treatment      { grid-template-columns: 1fr; }
  .serm-treatment-image { min-height: 200px; }
  .serm-steps          { padding: 2.5rem 1rem; }
  .serm-steps-grid     { grid-template-columns: 1fr; }
  .serm-doctors        { padding: 2.5rem 1rem; }
  .serm-reviews        { padding: 2.5rem 1rem 0; }
  .serm-reviews-grid   { grid-template-columns: 1fr; }
  .serm-review-card    { min-height: auto; }
  .serm-questions      { padding: 2.5rem 1rem; }
  .serm-footer         { padding: 1.5rem 1rem 0.75rem; }
  .serm-footer-inner   { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 480px) {
  .serm-summary-grid { grid-template-columns: 1fr; }
}
