
:root {
  --gold: #C9A84C;
  --gold-light: #e8c96d;
  --gold-dark: #8B6914;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --dark-4: #2d2d2d;
  --mid: #444444;
  --light-mid: #888888;
  --light: #cccccc;
  --lighter: #e8e8e8;
  --white: #ffffff;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 30px rgba(0,0,0,0.3);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.2);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================
   UTILITIES
   ============================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px!important;
}

.gold {color: #3871cf;}
.gold-text {color: #3871d0;}
.light { color: var(--white); }

.section {
  padding: 96px 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ddd;
  border: 1px solid rgba(201,168,76,0.3);
  color: #000;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.section-tag.light {
  color: #000;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--light-mid);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================
   BUTTONS
   ============================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #000000, #4285F4);
  /* background: linear-gradient(135deg, var(--gold), var(--gold-dark)); */
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}

.btn-primary.btn-large {
  font-size: 1.1rem;
  padding: 18px 40px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: green;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #000000, #4285F4);
  /* background: transparent; */
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  /* border: 2px solid #3974d5; */
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* ============================
   STICKY NAV
   ============================ */

.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-cult { color: var(--white); }
.logo-aesthetics { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, #000000, #4285F4);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* ============================
   HERO SECTION
   ============================ */

.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #ddd;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #aaaaaa;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -8px;
}

.trust-avatar:first-child { margin-left: 0; }

.hero-trust p {
  color: var(--light-mid);
  font-size: 0.9rem;
}

.hero-trust strong { color: var(--white); }

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-flow-card {
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.flow-step {
  text-align: center;
  flex: 1;
}

.flow-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.4rem;
  color: var(--light-mid);
}

.flow-step.active .flow-icon,
.gold-icon {
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold) !important;
}

.flow-label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.flow-sub {
  font-size: 0.75rem;
  color: var(--light-mid);
  line-height: 1.4;
}

.flow-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-stats-row {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--light-mid);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-promise {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 16px 24px;
}

.hero-promise i {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-promise p {
  font-size: 0.9rem;
  color: var(--lighter);
  line-height: 1.5;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--light-mid);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ============================
   VIDEO SECTION
   ============================ */

.video-section {
  background: var(--dark-2);
}

.video-section .container {
  text-align: center;
}

.video-section .section-sub {
  margin: 0 auto 48px;
}

.video-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-checklist {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-item div {
  font-size: 0.95rem;
  color: var(--lighter);
  line-height: 1.6;
}

.check-item strong {
  color: var(--white);
}

.video-cta-row {
  text-align: center;
  margin-top: 48px;
}

/* ============================
   LEAD FORM SECTION
   ============================ */

.form-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1308 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.form-benefits {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.benefit-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.25);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.benefit-item strong {
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
  color: var(--white);
}

.benefit-item p {
  font-size: 0.875rem;
  color: var(--light-mid);
}

/* Form Card */
.form-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.required { color: var(--gold); }
.optional { color: var(--light-mid); font-weight: 400; }

.form-group input,
.form-group select {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  outline: none;
  appearance: none;
}

.form-group input::placeholder {
  color: var(--mid);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--dark-3);
  color: var(--white);
}

.file-upload {
  background: var(--dark-3);
  border: 1px dashed rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  color: var(--light-mid);
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.file-upload:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.file-upload i { font-size: 1.1rem; }

.btn-form-submit {
  width: 100%;
  /* background: linear-gradient(135deg, var(--gold), var(--gold-dark)); */
  color: #fff;
  background: linear-gradient(135deg, #000000, #4285F4);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 8px;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-gold);
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}

.form-micro-trust {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--light-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-micro-trust i {
  color: #fff;
  font-size: 0.85rem;
}

/* ============================
   CASE STUDY SECTION
   ============================ */

.case-section {
  background: #fff;
}

.case-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.case-images {
  position: relative;
}

.case-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.case-details {
  padding: 15px;
}

.case-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.case-badge {
  display: inline-block;
  background: #ddd;
  border: 1px solid #000;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.case-meta {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.case-meta strong { color: #fff; }

.grafts-used {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--light-mid);
  font-size: 0.9rem;
}

.grafts-used i { color: #fff; }
.grafts-used strong { color: var(--white); }

.approach-title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--lighter);
  line-height: 1.5;
}

.approach-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ddd;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.case-result {
  margin-top: 24px;
  padding: 10px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
}

.result-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.case-result p {
  color: var(--lighter);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}

/* ============================
   DOCTOR SECTION
   ============================ */

.doctor-section {
  background: var(--dark-2);
  overflow: hidden;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.doctor-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doctor-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.doctor-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 12px 18px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.doctor-quote {
  position: relative;
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 28px 0;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 8px;
  opacity: 0.6;
}

.doctor-quote p {
  color: var(--lighter);
  font-size: 1.05rem;
  line-height: 1.7;
}

.doctor-quote strong { color: var(--white); }

.doctor-name-row {
  margin-bottom: 28px;
}

.doctor-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.doctor-title {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 4px;
}

.doctor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.doc-stat {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.doc-stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.doc-stat span {
  font-size: 0.75rem;
  color: var(--light-mid);
}

.doctor-philosophy {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
}

.doctor-philosophy h4 {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.doctor-philosophy p {
  color: var(--lighter);
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
}

.doctor-diff {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 20px;
}

.diff-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.doctor-diff p {
  color: var(--lighter);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================
   TESTIMONIAL VIDEO SECTION
   ============================ */

.testimonial-section {
  background: #fff;
}

.testimonial-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.testimonial-video-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.testimonial-video-card:hover {
  border-color: rgba(201,168,76,0.3);
}

.video-hook {
  background: var(--dark-3);
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.video-placeholder {
  position: relative;
  /*padding-bottom: 56.25%;*/
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-placeholder.secondary {
  background: linear-gradient(135deg, #1a1208, #2a2010);
}

.video-placeholder:hover .play-btn-large {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.9);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding-left: 4px;
}

.video-patient-info {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10,10,10,0.85);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--white);
}

.video-patient-info strong { color: var(--gold); }

.video-excerpt {
  padding: 20px;
  font-size: 0.875rem;
  color: var(--light-mid);
  line-height: 1.7;
}

/* ============================
   REVIEWS SECTION
   ============================ */

.reviews-section {
  background: var(--dark-2);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: rgba(201,168,76,0.25);
}

.review-card.featured {
  background: linear-gradient(135deg, #1a1208, #111111);
  border-color: rgba(201,168,76,0.25);
}

.review-tag {
  position: absolute;
  top: -12px;
  left: 20px;
  /* background: linear-gradient(135deg, var(--gold), var(--gold-dark)); */
  color: #fff;
  font-size: 0.7rem;
  background: linear-gradient(135deg, #000000, #4285F4);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
}

.review-stars {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-story {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.review-story p {
  color: var(--lighter);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.review-footer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
}

.review-meta {
  font-size: 0.75rem;
  color: var(--light-mid);
  margin-top: 2px;
}

.google-badge {
  margin-left: auto;
  color: #fff;
  font-size: 1.1rem;
}

/* ============================
   FINAL CTA
   ============================ */

.final-cta-section {
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgb(54 108 199);
  border: 1px solid rgb(13 26 48 / 38%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 18px;
  animation: urgencyPulse 3s infinite;
}

@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,100,50,0); }
  50% { box-shadow: 0 0 0 6px rgba(255,100,50,0.1); }
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #000;
  margin-bottom: 20px;
}

.final-sub {
  color: var(--light-mid);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.final-trust-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.final-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--light-mid);
  font-size: 0.9rem;
}

/* ============================
   FOOTER
   ============================ */

.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--light-mid);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--light-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--light-mid);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: var(--gold);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--light-mid);
  font-size: 0.875rem;
}

.contact-item a {
  color: var(--light-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--light-mid);
  font-size: 0.8rem;
}

.disclaimer {
  font-style: italic;
}

/* ============================
   FLOATING WHATSAPP
   ============================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  animation: whatsappBounce 4s infinite;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
}

@keyframes whatsappBounce {
  0%, 90%, 100% { transform: scale(1); }
  93% { transform: scale(1.08); }
  97% { transform: scale(0.96); }
}

/* ============================
   SUCCESS MODAL
   ============================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-box {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.modal-box p {
  color: var(--light-mid);
  font-size: 1rem;
  line-height: 1.7;
}

.modal-box strong { color: var(--white); }

/* ============================
   RESPONSIVE — TABLET
   ============================ */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-flow-card {
    flex-direction: row;
    justify-content: center;
  }

  .video-wrapper {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-main-image {
    min-height: 300px;
    max-height: 500px;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ============================
   RESPONSIVE — MOBILE
   ============================ */

@media (max-width: 640px) {
    .container
    {
        padding: 0 15px!important;
    }
    .nav-cta
    {
        font-size:9px!important;
    }
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    justify-content: center;
    text-align: center;
  }

  .hero-flow-card {
    flex-direction: column;
    gap: 16px;
    padding: 2px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    font-size: 1rem;
  }

  .hero-stats-row {
    padding: 20px;
    gap: 0;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .video-section .container {
    text-align: left;
  }

  .video-cta-row {
    text-align: center;
  }

  .doctor-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .doc-stat strong {
    font-size: 1.1rem;
  }

  .testimonial-video-grid {
    grid-template-columns: 1fr;
  }

  .final-ctas {
    flex-direction: column;
    align-items: center;
  }

  .final-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section-headline {
    font-size: 1.75rem;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .form-card {
    padding: 28px 20px;
  }

  .case-details {
    padding: 28px 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}

/* FAQ Section Styling */
.faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.faq-accordion {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #d4af37; /* Your gold color */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #f9f9f9;
}

.faq-answer p {
  padding: 0 20px 20px 20px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Icon rotation when active */
.faq-item.active .faq-question {
  color: #d4af37;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
}

.faq-item.active i {
  transform: rotate(45deg);
  color: #d4af37;
}

.text-center { text-align: center; }