/* ═══════════════════════════════════════════════
   Techmania – Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  /* Primary Navy - Original Theme */
  --navy: #001C58;
  --navy-mid: #0A2A6E;
  --navy-light: #153880;

  /* Accent Colors - Gold Theme */
  --primary: #E4A521;
  --primary-light: #F0B94A;
  --primary-dark: #C8901A;
  --accent: #E4A521;
  --accent-light: #F0B94A;

  /* Gold variables */
  --gold: #E4A521;
  --gold-light: #F0B94A;

  /* Backgrounds */
  --cream: #F7F7FB;
  --cream-dark: #EAEAF0;
  --white: #FFFFFF;

  /* Text */
  --text-dark: #001C58;
  --text-muted: #4A5568;
  --text-light: #718096;

  /* Borders */
  --border: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(0, 28, 88, 0.1);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #E4A521 0%, #F0B94A 100%);
  --gradient-dark: linear-gradient(180deg, #001C58 0%, #153880 100%);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.display {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.1;
}

.serif {
  font-family: 'Fraunces', serif;
}

/* ─────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 28, 88, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── DROPDOWN NAVIGATION ─── */
.nav-links li {
  position: relative;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown > a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover > a::after {
  transform: rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(6, 147, 227, 0.15);
  color: var(--primary-light);
  padding-left: 24px;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  cursor: pointer;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.02em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav-overlay.open {
  display: flex;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-nav-close:hover {
  color: var(--gold-light);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links a {
  display: block;
  font-size: 1.4rem;
  font-family: 'Fraunces', serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 16px 0;
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--primary-light);
}

.mobile-nav-cta {
  margin-top: 12px;
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  padding: 14px 40px !important;
  border-radius: 8px !important;
}

/* Mobile Dropdown */
.mobile-nav-dropdown {
  position: relative;
}

.mobile-nav-dropdown > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav-dropdown .dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.mobile-nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  list-style: none;
  padding: 0;
}

.mobile-nav-dropdown.open .mobile-dropdown-menu {
  max-height: 400px;
}

.mobile-dropdown-menu a {
  font-size: 1rem !important;
  padding: 10px 0 !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.mobile-dropdown-menu a:hover {
  color: var(--primary-light) !important;
}

/* ─────────────────────────────────────────────
   PAGE SYSTEM
───────────────────────────────────────────── */
.page {
  display: none;
  max-width: 100%;
  overflow-x: hidden;
}

.page.active {
  display: block;
}

/* ─────────────────────────────────────────────
   SHARED LAYOUT
───────────────────────────────────────────── */
section {
  padding: 96px 0;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-heading.light {
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.65);
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(6, 147, 227, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary-light);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11, 24, 41, 0.25);
}

.btn-outline-dark:hover {
  border-color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

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

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11, 24, 41, 0.3);
}

.btn-outline-navy:hover {
  border-color: var(--navy);
  background: rgba(11, 24, 41, 0.06);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

/* Interactive Hero Background System */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(6, 147, 227, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(26, 54, 93, 0.9) 0%, transparent 60%);
  transition: opacity 0.4s ease;
}

/* Hero background images for hover effect */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.hero-bg-layer.active {
  opacity: 0.15;
}

.hero-bg-layer--personal {
  background: linear-gradient(135deg, rgba(228, 165, 33, 0.3) 0%, rgba(240, 185, 74, 0.2) 100%);
}

.hero-bg-layer--commercial {
  background: linear-gradient(135deg, rgba(240, 185, 74, 0.3) 0%, rgba(228, 165, 33, 0.2) 100%);
}

.hero-bg-layer--trucking {
  background: linear-gradient(135deg, rgba(0, 180, 120, 0.25) 0%, rgba(228, 165, 33, 0.2) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 147, 227, 0.15);
  border: 1px solid rgba(6, 147, 227, 0.35);
  color: var(--primary-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '★';
  font-size: 0.7rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btns-main {
  margin-top: 20px;
}

/* Interactive Hero Buttons - Like SJJ */
.hero-interactive-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-interactive-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-interactive-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-interactive-btn:hover::before,
.hero-interactive-btn.active::before {
  opacity: 1;
}

.hero-interactive-btn span {
  position: relative;
  z-index: 1;
}

.hero-interactive-btn .btn-icon {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.hero-interactive-btn:hover,
.hero-interactive-btn.active {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(6, 147, 227, 0.35);
  border-color: transparent;
}

.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-card-title {
  font-family: 'Fraunces', serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.7;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px 20px;
  text-align: center;
}

.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  display: block;
}

/* ═══════════════════════════════════════════════
   PREMIUM HERO SECTION
   ═══════════════════════════════════════════════ */
.hero-minimal {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 80px;
}

.hero-minimal::before {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 28, 88, 0.94) 0%,
    rgba(0, 28, 88, 0.88) 50%,
    rgba(0, 45, 110, 0.90) 100%
  );
}

/* Floating Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 165, 33, 0.15) 0%, transparent 70%);
  animation: floatShape 15s ease-in-out infinite;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  animation-delay: -5s;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
}

.hero-minimal-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(228, 165, 33, 0.12);
  border: 1px solid rgba(228, 165, 33, 0.25);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  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-minimal h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, #f0c060 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-minimal p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-lg {
  padding: 16px 30px;
  font-size: 0.95rem;
}

.btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), #f0c060, var(--gold));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}

.btn-glow:hover::before {
  opacity: 0.6;
}

.btn-glow svg {
  transition: transform 0.3s ease;
}

.btn-glow:hover svg {
  transform: translateX(4px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Stats */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 20px 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  animation: fadeInUp 0.8s ease-out 0.5s both;
  max-width: 100%;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-divider {
  width: 1px;
  height: 35px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.scroll-dot {
  width: 3px;
  height: 10px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  left: -1px;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: 0; opacity: 0; }
  30% { opacity: 1; }
  70% { opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

/* Hero Badge (keeping for compatibility) */
.hero-badge-simple {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-badge-simple span:first-child,
.hero-badge-simple span:last-child {
  color: rgba(255, 255, 255, 0.85);
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-trust-item {
  text-align: center;
}

.trust-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trust-text {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.hero-trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

/* Minimal scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  width: 2px;
  height: 35px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Responsive - Premium Hero */
@media (max-width: 768px) {
  .hero-minimal {
    padding: 100px 0 60px;
  }

  .hero-minimal h1 {
    font-size: 1.8rem;
  }

  .hero-minimal p {
    font-size: 0.95rem;
  }

  .hero-badge-simple {
    font-size: 0.8rem;
    gap: 10px;
  }

  .btn-lg {
    padding: 14px 22px;
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 20px;
    padding: 18px 25px;
  }

  .hero-stat-num {
    font-size: 1.1rem;
  }

  .hero-stat-label {
    font-size: 0.68rem;
  }

  .hero-shape-1,
  .hero-shape-2,
  .hero-shape-3 {
    opacity: 0.3;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-minimal {
    padding: 90px 0 50px;
  }

  .hero-minimal h1 {
    font-size: 1.55rem;
  }

  .hero-label {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px;
    border-radius: 20px;
  }

  .hero-stat-divider {
    width: 50px;
    height: 1px;
  }

  .hero-trust-row {
    gap: 15px;
  }

  .hero-trust-divider {
    height: 25px;
  }

  .trust-num {
    font-size: 1.2rem;
  }
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}

.stat-item {
  padding: 32px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.stat-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  display: block;
}

/* ─────────────────────────────────────────────
   CARRIERS
───────────────────────────────────────────── */
.carriers {
  background: var(--cream-dark);
  padding: 60px 0;
  overflow: hidden;
}

.carriers-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Carrier Logo Marquee */
.carrier-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* Gradient fade on edges */
.carrier-marquee-wrapper::before,
.carrier-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.carrier-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream-dark) 0%, transparent 100%);
}

.carrier-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--cream-dark) 100%);
}

.carrier-marquee {
  display: flex;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}

.carrier-marquee:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carrier-marquee-content {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
}

.carrier-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 22px 36px;
  min-width: 200px;
  height: 100px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carrier-logo-item:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 28, 88, 0.12);
  border-color: var(--gold);
}

