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

:root {
  --navy:   #0B1120;
  --navy2:  #111A2E;
  --gold:   #C9943A;
  --gold2:  #E6B655;
  --white:  #FFFFFF;
  --light:  #D6DCE8;
  --muted:  #8A95A8;

  --font-display: 'Fraunces', Georgia, serif;
  --font-heading: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── ICONS ── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold2);
  stroke-width: 1.75;
}
.icon svg { width: 100%; height: 100%; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.05); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

.hero-text > * {
  animation: fadeUp 0.9s var(--ease-out-expo) both;
}
.hero-eyebrow  { animation-delay: 0.1s; }
.hero-h1       { animation-delay: 0.22s; }
.hero-sub      { animation-delay: 0.34s; }
.hero-btns     { animation-delay: 0.46s; }

.hero-visual .hero-card {
  animation: slideRight 1s var(--ease-out-expo) 0.35s both;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(11,17,32,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,148,58,0.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw; height: 68px;
  transition: height 0.35s var(--ease-smooth), background 0.35s var(--ease-smooth),
              box-shadow 0.35s var(--ease-smooth);
}
nav.scrolled {
  height: 58px;
  background: rgba(11,17,32,0.96);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--white);
}
.nav-logo span { color: var(--gold2); font-style: italic; }
.nav-links { display: flex; gap: 2.4rem; list-style: none; }
.nav-links a {
  font-family: var(--font-heading);
  color: var(--light); font-size: 0.8rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.25s var(--ease-smooth);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px;
  background: var(--gold2);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold2); }
.nav-cta {
  font-family: var(--font-heading);
  background: var(--gold); color: var(--navy);
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; border: none; cursor: pointer;
  padding: 0.6rem 1.4rem; border-radius: 4px;
  transition: background 0.25s, transform 0.2s var(--ease-out-expo), box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,148,58,0.35);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 6vw 60px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 60%, #0e1a32 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,148,58,0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold2);
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--gold2);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.01em;
  margin-bottom: 0.35em;
}
.hero-h1 .accent {
  color: var(--gold2);
  display: block;
  font-style: italic;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.0625rem; font-weight: 400; color: var(--light); line-height: 1.7;
  max-width: 420px; margin-bottom: 2.4rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-heading);
  background: var(--gold); color: var(--navy);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; border: none; cursor: pointer;
  padding: 0.85rem 2rem; border-radius: 4px;
  transition: background 0.25s, transform 0.2s var(--ease-out-expo), box-shadow 0.25s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,148,58,0.3);
}
.btn-outline {
  font-family: var(--font-heading);
  background: transparent; color: var(--white);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.28); cursor: pointer;
  padding: 0.85rem 2rem; border-radius: 4px;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover {
  border-color: var(--gold2);
  color: var(--gold2);
  background: rgba(201,148,58,0.06);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex; justify-content: center; align-items: flex-end;
  position: relative; z-index: 2;
}
.hero-card {
  background: var(--navy2);
  border: 1px solid rgba(201,148,58,0.25);
  border-radius: 10px;
  padding: 2.4rem 2rem;
  max-width: 340px; width: 100%;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 72px rgba(0,0,0,0.45);
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 1.6rem;
  color: var(--gold2);
}
.stat-row { display: flex; flex-direction: column; gap: 0.85rem; }
.stat-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(201,148,58,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  transition: background 0.25s, transform 0.25s var(--ease-out-expo);
}
.stat-item:hover {
  background: rgba(201,148,58,0.12);
  transform: translateX(4px);
}
.stat-icon {
  width: 2.25rem; height: 2.25rem;
  background: rgba(201,148,58,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon .icon { width: 1.15rem; height: 1.15rem; }
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
}
.stat-value {
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 600; color: var(--white);
}

/* ── TAGLINE STRIP ── */
.strip {
  background: var(--gold);
  padding: 1.2rem 6vw;
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  flex-wrap: wrap;
  overflow: hidden;
}
.strip-text {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--navy);
  animation: fadeIn 0.8s var(--ease-out-expo) both;
}
.strip-text:nth-child(1) { animation-delay: 0.1s; }
.strip-text:nth-child(3) { animation-delay: 0.25s; }
.strip-text:nth-child(5) { animation-delay: 0.4s; }
.strip-divider {
  width: 6px; height: 6px; background: var(--navy);
  border-radius: 50%; opacity: 0.4;
}

