:root {
  --navy: #0a1628;
  --navy-mid: #112040;
  --navy-light: #1a2f55;
  --gold: #c9923a;
  --gold-light: #e8b060;
  --gold-pale: #f5e6cc;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --text-muted: #8a9ab5;
  --border: rgba(201,146,58,0.2);
  --card-bg: rgba(255,255,255,0.05);
  --transition: 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--navy); background: var(--white); overflow-x: hidden; }

/* ─── GLOBAL REUSABLE ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 80px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.section-title.white { color: var(--white); }
.section-title.gold { color: var(--gold); }
.section-subtitle { font-size: 0.95rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 3rem; line-height: 1.7; text-align: justify; text-align-last: center; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-dark { background: var(--navy); }
.btn-primary { display: inline-block; background: var(--gold); color: var(--white); padding: 0.75rem 2rem; border-radius: 4px; font-size: 0.9rem; font-weight: 600; text-decoration: none; border: 2px solid var(--gold); transition: all var(--transition); cursor: pointer; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,146,58,0.3); }
.btn-secondary { display: inline-block; background: transparent; color: var(--white); padding: 0.75rem 2rem; border-radius: 4px; font-size: 0.9rem; font-weight: 600; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); transition: all var(--transition); cursor: pointer; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-gold { display: inline-block; background: transparent; color: var(--gold); padding: 0.65rem 1.8rem; border-radius: 4px; font-size: 0.9rem; font-weight: 600; text-decoration: none; border: 2px solid var(--gold); transition: all var(--transition); cursor: pointer; }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.card { background: var(--white); border-radius: 12px; padding: 2rem; box-shadow: 0 4px 24px rgba(10,22,40,0.08); transition: all var(--transition); }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(10,22,40,0.15); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.img-placeholder { background: linear-gradient(135deg, #d0d8e8, #b8c5d9); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #7a8fb0; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; }
.rounded-image { border-radius: 16px; overflow: hidden; }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.animate { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.animate { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.animate { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── NAVBAR ─── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--navy); border-bottom: 1px solid var(--border); transition: all var(--transition); }
nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 2rem; max-width: 1280px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-image { width: 50px; height: 50px; object-fit: contain; border-radius: 6px; }
.js-site-logo { opacity: 0; }
.js-site-logo.is-ready { opacity: 1; }
.logo-fallback { display: flex; flex-direction: column; align-items: center; }
.logo-icon { width: 38px; height: 38px; background: var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: var(--white); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.logo-text span { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.65rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.08em; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem; font-weight: 500; padding: 0.5rem 0.8rem; border-radius: 4px; transition: all var(--transition); position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: 2px; left: 0.8rem; right: 0.8rem; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .has-arrow::before { content: '▾'; font-size: 0.6rem; margin-left: 3px; }
.hamburger { display: none; flex-direction: column; gap: 4px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.mobile-menu { display: none; background: var(--navy-mid); padding: 1rem 2rem; border-top: 1px solid var(--border); }
.mobile-menu a { display: block; color: rgba(255,255,255,0.8); text-decoration: none; padding: 0.7rem 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: block; }

/* ─── HERO ─── */
.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg-circle { position: absolute; right: -10%; top: 10%; width: 60vw; height: 60vw; max-width: 700px; max-height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(201,146,58,0.06) 0%, transparent 70%); border: 1px solid rgba(201,146,58,0.08); }
.hero-bg-circle2 { position: absolute; right: 5%; top: 20%; width: 45vw; height: 45vw; max-width: 520px; max-height: 520px; border-radius: 50%; background: transparent; border: 1px solid rgba(201,146,58,0.05); }
.hero-globe { position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%); width: 55vw; max-width: 620px; aspect-ratio: 1; z-index: 0; pointer-events: none; }
.hero-globe-img { width: 100%; height: 100%; object-fit: contain; opacity: 0.15; mix-blend-mode: screen; filter: hue-rotate(200deg) saturate(0.5) brightness(0.65); animation: globeSpin 30s linear infinite; }
@keyframes globeSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (max-width: 768px) { .hero-globe { width: 82vw; max-width: 920px; top: 65%; left: 50%; } }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero-tagline { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,146,58,0.1); border: 1px solid rgba(201,146,58,0.3); border-radius: 20px; padding: 0.35rem 1rem; font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.hero-tagline::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-heading { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.2rem; }
.hero-heading em {
  display: block;
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-top: 0.3rem;
  padding-bottom: 0.32rem;
  color: var(--gold);
  font-size: clamp(2.55rem, 4.35vw, 4.1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 22px rgba(0,0,0,0.18);
}
.hero-heading em::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(46%, 220px);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(201,146,58,0));
  opacity: 0.85;
}
.hero-heading em::after {
  content: none;
}
.hero-para { font-size: 0.97rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 2rem; max-width: 460px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; }
.trust-avatars { display: flex; }
.trust-avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--navy); background: linear-gradient(135deg, #4a7fa5, #2a5a80); margin-left: -10px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700; color: var(--white); }
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.trust-text strong { color: var(--gold); display: block; font-size: 0.9rem; }
.hero-image-wrap { position: relative; }
.hero-img { width: 100%; height: 520px; border-radius: 16px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.hero-img-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 0.85rem; letter-spacing: 0.05em; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: linear-gradient(135deg, #0d1e35 0%, #1a3050 100%); border-radius: 14px; padding: 1.2rem 1.8rem; box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,146,58,0.25); border-top: 2px solid var(--gold); }
.hero-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.01em; }
.hero-badge span { display: block; margin-top: 0.35rem; font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; }

/* ─── ABOUT ─── */
.about { padding: 100px 0 80px; background: var(--off-white); }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 1745 / 951;
  height: auto;
  background-color: #eef2f7;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); box-shadow: 0 0 0 12px rgba(201,146,58,0.2); }
.play-btn:hover { transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 0 0 20px rgba(201,146,58,0.15); }
.play-btn::after { content: ''; border-left: 20px solid var(--white); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 4px; }
.about-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.about-text { font-size: 0.85rem; color: #4a5568; line-height: 1.8; margin-bottom: 1rem; }
.js-about-title > *,
.about-text > * { margin: 0; }
.about-text p + p,
.about-text ul + p,
.about-text ol + p { margin-top: 0.75rem; }
.about-text ul,
.about-text ol { padding-left: 1.2rem; }
.about-bullets { display: flex; flex-direction: column; gap: 0.5rem; margin: 1rem 0; }
.about-bullet { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: #4a5568; }
.about-bullet::before { content: '✦'; color: var(--gold); font-size: 0.65rem; flex-shrink: 0; }
.read-more { color: var(--gold); font-weight: 600; font-size: 0.88rem; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color var(--transition); }
.read-more:hover { border-color: var(--gold); }

/* ─── OUR SERVICES ─── */
.services { padding: 100px 0; background: var(--white); }
.services-carousel { position: relative; max-width: 100%; overflow: hidden; margin-top: 3rem; }
.services-track { display: flex; gap: 2rem; transition: transform 0.5s ease; }
.service-card { flex: 0 0 350px; background: var(--white); border-radius: 16px; box-shadow: 0 8px 32px rgba(10,22,40,0.08); overflow: hidden; transition: all var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(10,22,40,0.15); }
.service-img { width: 100%; height: 200px; background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.service-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(201,146,58,0.1) 0%, transparent 100%); }
.service-img-inner { position: relative; z-index: 1; color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; text-align: center; padding: 0 1rem; }
.service-body { padding: 2rem; }
.service-body h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.service-body p { font-size: 0.9rem; color: #6a7a90; line-height: 1.7; margin-bottom: 1.5rem; text-align: justify; }
.services-nav { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 3rem; }
.services-arrow { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--gold); background: transparent; color: var(--gold); font-size: 1.2rem; font-weight: 700; cursor: pointer; transition: all var(--transition); display: flex; align-items: center; justify-content: center; }
.services-arrow:hover { background: var(--gold); color: var(--white); transform: scale(1.1); }
.services-dots { display: flex; gap: 0.5rem; }
.services-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(201,146,58,0.3); cursor: pointer; transition: all var(--transition); }
.services-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── KEY HIGHLIGHTS ─── */
.highlights { padding: 80px 0; position: relative; background: var(--navy-light); overflow: hidden; }
.highlights-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%); }
.highlights-overlay { position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.highlights .container { position: relative; z-index: 1; }
.highlight-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,146,58,0.2); border-radius: 12px; padding: 2rem; text-align: center; transition: all var(--transition); }
.highlight-card:hover { background: rgba(201,146,58,0.08); border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.highlight-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); border: 1px solid rgba(255,255,255,0.2); box-shadow: 0 12px 24px rgba(201,146,58,0.22); color: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; font-size: 1.4rem; font-weight: 700; }
.highlight-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.highlight-text { font-size: 0.87rem; color: rgba(255,255,255,0.68); line-height: 1.7; text-align: left; }