.carrier-logo-item img {
  max-height: 64px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.carrier-logo-item:hover img {
  opacity: 1;
}

.carrier-logo-fallback {
  display: none;
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

/* Keep old carrier-tags for backwards compatibility */
.carrier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.carrier-tag {
  background: var(--white);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
}

.carrier-tag:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: rgba(6, 147, 227, 0.06);
}

/* Responsive: Slower on mobile */
@media (max-width: 768px) {
  .carrier-marquee {
    animation-duration: 25s;
  }

  .carrier-marquee-content {
    gap: 30px;
    padding: 0 15px;
  }

  .carrier-logo-item {
    min-width: 150px;
    padding: 14px 24px;
    height: 70px;
  }

  .carrier-logo-item img {
    max-height: 42px;
    max-width: 140px;
  }

  .carrier-marquee-wrapper::before,
  .carrier-marquee-wrapper::after {
    width: 60px;
  }
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services-section {
  background: var(--cream);
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-sub {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: rgba(6, 147, 227, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(11, 24, 41, 0.1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  background: var(--cream-dark);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* ─────────────────────────────────────────────
   WHY US
───────────────────────────────────────────── */
.why-section {
  background: var(--navy);
  padding: 100px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.why-point {
  display: flex;
  gap: 24px;
}

.why-num {
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  min-width: 32px;
  padding-top: 3px;
}

.why-point-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.why-point-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.why-visual {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.why-visual-title {
  font-family: 'Fraunces', serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.why-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-tool {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.2s;
}

.why-tool:hover {
  background: rgba(6, 147, 227, 0.1);
  border-color: rgba(6, 147, 227, 0.3);
  color: var(--gold-light);
}

/* ─────────────────────────────────────────────
   PROCESS (home)
───────────────────────────────────────────── */
.process-section {
  background: var(--cream-dark);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(6, 147, 227, 0.1) 100%);
}

.process-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
}

.step-dot {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(11, 24, 41, 0.08);
}

.process-step:hover .step-dot {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

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

/* ─────────────────────────────────────────────
   PROCESS / HOW IT WORKS (Redesigned)
───────────────────────────────────────────── */
.process-section-new {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.process-header-new {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.process-header-new .section-sub {
  margin: 0 auto;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-card {
  position: relative;
  padding: 0 25px;
  text-align: center;
}

.process-card-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 28, 88, 0.06);
  line-height: 1;
  margin-bottom: 10px;
}

.process-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3c6e 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 28, 88, 0.2);
  transition: all 0.3s ease;
}

.process-card:hover .process-card-icon {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 28, 88, 0.25);
  background: linear-gradient(135deg, var(--gold) 0%, #e5b84c 100%);
}

.process-card-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.process-card-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.process-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.process-checklist li {
  font-size: 0.82rem;
  color: var(--text-dark);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.process-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23001c58' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.process-card-connector {
  display: none;
}

.process-card::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 90px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(200, 170, 100, 0.3) 100%);
}

.process-card:last-child::after {
  display: none;
}

.process-cta {
  margin-top: 60px;
}

.process-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 50px;
  box-shadow: 0 20px 50px rgba(0, 28, 88, 0.2);
}

.process-cta-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.process-cta-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Process Section Responsive */
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .process-card::after {
    display: none;
  }

  .process-cta-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .process-section-new {
    padding: 60px 0;
  }

  .process-header-new {
    margin-bottom: 40px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-card {
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  .process-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
  }

  .process-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .process-cta-content {
    padding: 30px 25px;
  }

  .process-cta-text h3 {
    font-size: 1.25rem;
  }
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-section {
  background: var(--navy);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.25s;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
  font-family: 'Fraunces', serif;
  font-weight: 300;
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
}

.cta-banner .section-label {
  color: var(--navy);
  opacity: 0.6;
}

.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-banner p {
  color: rgba(11, 24, 41, 0.65);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
footer {
  background: #07101E;
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand span {
  color: var(--gold);
}

.footer-about {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-col .footer-contact-heading {
  margin-top: 20px;
}

.footer-col .footer-email {
  word-break: break-all;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.about-story {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: var(--navy);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.about-stat .n {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  display: block;
  font-weight: 700;
}

.about-stat .l {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  display: block;
  line-height: 1.4;
}

.mission-section {
  background: var(--navy);
  text-align: center;
  padding: 80px 0;
}

.mission-section h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.75;
}

.carrier-section {
  background: var(--cream-dark);
}

.carrier-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.carrier-col h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.carrier-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─────────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────────── */
.service-full {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-dark);
}

.service-full:nth-child(even) {
  background: var(--cream-dark);
}

.service-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-full-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-full-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-list-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  font-weight: 600;
}

.service-list-block ul {
  list-style: none;
}

.service-list-block li {
  font-size: 0.875rem;
  color: var(--text-dark);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list-block li::before {
  content: '→';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ─────────────────────────────────────────────
   EXPERTS PAGE
───────────────────────────────────────────── */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.expert-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 24, 41, 0.12);
}

.expert-header {
  background: var(--navy);
  padding: 32px;
  text-align: center;
}

.expert-avatar {
  width: 72px;
  height: 72px;
  background: rgba(6, 147, 227, 0.15);
  border: 2px solid rgba(6, 147, 227, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  font-weight: 700;
}

.expert-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.expert-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.expert-badge {
  display: inline-block;
  background: rgba(6, 147, 227, 0.12);
  border: 1px solid rgba(6, 147, 227, 0.3);
  color: var(--gold-light);
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}

.expert-body {
  padding: 28px;
}

.expert-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.expert-skills-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.expert-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.expert-skill {
  background: var(--cream-dark);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.expert-tools-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 500;
}

.expert-tools-list {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────
   PRICING PAGE
───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.25s;
}

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  border-width: 2px;
  transform: scale(1.03);
}

.pricing-card:not(.featured):hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 24, 41, 0.1);
}

.pricing-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pricing-plan {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-plan {
  color: var(--white);
}

.pricing-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-price {
  color: var(--gold-light);
}

.pricing-best {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-best {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border-dark);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-divider {
  border-color: var(--border);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-dark);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(11, 24, 41, 0.05);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: var(--border);
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  min-width: 16px;
}

/* FAQ */
.faq-section {
  background: var(--cream-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-item:hover {
  border-color: rgba(6, 147, 227, 0.3);
}

.faq-q {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.925rem;
  margin-bottom: 12px;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   HOW IT WORKS PAGE
───────────────────────────────────────────── */
.process-full {
  background: var(--cream);
}

.process-full-steps {
  display: flex;
  flex-direction: column;
}

.process-full-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: start;
}

.process-full-step:last-child {
  border-bottom: none;
}

.process-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(11, 24, 41, 0.08);
  line-height: 1;
}

.process-full-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.process-full-content p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.comms-section {
  background: var(--navy);
}

.comms-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.comms-tool {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}

.comms-tool:hover {
  background: rgba(6, 147, 227, 0.1);
  border-color: rgba(6, 147, 227, 0.3);
  color: var(--gold-light);
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(6, 147, 227, 0.1);
  border: 1px solid rgba(6, 147, 227, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-value {
  font-size: 0.925rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-info-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  padding: 11px 16px;
  font-size: 0.875rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}

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

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group select {
  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 d='M1 1l5 5 5-5' stroke='%235C7087' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.form-submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page.active section {
  animation: fadeUp 0.5s ease forwards;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 900px) {

  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .services-grid,
  .testimonials-grid,
  .experts-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide {
    padding: 0 20px;
  }

  section {
    padding: 64px 0;
  }

  .services-grid,
  .testimonials-grid,
  .experts-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

  .service-full-grid {
    grid-template-columns: 1fr;
  }

  .service-lists {
    grid-template-columns: 1fr;
  }

  .carrier-cols {
    grid-template-columns: 1fr;
  }

  .about-visual-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════
   PHASE 1 — SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
  transition-delay: 0.5s;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Active nav link */
.nav-links a.nav-active:not(.nav-cta) {
  color: var(--primary-light) !important;
  position: relative;
}

.nav-links a.nav-active:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ═══════════════════════════════════════════════
   PHASE 1 — FAQ ACCORDION
   ═══════════════════════════════════════════════ */
.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-header .faq-q {
  margin-bottom: 0;
}

.faq-chevron {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  padding: 0 24px;
}

.faq-item.open .faq-body {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* ═══════════════════════════════════════════════
   PHASE 1 — FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ═══════════════════════════════════════════════
   PHASE 2 — TRUST SIGNALS BAR
   ═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  border-left: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.trust-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.trust-value {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.trust-value span {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════
   PHASE 4 — WORK SHOWCASE
   ═══════════════════════════════════════════════ */
.showcase-section {
  background: var(--cream-dark);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.showcase-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 24, 41, 0.1);
  border-color: rgba(6, 147, 227, 0.3);
}

.showcase-card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.showcase-card-title {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.showcase-card-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.showcase-chip {
  display: inline-block;
  background: rgba(6, 147, 227, 0.1);
  border: 1px solid rgba(6, 147, 227, 0.25);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   SAMPLE WORK SECTION - IMPROVED
   ═══════════════════════════════════════════════ */
.sample-work-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.work-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.work-category {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 28, 88, 0.06);
  transition: all 0.3s ease;
}

.work-category:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.work-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.work-category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.work-category-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.work-category-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0;
}

.work-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.work-item {
  display: flex;
  gap: 20px;
  padding: 15px;
  background: #fafbfc;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.work-item:hover {
  background: #f5f6fa;
}

.work-item-preview {
  width: 140px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.work-item-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-item:hover .work-item-preview img {
  transform: scale(1.05);
}

.work-item-content {
  flex: 1;
}

.work-item-content h4 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 8px 0;
  font-weight: 600;
}

.work-item-content p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-tags span {
  background: rgba(0, 28, 88, 0.08);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

.work-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: var(--navy);
  border-radius: 20px;
}

.work-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.work-cta .btn {
  background: var(--gold);
  color: var(--navy);
}

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

/* Responsive - Sample Work */
@media (max-width: 1024px) {
  .work-categories {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sample-work-section {
    padding: 60px 0;
  }

  .work-category {
    padding: 20px;
  }

  .work-item {
    flex-direction: column;
  }

  .work-item-preview {
    width: 100%;
    height: 150px;
  }

  .work-cta {
    padding: 30px 20px;
  }

  .work-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .work-category-header {
    flex-direction: column;
    text-align: center;
  }

  .work-item-content h4 {
    font-size: 0.95rem;
  }

  .work-item-content p {
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS PAGE — ENHANCED
   ═══════════════════════════════════════════════ */
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.how-step-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.25s;
}

.how-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 24, 41, 0.1);
  border-color: var(--gold);
}

.how-step-num {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--gold);
  color: var(--navy);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.how-step-icon {
  width: 56px;
  height: 56px;
  background: rgba(207, 178, 99, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.how-step-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
}

.how-step-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.how-step-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.how-step-checklist li {
  font-size: 0.82rem;
  color: var(--text);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.how-step-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.how-step-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.how-step-time svg {
  color: var(--gold);
}

/* What You'll Need */
.need-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.need-item:last-child {
  border-bottom: none;
}

.need-icon {
  width: 48px;
  height: 48px;
  background: rgba(207, 178, 99, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.need-item strong {
  color: var(--navy);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .how-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════════
   PHASE 3 — RESULTS / CASE STUDIES PAGE
   ═══════════════════════════════════════════════ */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 24, 41, 0.1);
}

.case-card-header {
  background: var(--navy);
  padding: 28px 28px 20px;
}

.case-card-tag {
  display: inline-block;
  background: rgba(6, 147, 227, 0.15);
  border: 1px solid rgba(6, 147, 227, 0.3);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}

.case-card-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.case-card-body {
  padding: 24px 28px;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.case-metric {
  text-align: center;
  background: var(--cream);
  border-radius: 10px;
  padding: 14px 10px;
}

.case-metric .m-num {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
}

.case-metric .m-lbl {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
  line-height: 1.3;
}

.case-outcome {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

/* ROI Calculator */
.roi-section {
  background: var(--navy);
}

.roi-calculator {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 800px;
  margin: 48px auto 0;
}

.roi-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.roi-group {
  text-align: left;
}

.roi-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.roi-group input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  outline: none;
  margin-bottom: 12px;
  cursor: pointer;
}

.roi-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s;
}

.roi-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.roi-group input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.roi-input-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 8px 12px;
}

.roi-input-row input[type="number"] {
  width: 70px;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--white);
  outline: none;
  text-align: center;
}

.roi-input-row input[type="number"]::-webkit-outer-spin-button,
.roi-input-row input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.roi-currency {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.roi-unit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* Breakdown Section */
.roi-breakdown {
  margin-bottom: 24px;
}

.roi-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.roi-compare-item {
  text-align: center;
  padding: 16px 24px;
  border-radius: 10px;
  min-width: 180px;
}

.roi-compare-item.current {
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.2);
}

.roi-compare-item.va {
  background: rgba(100, 255, 150, 0.1);
  border: 1px solid rgba(100, 255, 150, 0.2);
}

.roi-compare-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.roi-compare-value {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.roi-compare-arrow {
  color: var(--gold);
}

/* Result Section */
.roi-result {
  background: linear-gradient(135deg, rgba(207, 178, 99, 0.15) 0%, rgba(207, 178, 99, 0.05) 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.roi-result::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(207, 178, 99, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.roi-result-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  position: relative;
}

.roi-result-num {
  font-family: 'Fraunces', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.15s ease;
  position: relative;
}

.roi-savings-percent {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  background: rgba(100, 255, 150, 0.15);
  color: #7FFF7F;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  position: relative;
}

/* Details Section */
.roi-details {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.roi-detail-icon {
  color: var(--gold);
  display: flex;
}

.roi-detail-text strong {
  color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
  .roi-inputs {
    grid-template-columns: 1fr;
  }

  .roi-comparison {
    flex-direction: column;
    gap: 16px;
  }

  .roi-compare-arrow {
    transform: rotate(90deg);
  }

  .roi-details {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .roi-calculator {
    padding: 28px 20px;
  }

  .roi-result-num {
    font-size: 2.4rem;
  }
}

/* ═══════════════════════════════════════════════
   PHASE 5 — UPWORK BADGE
   ═══════════════════════════════════════════════ */
.upwork-badge-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 20px;
  margin-top: 28px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.upwork-badge-block:hover {
  border-color: rgba(108, 192, 74, 0.4);
}

.upwork-logo {
  background: #6CC04A;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 6px;
  letter-spacing: -0.02em;
}

.upwork-info {
  text-align: left;
}

.upwork-title {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.upwork-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  margin-top: 2px;
}

.upwork-stars {
  color: #6CC04A;
  font-size: 0.7rem;
  margin-top: 2px;
  letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════
   PHASE 8 — FOOTER SOCIAL ICONS
   ═══════════════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
  flex-shrink: 0;
}

.footer-social-link:hover {
  background: rgba(6, 147, 227, 0.12);
  border-color: rgba(6, 147, 227, 0.3);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* Form states */
.form-submit.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-submit.success {
  background: #1a7a4a;
}

.form-submit.error {
  background: #8B2020;
}

/* Extra responsive for new sections */
@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-inner {
    flex-wrap: wrap;
  }

  .trust-item {
    min-width: 160px;
    padding: 16px 18px;
  }

  /* Results page responsive overrides */
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .trust-bar-inner {
    border-left: none;
    flex-direction: column;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════════════════
   SERVICE DETAIL PAGES
   ═══════════════════════════════════════════════ */

/* Service Detail Overview Section */
.service-detail-overview {
  background: var(--cream);
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.service-detail-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-detail-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.service-detail-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-detail-block {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-dark);
}

.service-detail-block:first-child {
  grid-column: span 2;
}

.service-detail-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.service-detail-block ul {
  list-style: none;
}

.service-detail-block li {
  font-size: 0.875rem;
  color: var(--text-dark);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail-block li::before {
  content: '';
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
}

/* Service VAs Section */
.service-vas-section {
  background: var(--cream-dark);
  padding: 80px 0;
}

.service-vas-header {
  text-align: center;
  margin-bottom: 48px;
}

.service-vas-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-vas-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.service-vas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* VA Profile Card */
.va-profile-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s;
}

.va-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 28, 88, 0.12);
}

.va-profile-header {
  background: var(--navy);
  padding: 28px;
  text-align: center;
  position: relative;
}

.va-avatar {
  width: 80px;
  height: 80px;
  background: rgba(228, 165, 33, 0.15);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
}

.va-info {
  margin-bottom: 12px;
}

.va-name {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.va-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.va-experience {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
}

.va-badge {
  display: inline-block;
  background: rgba(228, 165, 33, 0.15);
  border: 1px solid rgba(228, 165, 33, 0.4);
  color: var(--gold-light);
  font-size: 0.7rem;
  padding: 6px 14px;
  border-radius: 100px;
  margin-top: 12px;
}

.va-profile-body {
  padding: 24px;
}

.va-bio {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.va-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 600;
}

.va-skills-section,
.va-tools-section {
  margin-bottom: 16px;
}

.va-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.va-skill {
  background: var(--cream-dark);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.va-tools-list {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* VA Stats Grid */
.va-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.va-stat {
  text-align: center;
}

.va-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.va-stat-label {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* VA Case Study */
.va-case-study {
  margin-top: 16px;
}

.va-case-content {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px;
  border-left: 3px solid var(--gold);
}

.va-case-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.va-case-result {
  display: flex;
  align-items: center;
  gap: 12px;
}

.va-case-metric {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
}

.va-case-label {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ─── RESPONSIVE: Service Detail Pages ─── */
@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-vas-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .service-detail-overview {
    padding: 60px 0;
  }

  .service-vas-section {
    padding: 60px 0;
  }

  .service-detail-lists {
    grid-template-columns: 1fr;
  }

  .service-detail-block:first-child {
    grid-column: span 1;
  }

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

/* ═══════════════════════════════════════════════
   SERVICES PAGE - ALTERNATING LAYOUT
   ═══════════════════════════════════════════════ */

.services-alt-section {
  padding: 80px 0;
}

.services-alt-section:nth-child(even) {
  background: var(--cream-dark);
}

.services-alt-section:nth-child(odd) {
  background: var(--cream);
}

.service-alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Reverse layout for even sections */
.services-alt-section:nth-child(even) .service-alt-row {
  direction: rtl;
}

.services-alt-section:nth-child(even) .service-alt-row > * {
  direction: ltr;
}

/* Service Image Container */
.service-alt-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-alt-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 28, 88, 0.2);
}

.service-alt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-alt-image:hover img {
  transform: scale(1.05);
}

/* Image Overlay */
.service-alt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 28, 88, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s ease;
}

.service-alt-image:hover .service-alt-overlay {
  background: linear-gradient(180deg, rgba(0, 28, 88, 0.3) 0%, rgba(0, 28, 88, 0.95) 100%);
}

.service-alt-overlay-title {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-alt-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-alt-image:hover .service-alt-overlay-cta {
  opacity: 1;
  transform: translateY(0);
}

.service-alt-overlay-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.service-alt-image:hover .service-alt-overlay-cta svg {
  transform: translateX(4px);
}

/* Service Content */
.service-alt-content {
  padding: 20px 0;
}

.service-alt-number {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(228, 165, 33, 0.1);
  border-radius: 4px;
}

.service-alt-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-alt-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-alt-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.service-alt-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.service-alt-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-alt-feature-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.service-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-alt-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 165, 33, 0.3);
}

.service-alt-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.service-alt-btn:hover svg {
  transform: translateX(4px);
}

/* Services Page Intro */
.services-page-intro {
  background: var(--cream);
  padding: 40px 0 0;
  text-align: center;
}

.services-page-intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── RESPONSIVE: Alternating Services ─── */
@media (max-width: 1024px) {
  .service-alt-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-alt-section:nth-child(even) .service-alt-row {
    direction: ltr;
  }

  .service-alt-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .service-alt-content {
    text-align: center;
  }

  .service-alt-features {
    justify-content: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .services-alt-section {
    padding: 50px 0;
  }

  .service-alt-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .service-alt-overlay {
    padding: 20px;
  }

  .service-alt-overlay-title {
    font-size: 1.2rem;
  }
}

/* ═══════════════════════════════════════════════
   HOME PAGE - SERVICES SHOWCASE
   ═══════════════════════════════════════════════ */

.home-services-section {
  background: var(--cream);
  padding: 100px 0;
}

.home-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.home-services-header .section-heading {
  margin-bottom: 16px;
}

.home-services-header .section-sub {
  max-width: 600px;
  margin: 0 auto;
}

/* Service Showcase Item */
.service-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-showcase-item:last-child {
  margin-bottom: 0;
}

/* Alternate layout */
.service-showcase-item.reverse {
  direction: rtl;
}

.service-showcase-item.reverse > * {
  direction: ltr;
}

/* Showcase Image */
.service-showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0, 28, 88, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-showcase-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 70px rgba(0, 28, 88, 0.2);
}

.service-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-showcase-image:hover img {
  transform: scale(1.08);
}

/* Floating Badge on Image */
.service-showcase-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(228, 165, 33, 0.4);
}

/* Overlay on Image */
.service-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 28, 88, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-showcase-image:hover .service-showcase-overlay {
  opacity: 1;
}

.service-showcase-overlay-text {
  color: var(--white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-showcase-overlay-text svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* Showcase Content */
.service-showcase-content {
  padding: 20px 0;
}

.service-showcase-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.service-showcase-number {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Fraunces', serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-showcase-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-showcase-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-showcase-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Tags/Features List */
.service-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.service-showcase-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border-dark);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.2s ease;
}

.service-showcase-tag-item:hover {
  border-color: var(--gold);
  background: rgba(228, 165, 33, 0.05);
}

.service-showcase-tag-icon {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-showcase-tag-icon svg {
  width: 10px;
  height: 10px;
  fill: var(--white);
}

/* Showcase Button */
.service-showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-showcase-btn:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 165, 33, 0.3);
}

.service-showcase-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.service-showcase-btn:hover svg {
  transform: translateX(4px);
}

/* View All Services CTA */
.home-services-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--border-dark);
}

.home-services-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-view-all svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
  transform: translateX(4px);
}

/* ─── RESPONSIVE: Home Services Showcase ─── */
@media (max-width: 1024px) {
  .service-showcase-item {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .service-showcase-item.reverse {
    direction: ltr;
  }

  .service-showcase-image {
    max-width: 600px;
    margin: 0 auto;
  }

  .service-showcase-content {
    text-align: center;
  }

  .service-showcase-label {
    justify-content: center;
  }

  .service-showcase-tags {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .home-services-section {
    padding: 60px 0;
  }

  .service-showcase-item {
    margin-bottom: 50px;
  }

  .service-showcase-tags {
    flex-direction: column;
    align-items: center;
  }

  .service-showcase-tag-item {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   ENHANCED ANIMATIONS & VISUAL IMPROVEMENTS
   ═══════════════════════════════════════════════ */

/* ─── NEW KEYFRAME ANIMATIONS ─── */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* ─── ANIMATION UTILITY CLASSES ─── */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
}

.animate-slide-left.is-visible {
  animation: slideInLeft 0.7s ease forwards;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
}

.animate-slide-right.is-visible {
  animation: slideInRight 0.7s ease forwards;
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
}

.animate-scale.is-visible {
  animation: fadeInScale 0.6s ease forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-float-slow {
  animation: floatSlow 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* ─── ENHANCED HERO SECTION ─── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=1920&q=80') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}

/* Floating Decorative Elements */
.hero-decorative {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 250px;
  height: 250px;
  background: var(--gold-light);
  bottom: -50px;
  left: -50px;
  animation: floatSlow 10s ease-in-out infinite 1s;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  top: 50%;
  right: 15%;
  animation: float 6s ease-in-out infinite 0.5s;
}

.hero-floating-icon {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  animation: float 5s ease-in-out infinite;
}

.hero-floating-icon:nth-child(1) {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.hero-floating-icon:nth-child(2) {
  top: 60%;
  right: 8%;
  animation-delay: 1s;
}

.hero-floating-icon:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

/* Hero Content Animations */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  animation: fadeInScale 0.6s ease forwards;
}

.hero h1 {
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero p {
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-interactive-btns {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.hero-btns-main {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
}

.upwork-badge-block {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.hero-card {
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

/* ─── SECTION DIVIDERS ─── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
  margin: 0;
}

.section-divider-wave {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: var(--navy);
  margin-top: -1px;
}

.section-divider-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
}

/* ─── ENHANCED TRUST BAR ─── */
.trust-item {
  transition: transform 0.3s ease, background 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.03);
}

.trust-icon {
  transition: transform 0.3s ease;
}

.trust-item:hover .trust-icon {
  transform: scale(1.2);
  animation: bounce 0.5s ease;
}

/* ─── ENHANCED CARRIER TAGS ─── */
.carrier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.carrier-tag {
  transition: all 0.3s ease;
}

.carrier-tag:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(228, 165, 33, 0.3);
}

/* ─── WHY SECTION IMAGE ─── */
.why-visual {
  position: relative;
}

.why-visual-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.why-visual:hover .why-visual-image {
  transform: scale(1.02);
  opacity: 1;
}

/* ─── ENHANCED SERVICE SHOWCASE ─── */
.service-showcase-image {
  overflow: hidden;
  position: relative;
}

.service-showcase-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228, 165, 33, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-showcase-image:hover::before {
  opacity: 1;
}

.service-showcase-image img {
  transition: transform 0.6s ease;
}

.service-showcase-image:hover img {
  transform: scale(1.08);
}

/* ─── ENHANCED SHOWCASE CARDS ─── */
.showcase-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(228, 165, 33, 0.05) 50%,
    transparent 70%
  );
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.showcase-card:hover::before {
  transform: rotate(45deg) translateX(100%);
}

.showcase-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 28, 88, 0.15);
}

.showcase-card-icon {
  transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-card-icon {
  transform: scale(1.2) rotate(5deg);
}

/* ─── ENHANCED PROCESS STEPS ─── */
.process-step {
  transition: all 0.4s ease;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  inset: -10px;
  background: var(--gradient-primary);
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.process-step:hover {
  transform: translateY(-8px);
}

.process-step:hover::before {
  opacity: 0.08;
}

.step-dot {
  transition: all 0.3s ease;
}

.process-step:hover .step-dot {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(228, 165, 33, 0.4);
}

/* ─── ENHANCED TESTIMONIAL CARDS ─── */
.testimonial-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 8rem;
  font-family: 'Fraunces', serif;
  color: var(--gold);
  opacity: 0.08;
  line-height: 1;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 28, 88, 0.15);
}

.testimonial-card:hover::after {
  opacity: 0.15;
  transform: scale(1.1);
}

.testimonial-stars {
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-stars {
  transform: scale(1.1);
}

/* ─── ENHANCED WHY POINTS ─── */
.why-point {
  transition: all 0.3s ease;
  padding: 20px;
  margin: -20px;
  border-radius: 12px;
}

.why-point:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(10px);
}

.why-num {
  transition: all 0.3s ease;
}

.why-point:hover .why-num {
  transform: scale(1.1);
  background: var(--gold);
}

/* ─── ENHANCED TOOL TAGS ─── */
.why-tool {
  transition: all 0.3s ease;
  cursor: default;
}

.why-tool:hover {
  transform: translateY(-3px) scale(1.05);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ─── CTA BANNER ENHANCEMENT ─── */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(228, 165, 33, 0.15) 0%, transparent 60%);
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

/* ─── BUTTON RIPPLE EFFECT ─── */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

/* ─── STATS COUNTER GLOW ─── */
.hero-stat .num {
  transition: all 0.3s ease;
}

.hero-stat:hover .num {
  text-shadow: 0 0 20px rgba(228, 165, 33, 0.5);
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.2s;
  opacity: 0;
  z-index: 10;
}

.scroll-indicator-arrow {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator-arrow::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: bounce 1.5s ease-in-out infinite;
}

/* ─── LOADING SHIMMER FOR IMAGES ─── */
.img-loading {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ─── RESPONSIVE ADJUSTMENTS ─── */
@media (max-width: 900px) {
  .hero-shape {
    display: none;
  }

  .hero-floating-icon {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    animation-delay: 0.1s;
  }

  .hero p {
    animation-delay: 0.2s;
  }

  .why-point:hover {
    transform: translateX(0);
  }
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE - FOUNDER SECTION
   ═══════════════════════════════════════════════ */
.founder-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fc 0%, #fff 100%);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.founder-image-wrap {
  position: relative;
}

.founder-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 28, 88, 0.15);
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.founder-image:hover img {
  transform: scale(1.03);
}

.founder-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, #f0b429 100%);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(228, 165, 33, 0.4);
}

.founder-badge-icon {
  font-size: 1.2rem;
}

.founder-experience-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.exp-badge {
  background: var(--navy);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 28, 88, 0.2);
  transition: transform 0.3s ease;
}

.exp-badge:hover {
  transform: translateY(-5px);
}

.exp-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.exp-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.founder-content {
  padding: 20px 0;
}

.founder-content h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.founder-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.founder-journey,
.founder-experience,
.founder-vision {
  margin-bottom: 30px;
}

.founder-journey h3,
.founder-experience h3,
.founder-vision h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-journey h3::before {
  content: '📖';
}

.founder-experience h3::before {
  content: '💼';
}

.founder-vision h3::before {
  content: '🎯';
}

.founder-journey p,
.founder-vision p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.founder-expertise-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.founder-expertise-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.founder-expertise-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.check-icon {
  color: var(--gold);
  font-weight: bold;
  font-size: 1.1rem;
}

/* ABOUT STATS SECTION */
.about-stats-section {
  padding: 60px 0;
  background: var(--navy);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.about-stat-card {
  text-align: center;
  padding: 30px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* TEAM SECTION */
.team-section {
  padding: 80px 0;
  background: #fff;
}

.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 28, 88, 0.9));
  padding: 30px 15px 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-skills span {
  background: var(--gold);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.team-role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-exp {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* AGENCIES SECTION */
.agencies-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.agencies-header {
  text-align: center;
  margin-bottom: 50px;
}

.agencies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.agency-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 28, 88, 0.05);
  transition: all 0.4s ease;
}

.agency-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.agency-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.agency-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.agency-card > p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.agency-list {
  list-style: none;
  padding: 0;
}

.agency-list li {
  padding: 8px 0;
  color: #555;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.agency-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

.agencies-testimonial {
  max-width: 800px;
  margin: 0 auto 50px;
}

.agency-quote {
  background: var(--navy);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

.agency-quote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.agency-quote p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}

.agency-quote-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.agency-quote-author strong {
  color: var(--gold);
}

.agency-quote-author span {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* STATES SERVED */
.states-served {
  text-align: center;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.states-served h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 25px;
}

.states-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.state-tag {
  padding: 10px 20px;
  background: #f5f6fa;
  color: var(--navy);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.state-tag:hover {
  background: var(--navy);
  color: #fff;
}

.state-tag.featured {
  background: var(--navy);
  color: #fff;
}

.state-tag.featured:hover {
  background: var(--gold);
  color: var(--navy);
}

.state-tag.all-states {
  background: linear-gradient(135deg, var(--gold) 0%, #f0b429 100%);
  color: var(--navy);
  font-weight: 700;
}

/* RESPONSIVE - ABOUT PAGE */
@media (max-width: 1200px) {
  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .founder-section {
    padding: 50px 0;
  }

  .founder-content h2 {
    font-size: 2rem;
  }

  .founder-experience-badges {
    flex-wrap: wrap;
  }

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

  .team-grid,
  .agencies-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .agency-quote {
    padding: 30px 20px;
  }

  .agency-quote p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .founder-content h2 {
    font-size: 1.7rem;
  }

  .exp-badge {
    padding: 12px 15px;
  }

  .exp-num {
    font-size: 1.2rem;
  }

  .about-stat-card {
    padding: 20px 10px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════
   WHY US PAGE - ENHANCED STYLES
   ═══════════════════════════════════════════════ */

/* Premium Page Hero */
.page-hero-premium {
  position: relative;
  padding: 140px 0 80px;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 28, 88, 0.94) 0%, rgba(0, 28, 88, 0.88) 50%, rgba(0, 45, 110, 0.92) 100%);
}

.page-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.page-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 165, 33, 0.12) 0%, transparent 70%);
  animation: floatShape 15s ease-in-out infinite;
}

.page-hero-shape-1 {
  width: 350px;
  height: 350px;
  top: -80px;
  right: -80px;
}

.page-hero-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -60px;
  left: -60px;
  animation-delay: -7s;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.page-hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.7;
}

.page-hero-stats {
  display: inline-flex;
  gap: 40px;
  padding: 25px 45px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.page-hero-stat {
  text-align: center;
}

.page-hero-stat .stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.page-hero-stat .stat-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Values Section */
.values-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.values-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3c6e 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold) 0%, #e5b84c 100%);
}

.value-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-list li {
  font-size: 0.82rem;
  color: var(--text-dark);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}

.value-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Enhanced Founder Section */
.founder-section-new {
  padding: 100px 0;
  background: #fff;
}

.founder-grid-new {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: start;
}

.founder-image-card {
  position: relative;
}

.founder-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.founder-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.founder-badge-new {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(228, 165, 33, 0.4);
}

.founder-stats-row {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.founder-stat-box {
  flex: 1;
  background: var(--cream);
  border-radius: 12px;
  padding: 18px 15px;
  text-align: center;
}

.founder-stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

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

.founder-content-col h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.founder-title-new {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 30px;
}

.founder-story {
  margin-bottom: 30px;
}

.founder-story-block {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.story-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(0, 28, 88, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.story-content h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.story-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.founder-expertise h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 15px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-tags span {
  background: var(--cream);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* Enhanced Stats Section */
.about-stats-new {
  padding: 100px 0;
  background: var(--navy);
}

.stats-intro {
  text-align: center;
  margin-bottom: 50px;
}

.stats-intro h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stats-intro p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.stat-card-new {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-new:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(228, 165, 33, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--gold);
}

.stat-number-new {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat-label-new {
  display: block;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
}

/* Enhanced Mission Section */
.mission-section-new {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.mission-text-new {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mission-point {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mission-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.mission-point span {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.mission-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.mission-image img {
  width: 100%;
  display: block;
}

/* Enhanced Team Section */
.team-section-new {
  padding: 100px 0;
  background: #fff;
}

.team-header-new {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card-new {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.team-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.team-image-new {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.team-image-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card-new:hover .team-image-new img {
  transform: scale(1.08);
}

.team-social {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.team-badge-exp {
  background: var(--gold);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.team-info-new {
  padding: 25px;
}

.team-info-new h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.team-role-new {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-desc-new {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tags span {
  background: rgba(0, 28, 88, 0.06);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
}

/* Enhanced Agencies Section */
.agencies-section-new {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #fff 100%);
}

.agencies-header-new {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.agencies-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.agency-card-new {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.agency-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.agency-icon-new {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3c6e 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}

.agency-card-new:hover .agency-icon-new {
  background: linear-gradient(135deg, var(--gold) 0%, #e5b84c 100%);
}

.agency-card-new h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.agency-card-new > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.agency-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agency-list-new li {
  font-size: 0.82rem;
  color: var(--text-dark);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.agency-list-new li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Testimonial New */
.agencies-testimonial-new {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
  position: relative;
}

.testimonial-quote-icon {
  margin-bottom: 20px;
}

.testimonial-text-new {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 25px;
}

.testimonial-author-new {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.author-info {
  text-align: left;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* States Grid New */
.states-served-new {
  text-align: center;
}

.states-served-new h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 25px;
}

.states-grid-new {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.state-tag-new {
  background: #fff;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.state-tag-new:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.state-tag-new.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Experience Section New */
.experience-section-new {
  padding: 100px 0;
  background: #fff;
}

.experience-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.experience-category {
  background: #f8f9fc;
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 25px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.category-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.category-header h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.experience-tags span {
  background: #fff;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.experience-tags span:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* CTA Section New */
.cta-section-new {
  padding: 80px 0;
  background: var(--navy);
}

.cta-content-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

/* ═══════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE RULES
   ═══════════════════════════════════════════════ */

/* ─── LARGE SCREENS (1200px) ─── */
@media (max-width: 1200px) {
  .container,
  .container-wide {
    padding: 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
  }
}

/* ─── TABLET LANDSCAPE (1024px) ─── */
@media (max-width: 1024px) {
  .container,
  .container-wide {
    padding: 0 24px;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  }

  .contact-grid {
    gap: 50px;
  }

  .about-grid {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .process-full-step {
    grid-template-columns: 80px 1fr;
    gap: 24px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .cta-banner {
    padding: 60px 0;
  }
}

/* ─── TABLET PORTRAIT (768px) ─── */
@media (max-width: 768px) {
  .page-hero {
    padding: 100px 0 50px;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-full-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .process-num {
    font-size: 2.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .cta-banner {
    padding: 50px 0;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cta-btns .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-bar-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  footer {
    padding: 50px 0 24px;
  }

  .mission-section {
    padding: 60px 0;
  }
}

/* ─── MOBILE (640px) ─── */
@media (max-width: 640px) {
  .page-hero {
    padding: 90px 0 40px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .agency-quote {
    padding: 25px 16px;
  }

  .agency-quote p {
    font-size: 0.95rem;
  }

  .agency-quote::before {
    font-size: 3rem;
    top: 10px;
    left: 16px;
  }

  .states-served {
    padding: 25px 16px;
  }

  .states-served h3 {
    font-size: 1.2rem;
  }
}

/* ─── SMALL MOBILE (480px) ─── */
@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }

  section {
    padding: 50px 0;
  }

  .page-hero {
    padding: 80px 0 36px;
  }

  .page-hero h1 {
    font-size: 1.35rem;
  }

  .page-hero p {
    font-size: 0.85rem;
  }

  .process-full-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .process-num {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 20px 14px;
  }

  .contact-form h3 {
    font-size: 1.1rem;
  }

  .footer-about {
    font-size: 0.78rem;
  }

  .footer-bottom p {
    font-size: 0.7rem;
  }

  .testimonial-card {
    padding: 22px 18px;
  }

  .testimonial-quote {
    font-size: 0.88rem;
  }

  .about-stat {
    padding: 20px 16px;
  }

  .about-stat .n {
    font-size: 1.4rem;
  }

  .about-visual-stats {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  .work-cta {
    padding: 24px 16px;
  }

  .work-cta p {
    font-size: 0.9rem;
  }

  .comms-tool {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .upwork-badge-block {
    gap: 10px;
    padding: 10px 14px;
  }

  .roi-result-num {
    font-size: 2rem;
  }

  .case-card-header {
    padding: 20px 20px 16px;
  }

  .case-card-body {
    padding: 20px;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner p {
    font-size: 0.9rem;
  }

  .cta-banner {
    padding: 40px 0;
  }

  footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    gap: 24px;
    padding-bottom: 28px;
  }
}

/* ─── EXTRA SMALL MOBILE (360px) ─── */
@media (max-width: 360px) {
  .container,
  .container-wide {
    padding: 0 12px;
  }

  .hero-minimal h1 {
    font-size: 1.3rem;
  }

  .page-hero h1 {
    font-size: 1.2rem;
  }

  .btn-lg {
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  nav {
    padding: 0 14px;
    height: 60px;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .contact-form {
    padding: 16px 12px;
  }

  .testimonial-card {
    padding: 18px 14px;
  }
}

/* ─── RESPONSIVE: Why Us Page ─── */
@media (max-width: 1200px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 1024px) {
  .founder-grid-new {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-image-col {
    max-width: 400px;
    margin: 0 auto;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-visual {
    order: -1;
  }

  .cta-content-new {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-hero-premium {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .page-hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 25px 35px;
    border-radius: 20px;
  }

  .values-section,
  .founder-section-new,
  .about-stats-new,
  .mission-section-new,
  .team-section-new,
  .agencies-section-new,
  .experience-section-new {
    padding: 60px 0;
  }

  .values-grid,
  .team-grid-new,
  .agencies-grid-new {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .testimonial-text-new {
    font-size: 1.15rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .founder-stats-row {
    flex-wrap: wrap;
  }

  .founder-stat-box {
    flex: 1 1 calc(50% - 8px);
  }

  .stats-grid-new {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .agencies-testimonial-new {
    padding: 30px 20px;
  }
}