/* ── SECTIONS ── */
section { padding: 90px 6vw; }
.section-header { max-width: 600px; }
.section-label {
  font-family: var(--font-heading);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold2); font-weight: 600; margin-bottom: 0.7rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px; background: var(--gold2);
}
.section-label.center { justify-content: center; }
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.85rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}
.section-h2 span { color: var(--gold2); font-style: italic; }
.section-h2.center { text-align: center; }
.section-desc {
  font-family: var(--font-body);
  font-size: 1.0625rem; font-weight: 400; color: var(--light);
  line-height: 1.75; max-width: 560px;
}
.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── WHY ── */
.why { background: var(--navy2); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 3rem;
}
.why-intro {
  font-family: var(--font-body);
  font-size: 1.0625rem; color: var(--light); line-height: 1.8;
  margin-bottom: 1.6rem;
}
.why-intro strong { color: var(--gold2); font-weight: 600; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.why-card {
  background: var(--navy);
  border: 1px solid rgba(201,148,58,0.18);
  border-radius: 8px; padding: 1.6rem 1.4rem;
  transition: border-color 0.3s, transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.why-icon {
  width: 2.75rem; height: 2.75rem;
  background: rgba(201,148,58,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
  transition: background 0.3s, transform 0.3s var(--ease-out-expo);
}
.why-card:hover .why-icon {
  background: rgba(201,148,58,0.18);
  transform: scale(1.08);
}
.why-icon .icon { width: 1.35rem; height: 1.35rem; }
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 0.5rem; color: var(--white);
}
.why-card p {
  font-family: var(--font-body);
  font-size: 0.875rem; color: var(--muted); line-height: 1.65;
}

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}
.service-card {
  background: var(--navy2);
  border: 1px solid rgba(201,148,58,0.15);
  border-radius: 8px; padding: 2rem 1.6rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-display);
  font-size: 2.75rem; font-weight: 600; color: rgba(201,148,58,0.15);
  line-height: 1; margin-bottom: 0.5rem;
  font-style: italic;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--white); margin-bottom: 0.6rem;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 0.875rem; color: var(--muted); line-height: 1.65;
}

/* ── PROCESS ── */
.process { background: var(--navy2); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}
.process-line {
  position: absolute; top: 26px; left: 12.5%; right: 12.5%;
  height: 2px; background: rgba(201,148,58,0.15);
  z-index: 0; overflow: hidden;
}
.process-line-fill {
  height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease-out-expo);
}
.process-steps.is-visible .process-line-fill { transform: scaleX(1); }
.step {
  text-align: center; position: relative; z-index: 1; padding: 0 1rem;
}
.step-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem; font-weight: 700; color: var(--gold2);
  transition: background 0.3s, transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}
.step:hover .step-circle {
  background: rgba(201,148,58,0.12);
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(201,148,58,0.25);
}
.step h3 {
  font-family: var(--font-heading);
  font-size: 0.875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.5rem; color: var(--white);
}
.step p {
  font-family: var(--font-body);
  font-size: 0.8125rem; color: var(--muted); line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 3rem;
}
.testimonial {
  background: var(--navy2);
  border: 1px solid rgba(201,148,58,0.15);
  border-radius: 8px; padding: 1.8rem;
  transition: border-color 0.3s, transform 0.35s var(--ease-out-expo);
}
.testimonial:hover {
  border-color: rgba(201,148,58,0.35);
  transform: translateY(-3px);
}
.stars {
  display: flex; gap: 0.2rem; margin-bottom: 1rem;
}
.stars .icon { width: 0.9rem; height: 0.9rem; color: var(--gold2); }
.stars .icon svg {
  fill: var(--gold2);
  stroke: var(--gold2);
}
.testimonial blockquote {
  font-family: var(--font-body);
  font-size: 0.9375rem; color: var(--light); line-height: 1.75;
  font-style: italic; margin-bottom: 1.2rem;
}
.testimonial cite {
  font-family: var(--font-heading);
  font-size: 0.78rem; color: var(--muted);
  font-style: normal; font-weight: 500; letter-spacing: 0.02em;
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, #0e1a32 0%, var(--navy2) 100%);
  border-top: 1px solid rgba(201,148,58,0.2);
  border-bottom: 1px solid rgba(201,148,58,0.2);
  text-align: center; padding: 80px 6vw;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(201,148,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .section-h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); }
