/* ========================================================
   ProBooks CPA — Main Stylesheet
   Mobile-first | Premium animations | Modern UI
   ======================================================== */

/* -------- CSS Variables -------- */
:root {
  --navy:       #0a1628;
  --navy-mid:   #0f1f3d;
  --navy-light: #162445;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-pale:  #f5e8c0;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --text:       #1a1a2e;
  --text-muted: #6b7280;
  --border:     rgba(201, 168, 76, 0.2);
  --shadow:     0 20px 60px rgba(10, 22, 40, 0.15);
  --shadow-gold:0 8px 32px rgba(201, 168, 76, 0.25);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:   16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

/* -------- Reset & Base -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
select, input, textarea, button { font-family: inherit; }

/* -------- Utility -------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-head h2 em, h2 em {
  font-style: italic;
  color: var(--gold);
}
.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn--lg { padding: 17px 34px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(10, 22, 40, 0.25);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--nav {
  padding: 10px 22px;
  font-size: 0.875rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
  font-weight: 600;
  border: 2px solid var(--gold);
}
.btn--nav:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

/* -------- Loader -------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__ring {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loader__text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -------- Navbar -------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
}
.nav__logo em { color: var(--gold); font-style: normal; }
.logo-icon { font-size: 1.2rem; color: var(--gold); line-height: 1; }
.nav__links {
  display: none;
  gap: 8px;
  margin-left: auto;
}
.nav__links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.nav__links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav .btn--nav { margin-left: auto; display: none; }
.nav__burger {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.mobile-menu .btn { width: 100%; }

/* -------- Hero -------- */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  top: -100px; right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2563eb, transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.hero__grid {
  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: 60px 60px;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__plus { font-size: 1.6rem; color: var(--gold); }
.stat__label { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* Hero Photo */
.hero__photo { display: flex; justify-content: center; }
.photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.photo-frame__glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.photo-img {
  width: 100%;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  object-fit: cover;
  object-position: top center;
  max-height: 500px;
}
.photo-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 2;
  animation: cardFloat 4s ease-in-out infinite;
}
.photo-card svg { color: var(--gold); flex-shrink: 0; }
.photo-card div { display: flex; flex-direction: column; gap: 2px; }
.photo-card strong { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.photo-card span { font-size: 0.75rem; color: var(--text-muted); }
.photo-card--1 { bottom: 80px; left: -20px; animation-delay: 0s; }
.photo-card--2 { top: 60px; right: -20px; animation-delay: 2s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
  animation: scrollLine 2s ease-in-out infinite;
}
.scroll-indicator p { font-size: 0.7rem; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; text-transform: uppercase; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* -------- Trust Bar -------- */
.trust {
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 28px 20px;
}
.trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.trust__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); font-weight: 600; }
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.trust__logo {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust__logo:hover { border-color: var(--gold); transform: translateY(-2px); }

/* -------- Services -------- */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-card__list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  font-weight: 500;
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.service-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card__link:hover { gap: 12px; }

/* -------- About -------- */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.about__img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: top center;
  max-height: 500px;
}
.about__experience-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.exp-label { font-size: 0.75rem; font-weight: 600; line-height: 1.3; }
.about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}
.about__lead {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about__content > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pillar__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar div { display: flex; flex-direction: column; gap: 4px; }
.pillar strong { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.pillar span { font-size: 0.875rem; color: var(--text-muted); }

/* -------- Clients -------- */
.clients {
  padding: 100px 0;
  background: var(--white);
}
.clients__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.client-card {
  background: var(--white);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.client-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.04), var(--white));
  box-shadow: var(--shadow-gold);
}
.client-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.client-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.client-icon { font-size: 2.5rem; }
.client-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.client-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.client-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.client-card li {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

/* -------- Process -------- */
.process {
  padding: 100px 0;
  background: var(--navy);
}
.process .section-head h2 { color: var(--white); }
.process .section-head p { color: rgba(255,255,255,0.6); }
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  width: 100%;
  transition: var(--transition);
}
.process-step:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--border);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.process__arrow {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  padding: 16px 0;
  transform: rotate(90deg);
}

/* -------- Testimonials -------- */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testi-stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testi-author strong { font-size: 0.9rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 2px; }
.testi-author span { font-size: 0.8rem; color: var(--text-muted); }
.testimonials__cta { display: flex; justify-content: center; }
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  border-radius: 100px;
  padding: 16px 32px;
}
.rating-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-badge > div { display: flex; flex-direction: column; gap: 4px; }
.rating-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.rating-badge span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* -------- CTA Banner -------- */
.cta-banner {
  padding: 100px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg { position: absolute; inset: 0; overflow: hidden; }
.cta-banner__orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  top: -200px; right: -200px;
  animation: floatOrb 10s ease-in-out infinite;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
}
.cta-banner h2 em { color: rgba(10,22,40,0.6); font-style: italic; }
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(10,22,40,0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* -------- Contact -------- */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.contact__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact__info > p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__item { display: flex; gap: 16px; align-items: flex-start; }
.contact__icon {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__item div { display: flex; flex-direction: column; gap: 4px; }
.contact__item strong { font-size: 0.875rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.05em; }
.contact__item span { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.contact__item a { color: var(--gold); transition: var(--transition); }
.contact__item a:hover { color: var(--gold-light); }

/* Form */
.contact-form {
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 40px 32px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.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.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 60px 32px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
}
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.form-success p { font-size: 0.95rem; color: var(--text-muted); }

/* -------- Footer -------- */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { max-width: 300px; }
.footer .nav__logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li, .footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* -------- Floating CTA -------- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  z-index: 900;
  white-space: nowrap;
  transition: var(--transition);
  opacity: 0;
}
.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.floating-cta:hover {
  background: var(--gold-light);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
}

/* -------- Scroll Reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   TABLET (640px+)
   ====================================================== */
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .clients__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { flex-direction: row; justify-content: space-between; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ======================================================
   DESKTOP (1024px+)
   ====================================================== */
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav .btn--nav { display: inline-flex; }
  .nav__burger { display: none; }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 20px 100px;
  }
  .hero__photo { justify-content: flex-end; }
  .photo-card--1 { left: -30px; }
  .photo-card--2 { right: -30px; }

  .services__grid { grid-template-columns: repeat(3, 1fr); }

  .about__inner { grid-template-columns: 1fr 1fr; }

  .process__steps {
    flex-direction: row;
    align-items: flex-start;
  }
  .process-step { flex: 1; }
  .process__arrow { transform: none; padding: 0 8px; margin-top: 40px; }

  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }

  .contact__inner { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }

  .floating-cta { display: none; } /* hide on desktop */
}
