@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ───────────────────────────────── */
:root {
  --c-dark:    #0F172A;
  --c-dark2:   #0A1120;
  --c-card:    #131E30;
  --c-card2:   #162035;
  --c-border:  rgba(255,255,255,.08);
  --c-gold:    #C8A96B;
  --c-gold-d:  #b08843;
  --c-gold-dim: rgba(200,169,107,.12);
  --c-white:   #FFFFFF;
  --c-gray:    #94A3B8;
  --c-gray2:   #64748B;
  --ff-head:   'Manrope', sans-serif;
  --ff-body:   'Inter', sans-serif;
  --max-w:     1440px;
  --radius:    12px;
  --radius-sm: 8px;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-dark2);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

/* ── Typography Utilities ────────────────────────────── */
.ph-label {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 14px;
}
.ph-heading-xl {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.ph-heading-lg {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
}
.ph-heading-md {
  font-family: var(--ff-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}
.ph-text-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-gray);
  line-height: 1.75;
}

/* ── Container ───────────────────────────────────────── */
.ph-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Buttons ─────────────────────────────────────────── */
.ph-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .02em;
  border-radius: 10px;
  padding: 15px 26px;
  transition: background .2s, color .2s, border-color .2s, opacity .2s;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.ph-btn--primary {
  background: var(--c-gold);
  color: #0A1120;
}
.ph-btn--primary:hover { background: var(--c-gold-d); }
.ph-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(200,169,107,.45);
  color: var(--c-gold);
}
.ph-btn--outline:hover {
  border-color: var(--c-gold);
  background: var(--c-gold-dim);
}
.ph-btn--lg { padding: 18px 32px; font-size: .95rem; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.ph-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.ph-nav--scrolled {
  background: rgba(10,17,32,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.ph-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ph-nav__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
  padding-right: 72px;
}
.ph-nav__logo-name {
  font-family: var(--ff-head);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1;
}
.ph-nav__logo-name em { color: var(--c-gold); font-style: normal; }
.ph-nav__logo-tagline {
  font-family: var(--ff-body);
  font-size: .6rem;
  font-weight: 400;
  color: rgba(255,255,255,.30);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.55;
}
.ph-nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.ph-nav__links > li > a {
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-gray);
  transition: color .2s;
  letter-spacing: .02em;
  white-space: nowrap;
}
.ph-nav__links > li > a:hover { color: var(--c-white); }
.ph-nav__dropdown { position: relative; }
.ph-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: var(--ff-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-gray);
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}
.ph-nav__dropdown-toggle:hover { color: var(--c-white); }
.ph-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(10,17,32,.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  min-width: 220px;
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .22s, visibility .2s;
  z-index: 200;
  box-shadow: 0 24px 56px rgba(0,0,0,.5);
}
.ph-nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.ph-nav__dropdown:hover .ph-nav__dropdown-menu,
.ph-nav__dropdown--open .ph-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.ph-nav__dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-family: var(--ff-body);
  font-size: .84rem;
  color: var(--c-gray);
  transition: color .2s, background .2s;
}
.ph-nav__dropdown-menu li a:hover {
  color: var(--c-white);
  background: rgba(255,255,255,.04);
}
.ph-nav__cta {
  display: flex;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}
.ph-nav__cta .ph-btn { padding: 14px 22px; font-size: .84rem; border-radius: 10px; }
.ph-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  margin-left: auto;
}
.ph-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.ph-nav--open .ph-nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ph-nav--open .ph-nav__hamburger span:nth-child(2) { opacity: 0; }
.ph-nav--open .ph-nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.ph-nav--open .ph-nav__links { display: flex; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.phc-hero {
  position: relative;
  padding: 96px 0 80px;
  background: linear-gradient(160deg, #0A1628 0%, #0F172A 60%, #0A1120 100%);
  overflow: hidden;
}
.phc-hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,107,.07) 0%, transparent 70%);
  pointer-events: none;
}
.phc-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.phc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 24px;
}
.phc-hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-gold);
  opacity: .6;
}
.phc-hero__headline {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
.phc-hero__headline span { color: var(--c-gold); }
.phc-hero__sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--c-gray);
  line-height: 1.8;
  margin-bottom: 36px;
}
.phc-hero__sub p { margin-bottom: 8px; }
.phc-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right — qualification card */
.phc-qual-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.phc-qual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: .5;
}
.phc-qual-card__title {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-border);
}
.phc-qual-card__title span {
  display: block;
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 400;
  color: var(--c-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.phc-qual-list { display: flex; flex-direction: column; gap: 14px; }
.phc-qual-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--c-gray);
  line-height: 1.5;
}
.phc-qual-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-gold-dim);
  border: 1px solid rgba(200,169,107,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.phc-qual-icon svg { width: 13px; height: 13px; color: var(--c-gold); }
.phc-qual-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  font-family: var(--ff-body);
  font-size: .78rem;
  color: rgba(200,169,107,.55);
  font-style: italic;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   FORM SECTION
══════════════════════════════════════════ */
.phc-form-section {
  padding: 96px 0;
  background: var(--c-dark);
}
.phc-form-section__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

/* Form */
.phc-form-wrap {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 48px;
}
.phc-form-head {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
}
.phc-form-head h2 {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 10px;
}
.phc-form-head p {
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--c-gray);
  line-height: 1.65;
}