.cta-band .section-desc { margin: 0 auto 2.2rem; max-width: 520px; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.phone-big {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 600;
  color: var(--gold2); letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin: 0 auto 1.8rem; text-decoration: none;
  transition: color 0.25s, transform 0.3s var(--ease-out-expo);
}
.phone-big:hover { color: var(--white); transform: scale(1.02); }
.phone-big .icon { width: 1.5rem; height: 1.5rem; }

/* ── CONTACT ── */
#contact { background: var(--navy); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 60px; margin-top: 3rem; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 600;
  margin-bottom: 1rem; color: var(--gold2);
  font-style: italic;
}
.contact-info p {
  font-family: var(--font-body);
  font-size: 0.9375rem; color: var(--light); line-height: 1.75;
  margin-bottom: 2rem;
}
.info-item {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--light);
  transition: transform 0.25s var(--ease-out-expo);
}
.info-item:hover { transform: translateX(4px); }
.info-icon { color: var(--gold2); flex-shrink: 0; }
.checklist {
  list-style: none; margin-top: 1.8rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.checklist li {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.875rem; color: var(--light);
}
.checklist .icon { width: 1rem; height: 1rem; color: var(--gold2); }

form {
  background: var(--navy2);
  border: 1px solid rgba(201,148,58,0.2);
  border-radius: 10px; padding: 2.4rem 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
form:focus-within {
  border-color: rgba(201,148,58,0.4);
  box-shadow: 0 0 0 4px rgba(201,148,58,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 1.4rem; }
label {
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
input, select, textarea {
  font-family: var(--font-body);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,148,58,0.2);
  border-radius: 4px; padding: 0.75rem 0.9rem;
  color: var(--white); font-size: 0.9375rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--gold2);
  background: rgba(201,148,58,0.05);
  box-shadow: 0 0 0 3px rgba(201,148,58,0.1);
}
textarea { resize: vertical; min-height: 100px; }
select option { background: var(--navy2); color: var(--white); }
.form-submit {
  width: 100%;
  font-family: var(--font-heading);
  background: var(--gold); color: var(--navy);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; border: none; cursor: pointer;
  padding: 1rem; border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: background 0.25s, transform 0.2s var(--ease-out-expo), box-shadow 0.25s;
}
.form-submit:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,148,58,0.3);
}
.form-note {
  font-family: var(--font-body);
  font-size: 0.75rem; color: var(--muted);
  text-align: center; margin-top: 0.8rem;
}

/* ── FOOTER ── */
footer {
  background: #070D1A;
  border-top: 1px solid rgba(201,148,58,0.15);
  padding: 50px 6vw 30px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-top: 0.8rem;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold2); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-family: var(--font-body);
  font-size: 0.85rem; color: var(--muted); text-decoration: none;
  transition: color 0.25s, transform 0.25s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.footer-col ul a:hover { color: var(--gold2); transform: translateX(3px); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  font-family: var(--font-body);
  font-size: 0.78rem; color: var(--muted); flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom span { color: var(--gold2); }

.footer-bottom-brand {
  font-family: var(--font-body);
  font-size: 0.78rem; color: var(--muted);
  text-align: center; 
  margin-top: 3rem;
}
.footer-bottom-brand a {
  color: var(--gold2); text-decoration: none;
}
.footer-bottom-brand a:hover { color: var(--white); }
/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--navy2); border: 1px solid var(--gold);
  border-radius: 8px; padding: 1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--white);
  transform: translateY(120px) scale(0.95); opacity: 0;
  transition: transform 0.45s var(--ease-out-expo), opacity 0.45s;
  z-index: 999; max-width: 300px;
  display: flex; align-items: flex-start; gap: 0.6rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.toast.show { transform: translateY(0) scale(1); opacity: 1; }
.toast strong { color: var(--gold2); font-family: var(--font-heading); }
.toast .icon { width: 1.1rem; height: 1.1rem; margin-top: 0.15rem; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-visual { margin-top: 2rem; }
  .why-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  section { padding: 60px 5vw; }
  .why-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll { opacity: 1; transform: none; }
  .hero-text > * { animation: none; }
  .hero-visual .hero-card { animation: none; }
}
