@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dark: #8B6914;
  --deep: #0B0B18;
  --deep2: #13132B;
  --deep3: #1C1C3A;
  --text: #EDE8D8;
  --muted: #9E9AA8;
  --accent: #7B5EA7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--deep);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── STARFIELD ── */
#stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: twinkle var(--d, 1s) ease-in-out infinite;
  opacity: 0;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }

  50% {
    opacity: var(--o, 0.6);
    transform: scale(1.3);
  }
}

/* ── STICKY HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 40px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(123, 94, 167, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.15));
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 100px;
  padding: 6px 20px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.9rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeDown 0.9s 0.1s ease both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light) 50%, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  color: var(--muted);
  max-width: 580px;
  margin-top: 30px;
  margin-bottom: 36px;
  animation: fadeDown 1s 0.2s ease both;
  font-weight: 300;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 700;
}

/* Hero Image Container - Vertical Capsule */
.hero-image-container {
  position: relative;
  width: clamp(140px, 30vw, 500px);
  height: clamp(280px, 45vw, 800px);
  margin: 24px auto 32px;
  animation: fadeDown 1s 0.25s ease both;
}

.hero-image-frame {
  position: absolute;
  inset: 0;
  border-radius: 250px;
  background: radial-gradient(ellipse 60% 80% at 50% 35%, rgba(201, 168, 76, 0.35), rgba(139, 105, 20, 0.15));
  border: 3px solid rgba(201, 168, 76, 0.6);
  box-shadow:
    0 0 50px rgba(201, 168, 76, 0.45),
    0 0 25px rgba(201, 168, 76, 0.3),
    inset 0 0 30px rgba(201, 168, 76, 0.15),
    0 15px 50px rgba(0, 0, 0, 0.7);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  object-fit: cover;
  object-position: center 30%;
}

.hero-mockup {
  position: absolute;
  width: 125%;
  border-radius: 40px;
  left: calc(50%);
  transform: translate(-50%);
  bottom: -10%;
}

.hero-image-star {
  position: absolute;
  font-size: clamp(18px, 5vw, 28px);
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.9);
}

.hero-image-star-1 {
  top: -8px;
  left: 8px;
  animation: fadeDown 1s 0.35s ease both;
}

.hero-image-star-2 {
  top: 8px;
  right: -8px;
  animation: fadeDown 1s 0.4s ease both;
}

.hero-image-star-3 {
  bottom: 8px;
  right: -8px;
  animation: fadeDown 1s 0.45s ease both;
}

.hero-image-star-4 {
  bottom: -8px;
  left: 8px;
  animation: fadeDown 1s 0.5s ease both;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0B0B18;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 3vw, 1rem);
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.35), 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeDown 1s 0.3s ease both, pulse 2.5s 1.5s ease-in-out infinite;
  width: 100%;
  max-width: 380px;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.5), 0 8px 30px rgba(0, 0, 0, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.35), 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  50% {
    box-shadow: 0 0 55px rgba(201, 168, 76, 0.6), 0 4px 20px rgba(0, 0, 0, 0.5);
  }
}

.trust-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
  animation: fadeDown 1s 0.4s ease both;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-row svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* ── DIVIDER ── */
.divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  margin: 8px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.divider-icon {
  margin: 0 16px;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  text-align: center;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 5vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  color: var(--muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* ── WHAT'S INSIDE CARDS ── */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.card {
  background: linear-gradient(135deg, rgba(28, 28, 58, 0.8), rgba(19, 19, 43, 0.6));
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 24px 20px;
  transition: border-color 0.3s, transform 0.3s;
  width: 100%;
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

@media (min-width: 500px) {
  .card {
    width: calc(50% - 8px);
  }
}

.card-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: linear-gradient(180deg, transparent, rgba(123, 94, 167, 0.06), transparent);
}

.testi-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.testi-card {
  background: rgba(28, 28, 58, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 20px;
}

.testi-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.6;
  font-weight: 300;
}

.testi-author {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ── FORM SECTION ── */
.form-section {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.form-box {
  background: linear-gradient(135deg, rgba(28, 28, 58, 0.9), rgba(19, 19, 43, 0.8));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  padding: clamp(24px, 6vw, 48px) clamp(20px, 5vw, 40px);
  margin-top: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(201, 168, 76, 0.1);
}

.form-row {
  margin-bottom: 18px;
}

label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

input:focus,
select:focus {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(255, 255, 255, 0.07);
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.phone-input-group:focus-within {
  border-color: rgba(201, 168, 76, 0.6);
  background: rgba(255, 255, 255, 0.07);
}

.phone-input-group select {
  width: auto;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 0;
  padding: 14px 32px 14px 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23EDE8D8' d='M0 0l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.phone-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 14px 16px;
}

.phone-input-group select:focus,
.phone-input-group input:focus {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

select option {
  background: var(--deep2);
  color: var(--text);
}

.dob-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.form-submit {
  margin-top: 24px;
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.privacy-note svg {
  width: 12px;
  height: 12px;
  fill: var(--muted);
  flex-shrink: 0;
}

/* ── WHAT'S IN THE REPORT – numbered list ── */
.report-items-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.ri-item {
  display: flex;
  align-items: flex-start;
  width: calc(50% - 7px);
  gap: 14px;
  background: linear-gradient(135deg, rgba(28, 28, 58, 0.75), rgba(19, 19, 43, 0.55));
  border: 1px solid rgba(201, 168, 76, 0.13);
  border-radius: 10px;
  padding: 16px;
  transition: border-color 0.3s, transform 0.25s;
}

.ri-item:hover {
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-2px);
}

.ri-num {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 32px;
}

.ri-body h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.ri-body p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── PERFECT FOR ── */
.perfect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.pf-card {
  background: linear-gradient(135deg, rgba(28, 28, 58, 0.7), rgba(19, 19, 43, 0.5));
  border: 1px solid rgba(201, 168, 76, 0.13);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s, transform 0.25s;
}

.pf-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-2px);
}

.pf-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.pf-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.pf-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}

/* ── ACHIEVE ── */
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.ach-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(28, 28, 58, 0.7), rgba(19, 19, 43, 0.5));
  border: 1px solid rgba(201, 168, 76, 0.13);
  border-radius: 12px;
  padding: 20px;
  transition: border-color 0.3s, transform 0.25s;
}

.ach-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  transform: translateY(-2px);
}

.ach-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.ach-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 5px;
}

.ach-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 300;
}

/* ── TESTIMONIALS GRID ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.tg-card {
  background: rgba(28, 28, 58, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 10px;
  padding: 18px;
  transition: border-color 0.3s;
}

.tg-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.tg-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-bottom: 10px;
}

.tg-stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.tg-text {
  font-size: 0.93rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 12px;
  font-weight: 300;
}

.tg-name {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 700;
}

.show-more-btn {
  display: block;
  margin: 24px auto 0;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.show-more-btn:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.6);
}

/* ── ABOUT EXPERT ── */
.expert-box {
  background: linear-gradient(135deg, rgba(28, 28, 58, 0.85), rgba(19, 19, 43, 0.7));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: clamp(24px, 5vw, 44px);
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(201, 168, 76, 0.08);
}