/* ─── SERVICES CTA ─── */
.services-cta { padding: 60px 0; background: var(--off-white); border-top: 1px solid rgba(10,22,40,0.08); border-bottom: 1px solid rgba(10,22,40,0.08); }
.services-cta .section-title { color: var(--navy); margin-bottom: 1rem; }

/* ─── LEGAL PROCESS ─── */
.legal-process { padding: 80px 0; background: var(--white); }
.process-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(10,22,40,0.07); transition: all var(--transition); }
.process-card:hover { box-shadow: 0 12px 40px rgba(10,22,40,0.14); transform: translateY(-5px); }
.process-img { height: 200px; background: linear-gradient(135deg, #c8d8e8, #a0b8cc); display: flex; align-items: center; justify-content: center; color: #7090a8; font-size: 0.8rem; letter-spacing: 0.05em; }
.process-body { padding: 1.5rem; }
.process-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.process-body p,
.process-body .process-text { font-size: 0.85rem; color: #6a7a90; line-height: 1.7; margin-bottom: 1rem; text-align: justify; }
.process-body .process-text p,
.highlight-text p { margin: 0 0 0.75rem; }
.process-body .process-text p:last-child,
.highlight-text p:last-child { margin-bottom: 0; }
.learn-more { color: var(--gold); font-size: 0.85rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--transition); }
.learn-more:hover { gap: 0.7rem; }

/* ─── WHY CHOOSE US ─── */
.why-us { padding: 80px 0; background: var(--off-white); }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: #4a5568; line-height: 1.5; }
.check-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-dot::after { content: '✓'; color: var(--white); font-size: 0.6rem; font-weight: 700; }
.why-img { width: 100%; height: 420px; }

/* ─── FOUNDERS ─── */
.founders { padding: 80px 0; background: var(--white); }
.founders-layout { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.founder-text { padding: 1rem; }
.founder-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.founder-role { font-size: 0.8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.founder-bio { font-size: 0.85rem; color: #5a6a80; line-height: 1.8; text-align: justify; }
.founder-quote { border-left: 3px solid var(--gold); padding-left: 1rem; margin: 1rem 0; font-style: italic; font-size: 0.88rem; color: #6a7a90; }
.founders-images { display: flex; gap: 1rem; align-items: flex-end; }
.founder-img { width: 160px; height: 280px; border-radius: 12px; overflow: hidden; }
.founder-img.tall { height: 280px; }
.founder-img-inner { width: 100%; height: 100%; background: linear-gradient(160deg, #c8d8e8 0%, #a0b8cc 100%); display: flex; align-items: center; justify-content: center; color: #8090a8; font-size: 0.75rem; }

/* ─── LOCATIONS ─── */
.locations { padding: 80px 0; background: var(--navy); }
.location-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(201,146,58,0.15); border-radius: 12px; padding: 2rem 1.5rem; transition: all var(--transition); display: flex; flex-direction: column; }
.location-card:hover { background: rgba(201,146,58,0.08); border-color: var(--gold); box-shadow: 0 0 30px rgba(201,146,58,0.15); }
.location-icon { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 12px 24px rgba(201,146,58,0.22); color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.2rem; font-weight: 700; }
.location-city { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.location-addr { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 0.5rem; }
.location-phone { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin-bottom: 0.45rem; }
.location-email { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.74); text-decoration: none; overflow-wrap: anywhere; margin-bottom: 1.2rem; transition: color var(--transition); }
.location-email:hover { color: var(--gold-light); }
.location-card .btn-outline-gold { font-size: 0.82rem; padding: 0.5rem 1.2rem; margin-top: auto; display: inline-block; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 80px 0; background: var(--white); }
.testimonial-wrap { max-width: 800px; margin: 0 auto; }
.testimonial-card { background: var(--white); border-radius: 16px; padding: 3rem; box-shadow: 0 8px 40px rgba(10,22,40,0.1); text-align: center; border: 1px solid rgba(10,22,40,0.06); position: relative; }
.testimonial-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 8rem; color: rgba(201,146,58,0.1); position: absolute; top: -20px; left: 2rem; line-height: 1; }
.client-img { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #4a7fa5, #2a5a80); margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.2rem; border: 3px solid var(--gold-pale); }
.client-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.client-role { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
.testimonial-text { font-size: 0.95rem; color: #5a6a80; line-height: 1.9; font-style: italic; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.t-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); color: var(--navy); background: var(--white); }
.t-arrow:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.t-dots { display: flex; gap: 6px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: #d0d8e8; cursor: pointer; transition: all var(--transition); }
.t-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ─── CLIENTS ─── */
.clients-section { padding: 60px 0; background: var(--off-white); }
.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(10,22,40,0.08); border: 1px solid rgba(10,22,40,0.08); border-radius: 8px; overflow: hidden; }
.client-logo { background: var(--white); padding: 2rem 1.5rem; display: flex; align-items: center; justify-content: center; filter: grayscale(1) opacity(0.5); transition: all var(--transition); min-height: 90px; }
.client-logo:hover { filter: grayscale(0) opacity(1); }
.client-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); letter-spacing: -0.02em; }

/* ─── FAQ ─── */
.faq { padding: 80px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 3rem; }
.faq-item { border-bottom: 1px solid rgba(10,22,40,0.1); padding: 1.2rem 0; }
.faq-question { display: flex; align-items: center; justify-content: space-between; cursor: pointer; gap: 1rem; }
.faq-question h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); line-height: 1.5; flex: 1; }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--gold-pale); border: 1px solid rgba(201,146,58,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 1rem; transition: all var(--transition); font-weight: 300; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer p { font-size: 0.85rem; color: #6a7a90; line-height: 1.8; padding-top: 0.8rem; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ─── CONTACT ─── */
.contact { padding: 80px 0; background: var(--navy-mid); position: relative; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); opacity: 0.7; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.contact-left { }
.contact-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.contact-left p { font-size: 0.93rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.contact-form-card { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.7rem 1rem; border: 1px solid #d0d8e8; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.87rem; color: var(--navy); transition: border-color var(--transition); outline: none; background: #f8fafc; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FOOTER ─── */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin: 1rem 0; max-width: 280px; }
.footer-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; margin-bottom: 1rem; }
.footer-logo-fallback { display: none; }
.social-icons { display: flex; gap: 0.7rem; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; font-weight: 700; transition: all var(--transition); }
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ─── SERVICES RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-track { gap: 1.5rem; }
  .service-card { flex: 0 0 320px; }
}
@media (max-width: 768px) {
  .services-track { gap: 1rem; }
  .service-card { flex: 0 0 100%; }
  .services-nav { gap: 1rem; }
  .services-arrow { width: 40px; height: 40px; font-size: 1rem; }
}
@media (max-width: 640px) {
  .services-carousel { margin-top: 2rem; }
  .service-card { flex: 0 0 100%; }
  .service-img { height: 160px; }
  .service-body { padding: 1.5rem; }
  .service-body h3 { font-size: 1.1rem; }
  .services-nav { margin-top: 2rem; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .founders-layout { grid-template-columns: 1fr; }
  .founders-images { justify-content: center; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-heading {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }
  .hero-heading em {
    font-size: clamp(2.35rem, 10.5vw, 3.25rem);
    line-height: 1.06;
  }
  .hero-img {
    height: 360px;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
  }
  .hero-img-inner {
    width: 100%;
    height: 100%;
  }
  .hero-badge { display: none; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .founders-images { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
}

/* Visual polish layer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,22,40,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10,22,40,0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(248,246,242,0.95), rgba(255,255,255,0.95));
  background-size: 72px 72px, 72px 72px, 100% 100%;
}

nav {
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(201,146,58,0.24);
}

.hero,
.about,
.services,
.highlights,
.legal-process,
.why-us,
.founders,
.locations,
.testimonials,
.clients-section,
.contact,
footer {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(201,146,58,0.14), transparent 28%),
    linear-gradient(295deg, rgba(88,126,168,0.18), transparent 38%);
  opacity: 0.74;
  animation: surfaceDrift 18s ease-in-out infinite alternate;
}

.hero-bg-circle {
  animation: slowFloat 12s ease-in-out infinite alternate;
}

.hero-bg-circle2 {
  animation: slowFloat 14s ease-in-out infinite alternate-reverse;
}

.hero-tagline::before {
  box-shadow: 0 0 0 6px rgba(201,146,58,0.15);
  animation: pulseDot 2.4s ease-in-out infinite;
}


.about {
  background: linear-gradient(180deg, var(--off-white), #ffffff);
}

.services,
.legal-process,
.clients-section {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.why-us,
.faq,
.founders {
  background: linear-gradient(180deg, var(--off-white), #ffffff);
}

.about::before,
.why-us::before,
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(201,146,58,0.08) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(10,22,40,0.04) 0 1px, transparent 1px);
  background-size: 42px 42px, 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.services::before,
.legal-process::before,
.clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(201,146,58,0.08) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(180deg, rgba(10,22,40,0.045) 0 1px, transparent 1px 80px);
  opacity: 0.38;
}

.services .container,
.legal-process .container,
.clients-section .container,
.about .container,
.why-us .container,
.testimonials .container,
.locations .container,
footer .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-wrap: balance;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin-top: 0.8rem;
  background: linear-gradient(90deg, var(--gold), rgba(201,146,58,0));
}

.text-center.section-title::after,
.section-title.text-center::after,
.services-cta .section-title::after,
.locations-title::after {
  margin-left: auto;
  margin-right: auto;
}

.about-img,
.why-img,
.founder-img {
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(10,22,40,0.14);
  border: 1px solid rgba(255,255,255,0.8);
}

.btn-primary,
.btn-secondary,
.btn-outline-gold {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-outline-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-outline-gold:hover::before {
  transform: translateX(120%);
}

.service-card,
.process-card,
.highlight-card,
.location-card,
.testimonial-card,
.contact-form-card {
  position: relative;
  overflow: hidden;
}

.service-card,
.process-card {
  border: 1px solid rgba(10,22,40,0.06);
  background: rgba(255,255,255,0.9);
}

.service-card:hover,
.process-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 24px 70px rgba(10,22,40,0.17);
}

.service-card::after,
.process-card::after,
.highlight-card::after,
.location-card::after,
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.16), transparent);
  opacity: 0;
  transform: translateX(-80%);
  transition: opacity 0.35s ease, transform 0.65s ease;
}

.service-card:hover::after,
.process-card:hover::after,
.highlight-card:hover::after,
.location-card:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.service-img,
.process-img {
  position: relative;
  overflow: hidden;
}

.service-img::after,
.process-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255,255,255,0.2) 45% 46%, transparent 47%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
  opacity: 0.7;
}

.highlights-bg {
  background: linear-gradient(135deg, var(--navy) 0%, #163761 50%, var(--navy) 100%);
  animation: surfaceDrift 16s ease-in-out infinite alternate;
}

.highlight-card,
.location-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  backdrop-filter: blur(8px);
}

.highlight-card:hover,
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 46px rgba(0,0,0,0.34);
}

.locations::before,
.contact::before,
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(201,146,58,0.13), transparent 28%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 20px);
  opacity: 0.72;
}

.check-item {
  padding: 0.75rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(10,22,40,0.055);
  box-shadow: 0 8px 24px rgba(10,22,40,0.045);
}

.founder-img {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.founder-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(10,22,40,0.18);
}

.testimonial-card {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 18px 56px rgba(10,22,40,0.12);
}

.client-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.faq-item {
  transition: background-color var(--transition), padding var(--transition);
}

.faq-item.open {
  background: rgba(201,146,58,0.055);
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 10px;
}

.contact-form-card {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
  border: 1px solid rgba(255,255,255,0.75);
}

@keyframes surfaceDrift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 70px -40px, -40px 80px, 0 0; }
}

@keyframes slowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-18px, 16px, 0) scale(1.04); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 6px rgba(201,146,58,0.14); }
  50% { transform: scale(1.18); box-shadow: 0 0 0 11px rgba(201,146,58,0.05); }
}

@keyframes shimmerSweep {
  0%, 45% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Enhanced presentation layer */
:root {
  --ink-glow: rgba(63,101,146,0.18);
  --gold-glow: rgba(201,146,58,0.28);
}

.hero {
  isolation: isolate;
}


.hero-heading {
  text-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.hero-para {
  border-left: 2px solid rgba(201,146,58,0.38);
  padding-left: 1rem;
}

.hero-trust {
  padding: 0.75rem 0.9rem;
  width: fit-content;
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
}

.hero-badge {
  animation: badgeFloat 4.8s ease-in-out infinite;
}

.section-title {
  position: relative;
}

.section-title.white::after {
  background: linear-gradient(90deg, var(--gold-light), rgba(232,176,96,0));
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.about-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.text-center.about-label,
.about-label.text-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.text-center.about-label::after,
.about-label.text-center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.about-img-wrap::before,
.founders-images::before {
  content: '';
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(201,146,58,0.18), rgba(63,101,146,0.12), transparent 65%);
  filter: blur(2px);
}

.hero-image-wrap::before {
  content: none;
}

.service-card,
.process-card,
.testimonial-card,
.contact-form-card {
  backdrop-filter: blur(10px);
}

.service-card::before,
.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(201,146,58,0.42), rgba(255,255,255,0.4), rgba(63,101,146,0.22));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.62;
}

.service-body h3,
.process-body h3,
.highlight-title,
.location-city {
  text-wrap: balance;
}

.service-body h3::after,
.process-body h3::after {
  content: '';
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.service-img-inner {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(10,22,40,0.36);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

.highlight-icon,
.location-icon,
.client-img,
.check-dot {
  position: relative;
}

.highlight-icon::before,
.location-icon::before,
.client-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(201,146,58,0.28);
  animation: ringPulse 3.2s ease-in-out infinite;
}

.process-card:nth-child(2),
.location-card:nth-child(2) {
  transform: translateY(-10px);
}

.process-card:nth-child(2):hover,
.location-card:nth-child(2):hover {
  transform: translateY(-16px);
}

.process-card {
  counter-increment: process-step;
}

.process-body {
  position: relative;
}

.process-body::before {
  content: counter(process-step, decimal-leading-zero);
  position: absolute;
  right: 1.5rem;
  top: -1.15rem;
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1;
  color: rgba(201,146,58,0.13);
  font-weight: 700;
}

.grid-3,
.grid-4 {
  align-items: stretch;
}

.why-img {
  position: relative;
  overflow: hidden;
}

.why-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.06), transparent 45%, rgba(201,146,58,0.12));
  pointer-events: none;
}

.check-item {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.check-item:hover {
  transform: translateX(4px);
  border-color: rgba(201,146,58,0.22);
  box-shadow: 0 14px 30px rgba(10,22,40,0.08);
}

.founder-text {
  border-radius: 18px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(10,22,40,0.055);
  box-shadow: 0 12px 34px rgba(10,22,40,0.06);
}

.founder-quote {
  border-radius: 0 12px 12px 0;
  background: rgba(201,146,58,0.055);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.locations .grid-4 {
  perspective: 1000px;
}

.location-card:hover {
  transform: translateY(-8px) rotateX(2deg);
}

.location-email {
  padding: 0.35rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.testimonial-card {
  outline: 1px solid rgba(201,146,58,0.12);
  outline-offset: -10px;
}

.testimonial-card::before {
  animation: quoteFloat 5s ease-in-out infinite;
}

.clients-grid {
  box-shadow: 0 18px 45px rgba(10,22,40,0.08);
}

.client-logo {
  position: relative;
}

.client-logo::after {
  content: '';
  position: absolute;
  inset: auto 20% 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.client-logo:hover::after {
  transform: scaleX(1);
}

.faq-question {
  border-radius: 10px;
  padding: 0.35rem 0.4rem;
  transition: background-color var(--transition);
}

.faq-question:hover {
  background: rgba(201,146,58,0.06);
}

.contact-left {
  padding: 1.25rem;
  border-left: 1px solid rgba(201,146,58,0.25);
}

.form-group input,
.form-group select,
.form-group textarea {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 4px rgba(201,146,58,0.12);
}

.footer-grid {
  padding: 1.4rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.12); opacity: 0.24; }
}

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

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

@media (max-width: 768px) {
  .hero-content::before,
  .about-img-wrap::before,
  .hero-image-wrap::before,
  .founders-images::before {
    display: none;
  }

  .hero-para {
    border-left: 0;
    padding-left: 0;
  }

  .hero-trust {
    width: 100%;
  }

  .process-card:nth-child(2),
  .location-card:nth-child(2) {
    transform: none;
  }

  .process-card:nth-child(2):hover,
  .location-card:nth-child(2):hover {
    transform: translateY(-8px);
  }

  .footer-grid {
    padding: 1rem;
  }
}

/* Mobile hero responsiveness fixes */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding-top: 98px;
    padding-bottom: 48px;
  }

  .hero .container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-content {
    width: 100%;
    gap: 1.6rem;
  }

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

  .hero-tagline {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    padding: 0.55rem 0.85rem;
    font-size: clamp(0.68rem, 3.2vw, 0.78rem);
    line-height: 1.45;
    letter-spacing: 0.08em;
    white-space: normal;
    overflow-wrap: anywhere;
    align-items: flex-start;
  }

  .hero-heading {
    max-width: 100%;
    font-size: clamp(2rem, 10.8vw, 3.05rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-heading em {
    width: auto;
    max-width: 100%;
    font-size: clamp(2.05rem, 12vw, 3.15rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-heading em::before {
    width: min(62%, 190px);
  }

  .hero-para {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .hero-ctas {
    width: 100%;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-image-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-img {
    width: 100%;
    height: auto;
    min-height: 330px;
    aspect-ratio: 4 / 3;
    transform: none;
    border-radius: 18px;
  }

  .hero-img-inner {
    width: 100%;
    height: 100%;
  }

  .hero-globe {
    width: 92vw;
    max-width: none;
    top: 72%;
    opacity: 0.75;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-top: 90px;
  }

  .hero .container {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .hero-heading {
    font-size: clamp(1.86rem, 10.5vw, 2.72rem);
  }

  .hero-heading em {
    font-size: clamp(1.95rem, 11.5vw, 2.86rem);
  }

  .hero-img {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-heading em {
    white-space: nowrap;
    font-size: clamp(1.55rem, 8.2vw, 2.2rem);
    line-height: 1.08;
  }
}