.phc-form { display: flex; flex-direction: column; gap: 28px; }
.phc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.phc-form__row--full { grid-template-columns: 1fr; }

.phc-field { display: flex; flex-direction: column; gap: 8px; }
.phc-field label {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.phc-field label span { color: var(--c-gold); margin-left: 2px; }

.phc-input,
.phc-select,
.phc-textarea {
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--c-white);
  width: 100%;
  transition: border-color .2s, background .2s;
  outline: none;
}
.phc-input::placeholder,
.phc-textarea::placeholder { color: rgba(255,255,255,.25); }
.phc-input:focus,
.phc-select:focus,
.phc-textarea:focus {
  border-color: rgba(200,169,107,.5);
  background: rgba(200,169,107,.04);
}
.phc-input.ph-error,
.phc-select.ph-error,
.phc-textarea.ph-error {
  border-color: rgba(239,68,68,.6);
}
.phc-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.phc-select option { background: #131E30; color: var(--c-white); }
.phc-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

/* Checkbox group */
.phc-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
  transition: border-color .2s, background .2s;
  font-family: var(--ff-body);
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.phc-checkbox-label:hover {
  border-color: rgba(200,169,107,.25);
  background: rgba(200,169,107,.04);
  color: var(--c-white);
}
.phc-checkbox-label input[type="checkbox"] { display: none; }
.phc-checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.phc-checkbox-label input[type="checkbox"]:checked ~ .phc-checkbox-text { color: var(--c-white); }
.phc-checkbox-label:has(input:checked) {
  border-color: rgba(200,169,107,.4);
  background: rgba(200,169,107,.06);
}
.phc-checkbox-label:has(input:checked) .phc-checkbox-box {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.phc-checkbox-label:has(input:checked) .phc-checkbox-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #0A1120;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

.phc-form__submit {
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.phc-form__note {
  font-family: var(--ff-body);
  font-size: .76rem;
  color: var(--c-gray2);
  line-height: 1.55;
}

/* Form success */
.phc-form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.phc-form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-gold-dim);
  border: 1.5px solid rgba(200,169,107,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.phc-form-success h3 {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.phc-form-success p {
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--c-gray);
}

/* Process sidebar */
.phc-sidebar { display: flex; flex-direction: column; gap: 24px; }
.phc-process-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.phc-process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  opacity: .45;
}
.phc-process-card__title {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 28px;
}
.phc-process-card__title span {
  display: block;
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 400;
  color: var(--c-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.phc-process-steps { display: flex; flex-direction: column; }
.phc-step {
  display: flex;
  gap: 16px;
  position: relative;
}
.phc-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: -4px;
  width: 1px;
  background: linear-gradient(180deg, rgba(200,169,107,.3), rgba(200,169,107,.05));
}
.phc-step { padding-bottom: 24px; }
.phc-step:last-child { padding-bottom: 0; }
.phc-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,169,107,.35);
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--c-gold);
}
.phc-step__body { padding-top: 4px; }
.phc-step__title {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 4px;
}
.phc-step__desc {
  font-family: var(--ff-body);
  font-size: .82rem;
  color: var(--c-gray2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   ALTERNATIVE CONTACT
══════════════════════════════════════════ */
.phc-alt {
  padding: 80px 0;
  background: var(--c-dark2);
  border-top: 1px solid var(--c-border);
}
.phc-alt__head {
  text-align: center;
  margin-bottom: 48px;
}
.phc-alt__head h2 {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}
.phc-alt__head p {
  font-family: var(--ff-body);
  font-size: .88rem;
  color: var(--c-gray);
}
.phc-alt__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.phc-alt-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s, transform .25s;
}
.phc-alt-card:hover {
  border-color: rgba(200,169,107,.25);
  transform: translateY(-3px);
}
.phc-alt-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--c-gold-dim);
  border: 1px solid rgba(200,169,107,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.phc-alt-card__icon svg { width: 20px; height: 20px; color: var(--c-gold); }
.phc-alt-card__label {
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 500;
  color: var(--c-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.phc-alt-card__value {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-white);
}
.phc-alt-card__desc {
  font-family: var(--ff-body);
  font-size: .8rem;
  color: var(--c-gray2);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   CLOSING SECTION
══════════════════════════════════════════ */
.phc-closing {
  padding: 96px 0;
  background: var(--c-dark);
  text-align: center;
  border-top: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.phc-closing::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,107,.06) 0%, transparent 70%);
  pointer-events: none;
}
.phc-closing__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.phc-closing__quote {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.phc-closing__quote em {
  color: var(--c-gold);
  font-style: normal;
}
.phc-closing__body {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--c-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}
.phc-closing__body p { margin-bottom: 4px; }
.phc-closing__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: 0 auto 36px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ph-container { padding: 0 28px; }
  .ph-nav__inner { padding: 0 28px; }
  .phc-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .phc-qual-card { display: none; }
  .phc-form-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .phc-form-wrap { padding: 32px 24px; }
  .phc-alt__grid { grid-template-columns: 1fr; gap: 14px; }
  .ph-nav__links { display: none; flex-direction: column; gap: 0; }
  .ph-nav__hamburger { display: flex; }
  .ph-nav__cta { display: none; }
  .ph-nav__inner { height: 72px; }
  .ph-nav--open .ph-nav__links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,17,32,.98);
    backdrop-filter: blur(20px);
    padding: 16px 28px 24px;
    border-bottom: 1px solid var(--c-border);
  }
  .ph-nav--open .ph-nav__links > li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
  .ph-nav--open .ph-nav__cta {
    display: flex;
    position: absolute;
    top: calc(72px + var(--mobile-nav-height, 260px));
    left: 28px;
    right: 28px;
  }
  .ph-nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  .ph-nav__dropdown--open .ph-nav__dropdown-menu {
    visibility: visible;
    max-height: 320px;
    padding: 4px 0 8px 16px;
    border-left: 1px solid rgba(200,169,107,.2);
    margin-top: 8px;
    margin-left: 4px;
  }
}