@media(max-width:560px) {
  .expert-box {
    text-align: center;
  }
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media(max-width:560px) {
  .expert-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.expert-avatar {
  width: clamp(120px, 18vw, 180px);
  height: clamp(120px, 18vw, 180px);
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(circle at 50% 30%, rgba(123, 94, 167, 0.5), rgba(11, 11, 24, 0.9));
  border: 2px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.expert-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: 0% 5%;
}

.expert-title-area h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.expert-role {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.expert-bio-line {
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.5;
  text-align: left;
}

@media(max-width:560px) {
  .expert-bio-line {
    text-align: center;
  }
}

.expert-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  margin-top: 8px;
}

.expert-bio-item {
  padding: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
  text-align: left;
}

.expert-bio-item:nth-child(odd) {
  border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.expert-bio-item:nth-child(-n+2) {
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.expert-bio-item strong {
  color: var(--gold-light);
  font-weight: 700;
}

@media (max-width: 768px) {
  .expert-bio-grid {
    grid-template-columns: 1fr;
  }

  .expert-bio-item {
    padding: 16px 8px;
  }

  .expert-bio-item:nth-child(odd) {
    border-right: none;
  }

  .expert-bio-item:nth-child(-n+2) {
    border-bottom: none;
  }

  .expert-bio-item:not(:last-child) {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }
}

/* ── WHY SPECIAL box ── */
.special-box {
  background: linear-gradient(135deg, rgba(28, 28, 58, 0.85), rgba(19, 19, 43, 0.7));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: clamp(24px, 5vw, 44px);
  margin-top: 32px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
  flex-direction: row;
}

.special-book {
  width: 35%;
  background: linear-gradient(160deg, var(--deep3), var(--deep2));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 14px 10px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(201, 168, 76, 0.1);
}

.special-book-pointers {
  width: 65%;
}

.special-book img {
  width: 100%;
}

.special-book-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.4;
}

@media(max-width:480px) {
  .special-box {
    flex-direction: column;
  }
}

.special-book-img {
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.special-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.special-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.special-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  flex-shrink: 0;
}

.special-cta-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 16px;
}

/* ── COUNTDOWN BANNER ── */
.countdown-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
  background: linear-gradient(90deg, var(--gold-dark), #A07820, var(--gold-dark));
  text-align: center;
  padding: 12px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: #0B0B18;
  font-weight: 700;

}

.countdown-banner #timer {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 28px;
}

.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: rgba(28, 28, 58, 0.5);
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(28, 28, 58, 0.8);
}

.faq-arrow {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: rgba(19, 19, 43, 0.6);
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0 20px;
  font-weight: 300;
  line-height: 1.65;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 16px 20px;
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 80px 20px;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(123, 94, 167, 0.15) 0%, transparent 70%);
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 32px 20px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.8;
}

footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SCROLL PROGRESS ── */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 200;
  width: 0%;
  transition: width 0.1s;
}

/* ── MOBILE TWEAKS ── */
@media (max-width: 480px) {
  section {
    padding: 48px 16px;
  }

  .form-box {
    padding: 24px 16px;
  }

  .dob-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .btn-primary {
    font-size: 0.82rem;
    padding: 15px 20px;
  }

  .ri-item {
    width: 100%;
  }

  .expert-avatar {
    width: 240px;
    height: 240px;
  }

  .expert-avatar img {
    object-position: 0% 5%;
    object-fit: cover;
  }

  .hero-image-container {
    width: 70%;
    height: clamp(280px, 100vw, 900px);
  }

  .special-book {
    width: 100%;
  }

  .special-book-title {
    font-size: 1rem;
  }

  .special-book-pointers {
    width: 100%;
  }

  .special-book-title {
    font-size: 1.2rem;
  }
}

/* ── LEGAL/POLICY PAGES ── */
.legal-container {
  max-width: 800px;
  margin: 40px auto 80px;
  padding: clamp(24px, 5vw, 48px) clamp(20px, 5vw, 40px);
  background: linear-gradient(135deg, rgba(28, 28, 58, 0.9), rgba(19, 19, 43, 0.8));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.legal-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold-light);
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding-bottom: 6px;
}

.legal-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 300;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.back-btn {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.back-btn:hover {
  color: var(--gold-light);
}

/* ══ CAROUSEL ══ */
.carousel-wrapper {
  position: relative;
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(19, 19, 43, 0.9);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #000;
}

.carousel-btn-left {
  left: -10px;
}

.carousel-btn-right {
  right: -10px;
}

@media(min-width: 768px) {
  .carousel-btn-left {
    left: -20px;
  }

  .carousel-btn-right {
    right: -20px;
  }
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  /* scroll-snap-type: x mandatory; <- removed for linear scroll */
  gap: 20px;
  padding: 20px 10px;
  scrollbar-width: none;
  /* Firefox */
}

.carousel-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.carousel-slide {
  flex: 0 0 85%;
  /* scroll-snap-align: center; <- removed for linear scroll */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  background: var(--surface);
}

@media(min-width: 768px) {
  .carousel-slide {
    flex: 0 0 45%;
  }
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}