/* ============================================================
   ID HAARTRANSPLANTATIONEN — Main Stylesheet
   White / Gold Premium Theme — Mobile First
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Outfit:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --gold:       #A8833A;
  --gold-mid:   #C9A96E;
  --gold-light: #EFE3C8;
  --gold-pale:  #FAF6EF;
  --dark:       #1A1610;
  --text:       #2A2520;
  --text2:      #6B6057;
  --text3:      #A89F97;
  --border:     #E8DDD2;
  --white:      #ffffff;
  --cream:      #FDFAF6;
  --r:          4px;
  --nav-h:      70px;
  --transition: .22s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── Utility ── */
.sr-only { position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.gold-line { width: 40px; height: 1px; background: var(--gold-mid); margin-bottom: 18px; }
.sec-tag { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sec-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 500; color: var(--dark); line-height: 1.15; margin-bottom: 14px; }
.sec-sub { font-size: 14px; color: var(--text2); line-height: 1.75; font-weight: 300; max-width: 520px; margin-bottom: 48px; }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.nav-logo img { height: 34px; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.nav-phone svg { color: var(--gold); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--r);
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-gold:hover { background: #8A6A2A; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SLIDER / HERO ── */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
}

/* Slider (arka plan) */
.slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slider-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slider-bg .slide.active { opacity: 1; }
.slider-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.75) 45%,
    rgba(255,255,255,0.15) 100%
  );
  z-index: 1;
}

/* Hero içeriği */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: calc(100vh - var(--nav-h));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px 64px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold-mid); }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text2);
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 40px;
  backdrop-filter: blur(4px);
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-mid); flex-shrink: 0; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold-mid);
  color: var(--gold);
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all var(--transition);
}
.btn-outline-gold:hover { background: var(--gold-pale); }

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 48px;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(168,131,58,.3);
  transition: background var(--transition), transform var(--transition);
}
.slider-dots button.active { background: var(--gold); transform: scale(1.3); }

/* ── LEAD FORM (hero sağ) ── */
.hero-form-panel {
  background: rgba(255,255,255,.97);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 36px;
  backdrop-filter: blur(6px);
}
.form-card { width: 100%; max-width: 360px; }
.form-pretitle { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.form-heading { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--dark); margin-bottom: 24px; line-height: 1.3; }

/* Progress */
.progress-wrap { margin-bottom: 24px; }
.progress-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--text3); margin-bottom: 7px; }
.progress-bar { height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; width: 25%; background: linear-gradient(90deg, var(--gold), var(--gold-mid)); border-radius: 2px; transition: width .4s ease; }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }
.step-question { font-size: 12px; color: var(--text2); margin-bottom: 12px; letter-spacing: .03em; }

/* Gender */
.gender-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.gender-btn {
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text2);
  padding: 18px 10px;
  text-align: center;
  border-radius: var(--r);
  font-size: 13px;
  letter-spacing: .04em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: all var(--transition);
}
.gender-btn .gi { font-size: 20px; color: var(--gold-mid); }
.gender-btn:hover, .gender-btn.sel { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

/* Options */
.opts-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.opt-btn {
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text2);
  padding: 12px 14px;
  text-align: left;
  border-radius: var(--r);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
}
.opt-circle {
  width: 14px; height: 14px;
  border: 1px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.opt-btn:hover, .opt-btn.sel { border-color: var(--gold-mid); color: var(--text); background: var(--gold-pale); }
.opt-btn.sel .opt-circle { background: var(--gold); border-color: var(--gold); }
.opt-btn.sel .opt-circle::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--white); }

/* Select & Input */
.f-select, .f-input {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  border-radius: var(--r);
  outline: none;
  transition: border-color var(--transition);
}
.f-select { appearance: none; cursor: pointer; color: var(--text2); margin-bottom: 9px; }
.f-select:focus, .f-input:focus { border-color: var(--gold-mid); }
.f-input::placeholder { color: var(--text3); }
.f-input-single { margin-bottom: 9px; }
.f-input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 9px; }

