/* ============================================================
   Rauf Accounting Services — Main Stylesheet
   ============================================================ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0B1F3A;
  --navy2:  #0e2649;
  --navy3:  #132f57;
  --gold:   #C9A84C;
  --gold2:  #e8c96a;
  --gold3:  #f5e0a0;
  --cream:  #F8F5EF;
  --white:  #ffffff;
  --text:   #0B1F3A;
  --mid:    #3A5070;
  --muted:  #7A90AB;
  --border: #D0DCEC;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  background: rgba(11,31,58,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: background 0.4s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; filter: brightness(1.1); }
.nav-logo-text {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.02em; line-height: 1.2; color: var(--white);
}
.nav-logo-text span {
  color: var(--gold); display: block; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--sans);
}
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.04em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold2); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 0.55rem 1.3rem; border-radius: 4px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

/* ── HERO ── */
#home {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center;
  padding: 120px 5% 80px; position: relative; overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,61,102,0.5) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb1 {
  width: 600px; height: 600px; right: -150px; top: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 65%);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb2 {
  width: 400px; height: 400px; left: -100px; bottom: -80px;
  background: radial-gradient(circle, rgba(30,61,102,0.6) 0%, transparent 65%);
  animation: orbFloat 9s 2s ease-in-out infinite alternate-reverse;
}
.orb3 {
  width: 200px; height: 200px; left: 40%; top: 20%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 65%);
  animation: orbFloat 7s 1s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.08); }
}
.hero-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center; position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.35rem 1rem; border-radius: 100px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold2); background: rgba(201,168,76,0.07);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
h1.hero-h {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
h1.hero-h em { color: var(--gold2); font-style: italic; }
.hero-tagline {
  font-size: 1rem; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s 0.3s ease both; }
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  letter-spacing: 0.02em; transition: 0.2s; display: inline-block;
  border: none; cursor: pointer;
}
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline-w {
  background: transparent; color: rgba(255,255,255,0.8);
  padding: 0.9rem 2rem; border-radius: 6px;
  font-weight: 500; font-size: 0.9rem; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2); transition: 0.2s; display: inline-block;
}
.btn-outline-w:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* Hero 3D card */
.hero-3d-wrap { perspective: 1200px; display: flex; justify-content: center; }
.hero-card-3d {
  width: 340px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25); border-radius: 20px; padding: 2px;
  transform-style: preserve-3d;
  animation: cardFloat 6s ease-in-out infinite;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.1) inset;
}
@keyframes cardFloat {
  0%,100% { transform: rotateY(-6deg) rotateX(4deg) translateY(0); }
  50%      { transform: rotateY(-3deg) rotateX(2deg) translateY(-16px); }
}
.card-inner {
  border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, rgba(19,47,87,0.95) 0%, rgba(11,31,58,0.98) 100%);
}
.card-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; gap: 10px;
}
.card-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.8; }
.card-dot2 { background: rgba(201,168,76,0.4); }
.card-dot3 { background: rgba(201,168,76,0.2); }
.card-title {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--sans); margin-left: 4px;
}
.card-body { padding: 1.5rem; }
.card-metric { margin-bottom: 1.25rem; }
.card-metric-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.35rem;
}
.card-metric-val {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.card-metric-val span { font-size: 1rem; color: var(--gold); font-style: italic; }
.card-bar-wrap { display: flex; flex-direction: column; gap: 0.6rem; }
.card-bar-row  { display: flex; align-items: center; gap: 10px; }
.card-bar-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); width: 80px; flex-shrink: 0; }
.card-bar-track {
  flex: 1; height: 4px; background: rgba(255,255,255,0.07);
  border-radius: 2px; overflow: hidden;
}
.card-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  animation: barGrow 1.5s ease-out both;
}
@keyframes barGrow { from { width: 0; } to { width: var(--w); } }
.card-bar-pct { font-size: 0.72rem; color: var(--gold); width: 32px; text-align: right; flex-shrink: 0; }
.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: space-between;
}
.card-status { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.card-badge {
  font-size: 0.7rem;
  background: rgba(201,168,76,0.15); color: var(--gold2);
  padding: 0.2rem 0.65rem; border-radius: 100px;
  border: 1px solid rgba(201,168,76,0.25);
}

/* Floating stat pills */
.stat-pill {
  position: absolute; background: rgba(255,255,255,0.96);
  border-radius: 100px; padding: 0.5rem 1rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: pillFloat 5s ease-in-out infinite;
}
.stat-pill.p1 { bottom: 20%; right: calc(50% - 380px); animation-delay: 0s; }
.stat-pill.p2 { top: 25%; right: calc(50% - 460px); animation-delay: 1.5s; }
@keyframes pillFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.stat-pill-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; font-size: 0.75rem;
}
.stat-pill-text strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.stat-pill-text small  { font-size: 0.68rem; color: var(--muted); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.5rem 5%;
}
.trust-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.trust-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35); white-space: nowrap; font-weight: 500;
}
.trust-sep { width: 1px; height: 14px; background: rgba(201,168,76,0.2); }
.trust-tags { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.trust-tag {
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.9rem; border-radius: 100px; transition: 0.2s;
}
.trust-tag:hover { border-color: rgba(201,168,76,0.4); color: var(--gold2); }

/* ── SECTION SHELL ── */
section { padding: 110px 5%; }
.sec { max-width: 1160px; margin: 0 auto; }
.sec-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 600; color: var(--gold); margin-bottom: 0.7rem; display: block;
}
.sec-h {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 300; color: var(--navy);
  letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 1rem;
}
.sec-h em { color: var(--gold); font-style: italic; }
.sec-p { font-size: 1rem; color: var(--mid); max-width: 540px; line-height: 1.75; margin-bottom: 3.5rem; }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1.25rem; }
.s-card {
  border: 1px solid var(--border); border-radius: 14px;
  padding: 2rem 1.75rem; background: var(--white);
  transition: 0.35s ease; cursor: default;
  position: relative; overflow: hidden; transform-style: preserve-3d;
}
.s-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.s-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.s-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 20px 60px rgba(11,31,58,0.12), 0 0 0 1px rgba(201,168,76,0.15);
  transform: translateY(-6px) rotateX(2deg);
}
.s-card:hover::before { opacity: 1; }
.s-card:hover::after  { transform: scaleX(1); }
.s-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem; transition: transform 0.3s;
}
.s-card:hover .s-icon { transform: scale(1.1) rotateY(15deg); }
.s-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.s-card p  { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ── PLATFORM ── */
#platform { background: var(--navy); position: relative; overflow: hidden; }
#platform::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.plat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.plat-feats { display: flex; flex-direction: column; gap: 2rem; }
.plat-feat  { display: flex; gap: 1.25rem; align-items: flex-start; }
.plat-feat-icon {
  width: 46px; height: 46px; min-width: 46px; border-radius: 10px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; transition: transform 0.3s;
}
.plat-feat:hover .plat-feat-icon { transform: scale(1.08) rotate(-3deg); }
.plat-feat h4 { color: var(--white); font-size: 0.97rem; font-weight: 600; margin-bottom: 0.3rem; }
.plat-feat p  { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.65; }

/* Dashboard mock */
.dash-wrap { perspective: 900px; }
.dashboard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 1.75rem;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s ease;
  box-shadow: -20px 30px 60px rgba(0,0,0,0.4);
}
.dash-wrap:hover .dashboard { transform: rotateY(0) rotateX(0); }
.dash-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.dash-title { color: rgba(255,255,255,0.35); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }
.dash-live { font-size: 0.68rem; color: #6FE8A0; display: flex; align-items: center; gap: 5px; }
.dash-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #6FE8A0; animation: pulse 2s infinite;
}
.dash-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem; }
.dash-met { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 0.9rem 1rem; }
.dash-met-label { font-size: 0.68rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.3rem; }
.dash-met-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--white); }
.dash-met-val small { font-size: 0.78rem; font-style: italic; color: var(--gold); }
.dash-rows { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.dash-row {
  background: rgba(255,255,255,0.04); border-radius: 8px;
  padding: 0.75rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.dash-row-label { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.badge        { font-size: 0.7rem; font-weight: 500; padding: 0.18rem 0.65rem; border-radius: 100px; }
.badge-done   { background: rgba(111,232,160,0.15); color: #6FE8A0; }
.badge-due    { background: rgba(201,168,76,0.15);  color: var(--gold2); }
.badge-review { background: rgba(120,170,240,0.15); color: #A0C4FF; }
.dash-note {
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px; padding: 0.9rem 1rem;
}
.dash-note-head { color: var(--gold2); font-size: 0.75rem; font-weight: 500; margin-bottom: 0.3rem; }
.dash-note-body { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.5; }

/* ── PRICING ── */
#pricing { background: var(--cream); }
.pricing-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.pricing-content {
  max-width: 700px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 4rem 3rem;
  box-shadow: 0 20px 60px rgba(11,31,58,0.07);
  position: relative; overflow: hidden;
}
.pricing-content::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
}
.pricing-badge-big {
  display: inline-block;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; padding: 0.4rem 1.1rem; border-radius: 100px; margin-bottom: 2rem;
}
.pricing-content h3 {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.2;
}
.pricing-content h3 em { color: var(--gold); font-style: italic; }
.pricing-content p { color: var(--mid); font-size: 1rem; line-height: 1.75; max-width: 480px; margin: 0 auto 1.5rem; }
.pricing-bullets {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.65rem; margin-bottom: 2.5rem; list-style: none;
}
.pricing-bullets li {
  font-size: 0.82rem; color: var(--mid);
  background: var(--cream); border: 1px solid var(--border);
  padding: 0.3rem 0.9rem; border-radius: 100px;
  display: flex; align-items: center; gap: 6px;
}
.pricing-bullets li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.btn-gold-big {
  background: var(--gold); color: var(--navy);
  padding: 1rem 2.5rem; border-radius: 6px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: 0.2s; display: inline-block; letter-spacing: 0.02em;
}
.btn-gold-big:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.pricing-note { margin-top: 1.5rem; font-size: 0.82rem; color: var(--muted); }

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stat {
  padding: 1.5rem; border-radius: 14px;
  background: var(--cream); border: 1px solid var(--border); transition: 0.3s;
}
.about-stat:hover { background: var(--navy); border-color: var(--navy); }
.about-stat:hover .as-num { color: var(--gold2); }
.about-stat:hover .as-lbl { color: rgba(255,255,255,0.55); }
.as-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--navy); transition: 0.3s; }
.as-lbl { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; transition: 0.3s; }
.about-tagline {
  margin-top: 1.75rem; padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, var(--navy), var(--navy3));
  border-radius: 14px;
}
.about-tagline p {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 300;
  font-style: italic; color: var(--white); line-height: 1.5; margin-bottom: 0.75rem;
}
.about-tagline small { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.about-values { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.9rem; }
.about-val { display: flex; gap: 1rem; align-items: flex-start; }
.about-val-icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.about-val h5 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.about-val p  { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 6rem 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band .sec-h { color: var(--white); }
.cta-band .sec-p { color: rgba(255,255,255,0.55); margin: 0 auto 2.5rem; text-align: center; }
.cta-contact { margin-top: 2rem; font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 2; }
.cta-contact a { color: var(--gold2); text-decoration: none; }
.cta-contact a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: #070f1c; color: rgba(255,255,255,0.5); padding: 4.5rem 5% 2.5rem; }
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1160px; margin: 0 auto 3rem;
}
.f-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 0.85rem; }
.f-brand-logo img { height: 32px; filter: brightness(0.9); }
.f-brand-logo span { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--white); }
.f-brand-logo span em { color: var(--gold); font-style: normal; }
.f-brand p { font-size: 0.83rem; line-height: 1.75; color: rgba(255,255,255,0.38); margin-bottom: 1rem; }
.f-tagline { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: rgba(201,168,76,0.6); }
.f-col h4 {
  color: rgba(255,255,255,0.55); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600; margin-bottom: 1rem;
}
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.f-col ul a { color: rgba(255,255,255,0.38); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.f-col ul a:hover { color: var(--gold2); }
.f-bottom {
  max-width: 1160px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.f-bottom p { font-size: 0.78rem; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(7,15,28,0.85); backdrop-filter: blur(10px);
}
.modal-box {
  position: relative; z-index: 2; background: var(--white);
  border-radius: 20px; width: 100%; max-width: 680px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-top {
  background: var(--navy); border-radius: 20px 20px 0 0;
  padding: 2.25rem 2.5rem 2rem; position: relative;
}
.modal-top-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.modal-top-logo img { height: 32px; filter: brightness(1.1); }
.modal-top-logo span { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--white); }
.modal-top h2 {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 300;
  color: var(--white); line-height: 1.2; margin-bottom: 0.4rem;
}
.modal-top h2 em { color: var(--gold2); font-style: italic; }
.modal-top p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6; }
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-body { padding: 2.25rem 2.5rem; }
.modal-steps { display: flex; gap: 0; margin-bottom: 2rem; }
.modal-step {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 6px; position: relative;
}
.modal-step:not(:last-child)::after {
  content: ''; position: absolute; top: 16px; left: 60%; right: -40%;
  height: 1px; background: var(--border);
}
.modal-step.active:not(:last-child)::after { background: var(--gold); }
.step-dot {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  background: var(--white); position: relative; z-index: 1; transition: 0.3s;
}
.modal-step.active .step-dot,
.modal-step.done .step-dot  { border-color: var(--gold); background: var(--gold); color: var(--navy); }
.step-label {
  font-size: 0.68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em; text-align: center; font-weight: 500;
}
.modal-step.active .step-label { color: var(--navy); font-weight: 600; }
.form-page { display: none; }
.form-page.active { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.form-group label span { color: var(--muted); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--sans); font-size: 0.88rem; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-group select {
  cursor: pointer; 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='%237A90AB' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.2rem;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.service-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 0.25rem; }
.service-cb {
  display: flex; align-items: center; gap: 8px;
  padding: 0.55rem 0.75rem; border-radius: 8px;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: 0.2s; font-size: 0.8rem; color: var(--mid);
}
.service-cb:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.04); }
.service-cb input[type=checkbox] { accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; }
.modal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.btn-modal-back {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--mid); padding: 0.7rem 1.5rem; border-radius: 6px;
  font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: 0.2s;
}
.btn-modal-back:hover { border-color: var(--navy); color: var(--navy); }
.btn-modal-next {
  background: var(--gold); color: var(--navy);
  padding: 0.7rem 1.75rem; border-radius: 6px;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  border: none; transition: 0.2s; margin-left: auto;
}
.btn-modal-next:hover { background: var(--gold2); }
.modal-trust {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.modal-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--muted); }
.modal-trust-item::before { content: '✓'; color: var(--gold); font-weight: 700; }
.modal-success {
  display: none; flex-direction: column;
  align-items: center; text-align: center; padding: 1rem 0 0.5rem;
}
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1.5rem;
}
.modal-success h3 { font-family: var(--serif); font-size: 1.75rem; font-weight: 300; color: var(--navy); margin-bottom: 0.5rem; }
.modal-success p  { color: var(--mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.modal-success .contact-info {
  background: var(--cream); border-radius: 12px;
  padding: 1.25rem 1.5rem; font-size: 0.85rem;
  color: var(--mid); line-height: 1.8; margin-bottom: 1.5rem;
}
.modal-success .contact-info a { color: var(--navy); font-weight: 500; text-decoration: none; }

/* ── ANIMATIONS ── */
@keyframes pulse   { 0%,100% { opacity:1; transform:scale(1); }   50% { opacity:0.5; transform:scale(0.8); } }
@keyframes fadeUp  { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .plat-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-3d-wrap, .stat-pill { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav .nav-links { display: none; }
  .mobile-menu-btn {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border: none; background: rgba(255,255,255,0.1);
    border-radius: 6px; cursor: pointer; color: var(--white); font-size: 1.3rem;
  }
  .mobile-nav {
    display: none; position: fixed; inset: 70px 0 0 0; z-index: 190;
    background: rgba(11,31,58,0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: rgba(255,255,255,0.8); text-decoration: none;
    font-size: 1.2rem; font-weight: 500; letter-spacing: 0.04em;
  }
  .mobile-nav a:hover { color: var(--gold2); }
  .mobile-nav .nav-cta {
    background: var(--gold); color: var(--navy) !important;
    padding: 0.75rem 2rem; border-radius: 6px; font-weight: 600 !important;
  }
}
@media (min-width: 901px) {
  .mobile-menu-btn, .mobile-nav { display: none !important; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .modal-body { padding: 1.5rem; }
  .modal-top  { padding: 1.75rem 1.5rem 1.5rem; }
  .service-checkboxes { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .pricing-content { padding: 2.5rem 1.5rem; }
  section { padding: 70px 5%; }
}
