/* ── BADGE ───────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--gold-border);
  border-radius: 99px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  background: var(--gold-dim);
}

.badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

/* ── HERO TYPOGRAPHY ─────────────────────────────────── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* ── FORMS ───────────────────────────────────────────── */
.form-inline { display: flex; gap: 0.75rem; max-width: 480px; }

.form-inline input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.1rem;
  background: rgba(17,35,72,0.7);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-inline input[type="email"]::placeholder { color: var(--text-muted); }

.form-inline input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
  outline: none;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  padding: 0.9rem 1.8rem;
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition-fast);
  border: 1px solid var(--gold);
  position: relative; overflow: hidden;
  text-align: center;
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.3);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  padding: 0.9rem 1.8rem;
  background: transparent;
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold-border);
  transition: all var(--transition-fast);
  position: relative; overflow: hidden;
}

.btn-secondary:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-primary::after, .btn-secondary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-primary:hover::after, .btn-secondary:hover::after { transform: translateX(100%); }

.form-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 0.85rem;
}

/* ── SERVICE CARDS ───────────────────────────────────── */
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,0.5); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }

/* Service icon — large, meaningful SVG-based icons */
.service-icon-wrap {
  width: 64px; height: 64px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(201,168,76,0.06);
  transition: all var(--transition);
  position: relative;
}

.service-card:hover .service-icon-wrap {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
}

.service-icon-wrap svg {
  width: 30px; height: 30px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── PROCESS STEPS ───────────────────────────────────── */
.process-step {
  position: relative; z-index: 1;
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--navy-card);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  transition: all var(--transition);
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 0 28px rgba(201,168,76,0.4);
  transform: scale(1.08);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── CASE CARDS ──────────────────────────────────────── */
.case-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  transition: all var(--transition);
  position: relative; overflow: hidden;
}

.case-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}

.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(201,168,76,0.4); }
.case-card:hover::after { transform: scaleX(1); }

.case-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--gold-border);
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 1.1rem;
}

.case-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.case-desc {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-group label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  background: rgba(17,35,72,0.6);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
  outline: none;
}

.form-group select option { background: var(--navy-mid); color: var(--cream); }
.form-group textarea { min-height: 120px; }

/* ── CONTACT INFO ────────────────────────────────────── */
.contact-info { margin-top: 0; display: flex; flex-direction: column; gap: 1.1rem; }

.contact-info-item { display: flex; align-items: center; gap: 1rem; }

.contact-info-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--gold); flex-shrink: 0;
}

.contact-info-text { font-size: 0.92rem; color: var(--text-muted); }
.contact-info-text strong {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 400;
  margin-bottom: 0.15rem;
}

/* ── PROFILE CARD ────────────────────────────────────── */
.profile-card {
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex; flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.profile-photo-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #0d1f3c;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.profile-photo {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.04);
  transition: transform 0.6s cubic-bezier(0.2,0.9,0.3,1);
}

.profile-photo-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--navy-card) 0%, transparent 100%);
  pointer-events: none;
}

.profile-card:hover .profile-photo { transform: scale(1.03); }

.profile-card:hover .profile-photo { transform: scale(1.04); }

.profile-card > div:not(.profile-photo-wrap) { padding: 1.25rem 1.75rem 0; }
.profile-bio { padding: 0 1.75rem; width: 100%; }
.profile-card > a { margin: 1.25rem 1.75rem 1.75rem; }

.profile-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.profile-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.profile-bio {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--gold-border);
  padding-top: 1.25rem;
}

/* ── SPLIT SECTION VISUALS ───────────────────────────── */
.section-diagram {
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background: var(--navy-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}

/* ── STATS ───────────────────────────────────────────── */
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SECTION KICKER / TITLE ──────────────────────────── */
.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}

.section-kicker::before {
  content: '';
  display: block; width: 2rem; height: 1px;
  background: var(--gold); opacity: 0.6;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
}

/* ── LOGO — NAV & FOOTER ─────────────────────────────── */
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  opacity: 0.9;
}

/* ── TOAST ───────────────────────────────────────────── */
.toast-inner {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 1rem 1.5rem;
  background: var(--navy-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  min-width: 280px;
}

.toast-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}

.toast-text { display: flex; flex-direction: column; }

.toast-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream); font-weight: 500;
}

.toast-sub { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ── MISC ────────────────────────────────────────────── */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  margin-top: 3rem; opacity: 0.45;
  animation: bounce-hint 2.5s ease-in-out infinite;
}

.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.scroll-hint-arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); }

.about-diagram { position: relative; aspect-ratio: 1; max-width: 380px; }
.diagram-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: rotate-slow 20s linear infinite;
}
.diagram-ring:nth-child(2) { animation-direction: reverse; animation-duration: 28s; }
.diagram-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem; color: var(--gold);
}
.diagram-label {
  position: absolute;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}

@media (max-width: 500px) {
  .form-inline { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .profile-photo { width: 70%; }
}
