*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --navy-light: #162d55;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-dim: rgba(201,168,76,0.15);
  --cream: #f5f0e8;
  --cream-dim: rgba(245,240,232,0.7);
  --cream-muted: rgba(245,240,232,0.4);
  --white: #ffffff;
  --border: rgba(201,168,76,0.2);
  --border-cream: rgba(245,240,232,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border-cream);
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  background: var(--gold);
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--gold-light); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem clamp(1.5rem, 4vw, 3rem) 0;
  position: relative;
  overflow-x: clip;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 85% 35%, rgba(201, 168, 76, 0.09), transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(22, 45, 85, 0.9), transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.4) 100%);
}

.hero-ambient::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-cream) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-cream) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
  opacity: 0.35;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-bottom: 2.5rem;
}

.hero-content {
  min-width: 0;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
  overflow-wrap: break-word;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

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

.hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-cream);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-muted);
  letter-spacing: 0.2px;
  max-width: 140px;
  line-height: 1.4;
}

/* Hero right panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  background: linear-gradient(145deg, rgba(15, 32, 64, 0.95), rgba(10, 22, 40, 0.85));
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-offer {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-cream);
}

.hero-offer-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-offer-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero-offer-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-offer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-offer-copy strong {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.35;
}

.hero-offer-copy span {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.55;
}

.hero-offer-note {
  margin-top: 1rem;
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.55;
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-checklist li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.5;
}

.hero-checklist li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 10px;
  color: var(--gold);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: var(--cream-muted);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-cream);
  background: rgba(10, 22, 40, 0.5);
}

.hero-panel-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-cream);
}

.hero-trust {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid var(--border-cream);
  background: rgba(15, 32, 64, 0.55);
  margin-top: auto;
}

.hero-trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.15rem 1.5rem;
  font-size: 12px;
  font-weight: 400;
  color: var(--cream-dim);
  letter-spacing: 0.2px;
  border-right: 1px solid var(--border-cream);
}

.hero-trust-item:last-child {
  border-right: none;
}

.hero-trust-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--navy);
  background: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ─── SECTION BASE ─── */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section-pad {
  padding: 7rem 0;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

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

.section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--cream-dim);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── PROBLEM SECTION ─── */
.problem {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-cream);
  border-bottom: 1px solid var(--border-cream);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-cream);
  margin-top: 4rem;
}

.problem-item {
  background: var(--navy-mid);
  padding: 2.5rem;
  transition: background 0.3s;
}

.problem-item:hover { background: var(--navy-light); }

.problem-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.problem-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.problem-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ─── SERVICES ─── */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-cream);
}

.service-card {
  background: var(--navy);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover { background: var(--navy-mid); }
.service-card:hover::after { width: 100%; }

.service-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 16px;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ─── PROCESS ─── */
.process {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-cream);
  border-bottom: 1px solid var(--border-cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-circle {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--navy-mid);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* ─── WHO FOR ─── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.who-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--border-cream);
  transition: border-color 0.3s, background 0.3s;
}

.who-item:hover {
  border-color: var(--border);
  background: var(--navy-mid);
}

.who-dash {
  width: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  align-self: stretch;
  opacity: 0.5;
}

.who-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.who-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-muted);
  line-height: 1.6;
}

/* ─── ETHICS ─── */
.ethics {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-cream);
}

.ethics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.ethics-list {
  list-style: none;
}

.ethics-list li {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-cream);
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-dim);
  align-items: flex-start;
}

.ethics-list li:last-child { border-bottom: none; }

.ethics-mark {
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.mark-yes { color: var(--gold); }
.mark-no { color: rgba(245,240,232,0.25); }

.ethics-note {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--gold-dim);
}

.ethics-note-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ethics-note-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* ─── CTA ─── */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid var(--border);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

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

.cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.5px;
}

.cta-actions {
  margin-bottom: 1.5rem;
}

.cta-open-btn {
  padding: 1rem 2.5rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}

.cta-open-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ─── APPLICATION MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.modal-overlay.is-open .modal-dialog {
  transform: translateY(0);
}

.modal-header {
  flex-shrink: 0;
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--border-cream);
  padding-right: 3.5rem;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.modal-intro {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.modal-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem 2rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.form-field label .req {
  color: var(--cream-muted);
  font-weight: 400;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--navy);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
}

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

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #c9a84c;
}

.form-hint {
  font-size: 11px;
  font-weight: 300;
  color: var(--cream-muted);
  margin-top: 0.35rem;
  line-height: 1.5;
}

.form-privacy-note {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.55;
  border: 1px solid var(--border-cream);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.form-field input[type="file"] {
  width: 100%;
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  padding: 0.5rem 0;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-checkbox input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.form-checkbox label {
  font-size: 13px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 0;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.form-submit:hover:not(:disabled) {
  background: var(--gold-light);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-error {
  font-size: 13px;
  font-weight: 400;
  color: #e8b4b4;
  background: rgba(200, 80, 80, 0.12);
  border: 1px solid rgba(200, 120, 120, 0.35);
  padding: 0.75rem 1rem;
  line-height: 1.5;
}

.form-error[hidden] {
  display: none;
}

.modal-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.modal-success.is-visible {
  display: block;
}

.modal-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.modal-success-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

body.modal-open {
  overflow: hidden;
}

.cta-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-muted);
  letter-spacing: 0.3px;
}

.cta-note--secondary {
  margin-top: 0.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border-cream);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--cream-muted);
  letter-spacing: 0.5px;
}

.footer-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--cream-muted);
  letter-spacing: 0.3px;
}

/* ─── DIVIDER LINE ─── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0.6;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); opacity: 0.4; }

/* ─── RESPONSIVE: 14" laptop & tablet ─── */
@media (max-width: 1400px) {
  footer {
    padding: 2.5rem clamp(1.5rem, 3vw, 2.5rem);
  }

  .process-step {
    padding: 0 0.5rem;
  }

  .step-desc {
    font-size: 11px;
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-trust-item:nth-child(2) {
    border-right: none;
  }

  .hero-trust-item {
    border-bottom: 1px solid var(--border-cream);
  }

  .hero-trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1rem;
  }

  .process-steps::before {
    display: none;
  }

  .ethics-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  nav {
    padding: 1rem 1.25rem;
  }

  .hero {
    padding: 5.5rem 1.25rem 3rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-stats {
    gap: 1.25rem 1.75rem;
  }

  .hero-trust-inner {
    grid-template-columns: 1fr;
  }

  .hero-trust-item {
    border-right: none;
    justify-content: flex-start;
    padding: 0.9rem 1.25rem;
  }

  .hero-trust-item:not(:last-child) {
    border-bottom: 1px solid var(--border-cream);
  }

  .problem-grid,
  .services-grid,
  .who-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-pad {
    padding: 4.5rem 0;
  }
}

/* ─── PAYMENT RESULT PAGES ─── */
.payment-result {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 3rem;
}

.payment-result-card {
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  background: rgba(15, 32, 64, 0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.payment-result-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.payment-result-card p {
  color: var(--cream-dim);
  font-size: 15px;
  margin-bottom: 1.5rem;
}

.payment-result-card .btn-primary {
  display: inline-block;
  text-decoration: none;
}

.payment-result-card.is-fail h1 {
  color: #f0b4b4;
}

.payment-result-meta {
  font-size: 12px;
  color: var(--cream-muted);
  margin-top: 1rem;
  word-break: break-all;
}