.gdpr-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0;
  font-size: 11px;
  color: var(--text3);
  line-height: 1.5;
}
.gdpr-row a { color: var(--gold); }
.gdpr-row input { margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); }
.honeypot { display: none !important; }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 13px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background var(--transition);
  margin-top: 4px;
}
.btn-submit:hover { background: #8A6A2A; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

.form-nav-row { display: flex; gap: 9px; margin-top: 8px; }
.btn-next {
  flex: 1;
  background: transparent;
  border: 1px solid var(--gold-mid);
  color: var(--gold);
  padding: 11px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all var(--transition);
}
.btn-next:hover { background: var(--gold-pale); }
.btn-next:disabled { opacity: .4; }
.btn-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text3);
  padding: 11px 16px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all var(--transition);
}
.btn-back:hover { border-color: var(--text3); color: var(--text2); }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}
.form-success .icon { font-size: 40px; margin-bottom: 12px; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.form-success p { font-size: 13px; color: var(--text2); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--gold-mid); line-height: 1; }
.trust-lbl { font-size: 11px; color: #888; letter-spacing: .06em; line-height: 1.45; }
.trust-div { width: 1px; height: 32px; background: rgba(255,255,255,.1); }

/* ── SERVICES ── */
.services { background: var(--cream); padding: 88px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 30px 22px;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid));
  transform: scaleX(0);
  transition: transform .3s ease;
}
.service-card:hover { border-color: var(--gold-light); box-shadow: 0 4px 24px rgba(168,131,58,.08); }
.service-card:hover::after { transform: scaleX(1); }
.service-num { font-size: 11px; color: var(--text3); letter-spacing: .1em; margin-bottom: 16px; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 500; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.service-desc { font-size: 12px; color: var(--text2); line-height: 1.65; font-weight: 300; }
.service-link { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; margin-top: 14px; }

/* ── METHOD ── */
.method { padding: 88px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.step-card { background: var(--white); padding: 30px 22px; border-right: 1px solid var(--border); }
.step-card:last-child { border-right: none; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 400; color: var(--gold-light); line-height: 1; margin-bottom: 14px; }
.step-line { width: 24px; height: 1px; background: var(--gold-mid); margin-bottom: 12px; }
.step-name { font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 7px; }
.step-desc { font-size: 12px; color: var(--text2); line-height: 1.65; font-weight: 300; }

/* ── PROCESS ── */
.process { background: var(--cream); padding: 88px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.process-list { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.process-item { display: flex; gap: 18px; }
.process-idx {
  width: 32px; height: 32px;
  border: 1px solid var(--gold-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gold); flex-shrink: 0; font-weight: 500; margin-top: 2px;
}
.process-title { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
.process-desc { font-size: 13px; color: var(--text2); line-height: 1.65; font-weight: 300; }

.why-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 32px; }
.why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.why-card .wline { width: 30px; height: 1px; background: var(--gold-mid); margin-bottom: 20px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.why-icon { width: 34px; height: 34px; background: var(--gold-pale); border: 1px solid var(--gold-light); border-radius: 3px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.why-label { font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
.why-sub { font-size: 11px; color: var(--text3); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 88px 0; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.testi-card { background: var(--cream); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }
.testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-pale); border: 1px solid var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: var(--gold); }
.testi-name { font-size: 13px; font-weight: 500; color: var(--dark); }
.testi-loc { font-size: 11px; color: var(--text3); }

/* ── CONTACT ── */
.contact { background: var(--cream); padding: 88px 0; border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 48px; }
.ci-item { display: flex; gap: 14px; margin-bottom: 24px; }
.ci-icon { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 3px; background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--text3); margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--dark); }
.contact-form { display: flex; flex-direction: column; gap: 9px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 14px; padding: 4px 0; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text2); cursor: pointer; }
.radio-row input { accent-color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 28px 0; }
footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.f-logo img { height: 26px; filter: brightness(0) saturate(100%) invert(75%) sepia(30%) saturate(500%) hue-rotate(5deg) brightness(90%); }
.f-links { display: flex; gap: 20px; flex-wrap: wrap; }
.f-links a { font-size: 11px; color: #666; letter-spacing: .06em; transition: color var(--transition); }
.f-links a:hover { color: var(--gold-mid); }
.f-copy { font-size: 11px; color: #555; }

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 999;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* ── BLOG ── */
.blog { padding: 88px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: var(--white); transition: box-shadow var(--transition); }
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.blog-card-body { padding: 20px; }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.blog-card-excerpt { font-size: 12px; color: var(--text2); line-height: 1.65; }
.blog-card-date { font-size: 10px; color: var(--text3); letter-spacing: .08em; margin-bottom: 8px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile First
   ══════════════════════════════════════════════════════════════ */

/* Tablet ≥ 768px */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid .step-card:nth-child(2) { border-right: none; }
  .steps-grid .step-card:nth-child(3) { border-top: 1px solid var(--border); }
  .steps-grid .step-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  /* Hero: stack vertically */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content {
    padding: 48px 0 36px;
    order: 1;
  }
  .hero-form-panel {
    order: 2;
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 36px 24px;
  }
  .slider-bg::after {
    background: linear-gradient(to bottom, rgba(255,255,255,.88) 0%, rgba(255,255,255,.7) 100%);
  }
  .hero-wrapper { flex-direction: column; }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 12px 24px; font-size: 13px; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }

  /* Sections */
  .services { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .steps-grid .step-card:last-child { border-bottom: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-bar .container { gap: 24px; }
  .trust-div { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .slider-dots { left: 24px; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sec-sub { margin-bottom: 32px; }
  .method { padding: 64px 0; }
  .process { padding: 64px 0; }
  .testimonials { padding: 64px 0; }
  .contact { padding: 64px 0; }
}

@media (max-width: 480px) {
  .f-input-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(30px, 8vw, 40px); }
  .hero-badges { gap: 6px; }
  .badge { font-size: 11px; padding: 4px 10px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-gold, .hero-btns .btn-outline-gold { width: 100%; text-align: center; }
  .gender-grid { grid-template-columns: 1fr 1fr; }
  .hero-form-panel { padding: 28px 16px; }
  .container { padding: 0 16px; }
}