@media (max-width: 640px) {
  .phc-hero { padding: 64px 0 56px; }
  .phc-form__row { grid-template-columns: 1fr; }
  .phc-form-wrap { padding: 24px 18px; }
  .phc-closing { padding: 72px 0; }
  .phc-alt { padding: 60px 0; }
  .phc-form-section { padding: 64px 0; }
}

/* Mobil responsive düzeltmeleri */
@media (max-width: 768px) {
  /* 1. Kimlerle Çalışıyoruz — mobilde göster */
  body.ph-template-page .phc-qual-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 2. Ön Değerlendirme Formu — yatay taşma engeli */
  body.ph-template-page .phc-form-section__inner,
  body.ph-template-page .phc-form-wrap,
  body.ph-template-page .phc-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  body.ph-template-page .phc-form__row {
    grid-template-columns: 1fr !important;
  }
  body.ph-template-page .phc-input,
  body.ph-template-page .phc-select,
  body.ph-template-page .phc-textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  body.ph-template-page .phc-checkbox-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 3. Nasıl İlerliyoruz — yatay taşma engeli */
  body.ph-template-page .phc-process-card,
  body.ph-template-page .phc-process-steps,
  body.ph-template-page .phc-step,
  body.ph-template-page .phc-step__body {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  /* Bölüm düzeyinde overflow kapsamı */
  body.ph-template-page .phc-hero,
  body.ph-template-page .phc-form-section,
  body.ph-template-page .phc-alt,
  body.ph-template-page .phc-closing {
    overflow-x: hidden !important;
  }
}

/* Başlık renk düzeltmeleri */
body.ph-template-page .phc-hero__headline,
body.ph-template-page .phc-hero__headline br {
  color: #F8FAFC !important;
  opacity: 1 !important;
}
body.ph-template-page .phc-hero__headline span {
  color: var(--c-gold) !important;
  opacity: 1 !important;
}
body.ph-template-page .phc-closing__quote {
  color: #F8FAFC !important;
  opacity: 1 !important;
}
body.ph-template-page .phc-closing__quote em {
  color: var(--c-gold) !important;
  opacity: 1 !important;
}
