/* ============================================================
   CAERUS STRATEGIES — Premium Stylesheet
   Clean white-dominant design with luxury accents
   Colors: Navy #0A1628 · Gold #C9A96E · White #FFFFFF
   Fonts: Cormorant Garamond (headings) · DM Sans (body)
   ============================================================ */

/* --- Self-Hosted Fonts (China-compatible, no Google dependency) --- */

/* Cormorant Garamond — Regular */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-400-normal.ttf') format('truetype');
}

/* Cormorant Garamond — Regular Italic */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-400-italic.ttf') format('truetype');
}

/* Cormorant Garamond — Medium */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-500-normal.ttf') format('truetype');
}

/* Cormorant Garamond — Medium Italic */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-500-italic.ttf') format('truetype');
}

/* Cormorant Garamond — SemiBold */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-600-normal.ttf') format('truetype');
}

/* Cormorant Garamond — Bold */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/cormorant-garamond-700-normal.ttf') format('truetype');
}

/* DM Sans — Regular */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-400-normal.ttf') format('truetype');
}

/* DM Sans — Medium */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-500-normal.ttf') format('truetype');
}

/* DM Sans — SemiBold */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-600-normal.ttf') format('truetype');
}

/* DM Sans — Bold */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/dm-sans-700-normal.ttf') format('truetype');
}

/* --- Custom Properties --- */
:root {
  --navy: #0A1628;
  --navy-light: #162036;
  --navy-90: rgba(10,22,40,0.9);
  --navy-70: rgba(10,22,40,0.7);
  --navy-50: rgba(10,22,40,0.5);
  --gold: #C9A96E;
  --gold-light: #D4BA85;
  --gold-dark: #B8954F;
  --gold-gradient: linear-gradient(135deg, #C9A96E 0%, #E8D5A8 50%, #C9A96E 100%);
  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --cream: #F5F0E8;
  --gray-50: #F8F7F4;
  --gray-100: #EDEAE3;
  --gray-200: #DDD8CE;
  --gray-300: #B5AFA3;
  --gray-400: #8A8278;
  --gray-500: #5C564E;
  --text-dark: #0A1628;
  --text-body: #3D3D3D;
  --text-muted: #71706E;
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --container: 1240px;
  --container-narrow: 860px;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.04);
  --shadow-md: 0 8px 30px rgba(10,22,40,0.07);
  --shadow-lg: 0 16px 60px rgba(10,22,40,0.10);
  --shadow-gold: 0 8px 30px rgba(201,169,110,0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 600; }
p { margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.9;
}
blockquote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--navy);
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
  max-width: 600px;
}
blockquote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* --- Layout --- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--container-narrow); }
section { padding: 7rem 0; }

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  border: none;
  margin: 1.5rem 0;
}
.gold-divider--center { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 50px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn--gold {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  border: 1.5px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(3px); }

.text-link {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.text-link:hover { border-bottom-color: var(--gold); gap: 0.75rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all var(--transition);
}
.nav--dark {
  background: linear-gradient(180deg, rgba(10,22,40,0.65) 0%, rgba(10,22,40,0.3) 60%, transparent 100%);
}
.nav--dark .nav__link, .nav--dark .nav__logo-name { color: var(--white); }
.nav--dark .nav__logo-sub { color: var(--gold); }
.nav--dark .nav__lang a { color: rgba(255,255,255,0.55); }
.nav--dark .nav__lang a:hover, .nav--dark .nav__lang a.active { color: var(--white); }
.nav--dark .nav__toggle span { background: var(--white); }

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  box-shadow: 0 1px 30px rgba(10,22,40,0.06);
}
.nav.scrolled .nav__link { color: var(--text-body); }
.nav.scrolled .nav__link:hover, .nav.scrolled .nav__link.active { color: var(--navy); }
.nav.scrolled .nav__logo-name { color: var(--navy); }
.nav.scrolled .nav__logo-sub { color: var(--gold); }
.nav.scrolled .nav__lang a { color: var(--gray-400); }
.nav.scrolled .nav__toggle span { background: var(--navy); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}
.nav__logo img { height: 52px; width: auto; }
.nav__logo-text { display: flex; flex-direction: column; }
.nav__logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.1em;
  line-height: 1.1;
}
.nav__logo-sub {
  font-size: 0.58rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__link:hover, .nav__link.active { color: var(--navy); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 1.5rem; }
.nav__lang { font-size: 0.72rem; display: flex; gap: 0.1rem; letter-spacing: 0.04em; font-weight: 500; }
.nav__lang a { color: var(--gray-400); transition: color var(--transition); padding: 0.2rem 0.45rem; border-radius: 3px; }
.nav__lang a:hover { color: var(--navy); }
.nav__lang a.active { color: var(--gold); font-weight: 700; }
.nav__cta { font-size: 0.78rem; padding: 0.55rem 1.4rem; border-radius: 50px; }

/* Mobile Menu Toggle */
.nav__toggle { display: none; flex-direction: column; gap: 5px; z-index: 1001; padding: 4px; }
.nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--navy); transition: all var(--transition); border-radius: 2px; }
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu overlay — sits inside nav, fills viewport */
.nav__mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-family: var(--font-heading); font-size: 2rem; color: var(--navy); font-weight: 600; }
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-lang { display: flex; gap: 1rem; margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); }
.nav__mobile-lang a { font-family: var(--font-body); font-size: 0.85rem !important; font-weight: 500 !important; color: var(--gray-400) !important; letter-spacing: 0.06em; }
.nav__mobile-lang a:hover { color: var(--gold) !important; }
.nav__mobile-lang a.active { color: var(--gold) !important; font-weight: 700 !important; }

/* When menu is open: nav becomes full-screen white overlay */
.nav.menu-open {
  background: var(--white) !important;
  backdrop-filter: none !important;
  height: 100vh;
  overflow: hidden;
  padding-top: 1.2rem !important;
}
.nav.menu-open .nav__inner { position: relative; z-index: 2; }
.nav.menu-open .nav__logo img { filter: none !important; }
.nav.menu-open .nav__logo-name { color: var(--navy) !important; }
.nav.menu-open .nav__logo-sub { color: var(--gold) !important; }

/* Toggle always above mobile menu */
.nav__toggle { z-index: 10; position: relative; }
.nav__toggle.open span { background: var(--navy) !important; }

/* ============================================================
   HERO — Full-screen image background
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Gradient overlay on hero image */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.55) 50%, rgba(10,22,40,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 8rem 0 6rem;
}
.hero__content .eyebrow { color: var(--gold-light); }
.hero__content .eyebrow::before { background: var(--gold-light); }
.hero__content h1 { color: var(--white); margin-bottom: 1.5rem; font-weight: 700; }
.hero__content h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero__actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* Office Bar */
.hero__offices {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 3;
}
.hero__offices-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.hero__office {
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__office:last-child { border-right: none; }
.hero__office-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  position: relative;
}
.hero__office-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
.hero__office-dot--upcoming { background: rgba(255,255,255,0.4); }
.hero__office-dot--upcoming::after { border-color: rgba(255,255,255,0.3); }
.hero__office-dot--global { background: none; border: 1.5px solid var(--gold); }
.hero__office-dot--global::after { display: none; }
.hero__office-name { font-size: 0.82rem; font-weight: 600; color: var(--white); line-height: 1.3; }
.hero__office-role { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(2.2); opacity: 0; }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 12rem 0 6rem;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.6) 50%, rgba(10,22,40,0.4) 100%);
}
.page-hero__content { position: relative; z-index: 2; max-width: 650px; }
.page-hero__content .eyebrow { color: var(--gold-light); }
.page-hero__content .eyebrow::before { background: var(--gold-light); }
.page-hero__content h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero__content p { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.9; }

/* ============================================================
   SERVICES COMPARE PANEL
   ============================================================ */
.services-compare { padding: 5rem 0 2rem; background: var(--white); }
.services-compare__header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.services-compare__header .eyebrow { justify-content: center; }
.services-compare__header h2 { color: var(--navy); margin-bottom: 0.75rem; }
.services-compare__header p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }
.services-compare__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.services-compare__col {
  background: var(--gray-50);
  padding: 2.5rem 2.25rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.services-compare__col:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.services-compare__label {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 0.75rem;
}
.services-compare__title {
  font-family: var(--font-heading); font-size: 1.55rem; line-height: 1.25;
  color: var(--navy); margin-bottom: 1rem;
}
.services-compare__intro {
  font-size: 0.95rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 1.25rem;
}
.services-compare__list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.services-compare__list li {
  font-size: 0.92rem; color: var(--text-body); line-height: 1.6;
  padding-left: 1.4rem; position: relative; margin-bottom: 0.6rem;
}
.services-compare__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.services-compare__col .text-link { margin-top: auto; }
.services-compare__divider {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 300;
  color: var(--gold); padding: 0 0.5rem;
  position: relative;
}
.services-compare__divider span {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(201,169,110,0.3);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .services-compare__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .services-compare__divider { padding: 0.25rem 0; }
}

/* ============================================================
   LEGAL / PROSE PAGES (Privacy, Terms)
   ============================================================ */
.legal { padding: 5rem 0 6rem; background: var(--white); }
.legal__inner { max-width: 800px; margin: 0 auto; }
.legal__updated {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3); padding: 0.5rem 1rem;
  border-radius: 999px; margin-bottom: 2rem;
}
.legal h2 {
  font-size: 1.6rem; margin: 3rem 0 1rem; color: var(--navy);
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--gray-100);
}
.legal h2:first-of-type { margin-top: 0.5rem; }
.legal h3 {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--navy); margin: 1.75rem 0 0.5rem; letter-spacing: 0.02em;
}
.legal p, .legal li {
  font-size: 0.97rem; line-height: 1.8; color: var(--text-body);
  margin-bottom: 1rem;
}
.legal ul, .legal ol { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.4); transition: all var(--transition); }
.legal a:hover { color: var(--navy); border-bottom-color: var(--navy); }
.legal strong { color: var(--navy); }
.legal__contact-card {
  background: var(--gray-50); border-left: 3px solid var(--gold);
  padding: 1.5rem 1.75rem; margin: 1.5rem 0; border-radius: 4px;
}
.legal__contact-card p { margin-bottom: 0.4rem; }

/* ============================================================
   TRUST / STATS BAR
   ============================================================ */
.trust-bar { background: var(--white); padding: 5rem 0; }
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.trust-bar__item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.trust-bar__item:hover { background: var(--gray-50); }
.trust-bar__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-bar__number span { color: var(--gold); }
.trust-bar__label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.trust-bar__text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SPLIT SECTIONS — Image + Text (alternating)
   ============================================================ */
.split { padding: 7rem 0; }
.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split__grid--reverse .split__image { order: 2; }
.split__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.split__image:hover img { transform: scale(1.03); }
/* Gold accent border */
.split__image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.split__text .eyebrow { margin-bottom: 0.75rem; }
.split__text h2 { margin-bottom: 1rem; }
.split__text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; }

/* ============================================================
   PROCESS / STEPS — Premium cards
   ============================================================ */
.process { padding: 7rem 0; }
.process__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; margin-top: 3.5rem; }
.process__step {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.process__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.process__step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.process__step:hover::before { transform: scaleX(1); }
.process__step-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.4;
}
.process__step h4 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--navy); }
.process__step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* Full steps (How It Works page) */
.steps-full { padding: 5rem 0; }
.steps-full__list { max-width: 800px; margin: 3rem auto 0; }
.step-full {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.step-full:last-child { border-bottom: none; }
.step-full__num {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.35;
}
.step-full h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.step-full p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin: 0; }

/* ============================================================
   CLIENTS STRIP
   ============================================================ */
.clients { padding: 4.5rem 0; background: var(--white); }

/* Marquee / rolling logos */
.clients-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.clients-marquee__track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.clients-marquee__track:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Static fallback */
.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.clients__logo { height: 65px; width: auto; filter: grayscale(100%) opacity(0.4); transition: all var(--transition); flex-shrink: 0; object-fit: contain; }
.clients__logo:hover { filter: grayscale(0%) opacity(1); }
.clients__note { text-align: center; font-size: 0.8rem; color: var(--gray-300); margin-top: 1.5rem; font-style: italic; }

/* ============================================================
   CTA SECTION — Image background
   ============================================================ */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-section__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.75) 100%);
}
.cta-section__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.cta-section h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-section p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-section__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}
.cta-section__contact a { color: rgba(255,255,255,0.4); }
.cta-section__contact a:hover { color: var(--gold); }
.cta-section__phones { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-division { padding: 5rem 0; }
.services-division + .services-division { border-top: 1px solid var(--gray-100); }
.services-division__label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem;
}
.services-division__tagline {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600; color: var(--navy); margin-bottom: 1rem;
}
.services-division__intro { color: var(--text-muted); max-width: 600px; margin-bottom: 2.5rem; font-size: 0.95rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  padding: 2.25rem 2rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); background: rgba(201,169,110,0.08); padding: 0.3rem 0.75rem;
  border-radius: 50px; display: inline-block; margin-bottom: 1.25rem;
}
.service-card h4 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--navy); }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

/* Sectors */
.sectors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.sector-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
}
.sector-item:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sector-item__icon { width: 36px; height: 36px; color: var(--gold); flex-shrink: 0; }
.sector-item__name { font-weight: 600; font-size: 0.95rem; color: var(--navy); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
/* King & Knight */
.model { padding: 7rem 0; }
.model__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.model__card {
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.model__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.model__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
}
.model__card--bg {
  background-repeat: no-repeat;
  background-size: 70% auto;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* King card — chess piece on the left */
.model__card--bg:first-child {
  background-position: -10% center;
}
/* Knight card — chess piece on the right */
.model__card--bg:last-child {
  background-position: 110% center;
}
.model__card--bg::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  z-index: 1;
  pointer-events: none;
}
/* King: gradient from right (text side) to left (image side) */
.model__card--bg:first-child::after {
  background: linear-gradient(to left, var(--white) 15%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.5) 70%, rgba(255,255,255,0.25) 100%);
}
/* Knight: gradient from left (text side) to right (image side) */
.model__card--bg:last-child::after {
  background: linear-gradient(to right, var(--white) 15%, rgba(255,255,255,0.9) 40%, rgba(255,255,255,0.5) 70%, rgba(255,255,255,0.25) 100%);
}
/* Knight card: align text to the left */
.model__card--bg:last-child { text-align: left; }
.model__card--bg > * { position: relative; z-index: 2; }
.model__card-icon { width: 56px; height: 56px; margin-bottom: 1.5rem; color: var(--gold); }
.model__card h3 { margin-bottom: 0.5rem; }
.model__card-role { font-size: 0.82rem; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.model__card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin: 0; }

/* Timeline */
.timeline { padding: 5rem 0; }
.timeline__list { position: relative; max-width: 700px; margin: 3rem auto 0; }
.timeline__list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--gray-200));
}
.timeline__item { padding-left: 72px; position: relative; margin-bottom: 3rem; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  z-index: 1;
  box-shadow: 0 0 0 4px var(--white);
}
.timeline__year { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.25rem; }
.timeline__title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
.timeline__text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

/* Mission & Vision */
.mission-vision { padding: 5rem 0; }
.mission-vision__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
.mission-vision__item {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}
.mission-vision__item h3 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.mission-vision__item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin: 0; }

/* Audience */
.audience__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.audience__card {
  padding: 2.25rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
}
.audience__card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.audience__card h4 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--navy); }
.audience__card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { padding: 5rem 0; }
.faq__list { max-width: 760px; margin: 2.5rem auto 0; }
.faq__item { border-bottom: 1px solid var(--gray-100); }
.faq__question {
  width: 100%; text-align: left; padding: 1.4rem 0;
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; cursor: pointer; transition: color var(--transition);
}
.faq__question:hover { color: var(--gold); }
.faq__icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform var(--transition); }
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq__item.open .faq__answer { max-height: 500px; }
.faq__answer p { padding-bottom: 1.25rem; font-size: 0.92rem; color: var(--text-muted); line-height: 1.85; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: 5rem 0; }
.contact-form__group { margin-bottom: 1.75rem; }
.contact-form__label {
  display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem;
}
.contact-form__label span { color: var(--gray-300); font-weight: 400; font-size: 0.78rem; }
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  color: var(--text-dark);
  transition: all var(--transition);
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,169,110,0.08);
}
.contact-form__textarea { min-height: 150px; resize: vertical; }
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: var(--gray-300); }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* What Happens Next */
.contact-next { margin-top: 3rem; }
.contact-next__steps { margin-top: 2rem; }
.contact-next__step { display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.contact-next__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-gradient); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.contact-next__step h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--navy); }
.contact-next__step p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Contact sidebar */
.contact-info { padding-top: 0; }
.contact-info__block { margin-bottom: 2rem; }
.contact-info__block h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.75rem; }
.contact-info__item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.7rem; font-size: 0.9rem; color: var(--text-muted); }
.contact-info__item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact-info__item a { color: var(--text-body); }
.contact-info__item a:hover { color: var(--gold); }

.contact-offices { margin-top: 2rem; }
.contact-office {
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: all var(--transition);
  overflow: hidden;
}
.contact-office:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-office__city { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 0.5rem; }
.contact-office__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.contact-office__role { font-size: 0.72rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin: 0.25rem 0; }
.contact-office__desc { font-size: 0.82rem; color: var(--text-muted); }
/* Office image strip */
.contact-office__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 0.75rem;
}

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; background: #25D366; color: var(--white);
  border-radius: 50px; font-weight: 600; font-size: 0.88rem;
  margin-top: 1rem; transition: all var(--transition);
}
.whatsapp-btn:hover { background: #1EBE57; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.whatsapp-btn svg { width: 20px; height: 20px; }

/* Phone cards with live clocks */
.contact-phone-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  transition: all var(--transition);
  gap: 0.75rem;
}
.contact-phone-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-phone-card__header { display: flex; align-items: center; gap: 0.6rem; min-width: 110px; }
.contact-phone-card__region-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.contact-phone-card__city { font-size: 0.82rem; font-weight: 700; color: var(--navy); display: block; line-height: 1.2; }
.contact-phone-card__time {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.contact-phone-card__numbers { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.contact-phone-card__number {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
  display: block;
}
.contact-phone-card__number:hover { color: var(--gold); }
.contact-phone-card__actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.contact-phone-card__wa {
  width: 30px; height: 30px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: all var(--transition);
}
.contact-phone-card__wa svg { width: 16px; height: 16px; }
.contact-phone-card__wa:hover { background: #1EBE57; transform: scale(1.1); }
.contact-phone-card__qr {
  width: 30px; height: 30px; border-radius: var(--radius);
  border: 1px solid var(--gray-200); background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 700; color: var(--gray-400);
  cursor: pointer; transition: all var(--transition);
}
.contact-phone-card__qr:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section--cream { background: var(--cream); }
.section--gray { background: var(--gray-50); }
.section-header { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header--center { text-align: center; }
.section-header--center .eyebrow { justify-content: center; }
.section-header--center .section-subtitle { margin: 0 auto; }
.section-header--center .gold-divider { margin-left: auto; margin-right: auto; }

/* Image with gold frame accent */
.img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame--gold::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: calc(var(--radius-xl) - 4px);
  pointer-events: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 5rem 0 0;
  color: rgba(255,255,255,0.5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__grid--5col {
  grid-template-columns: 1.6fr 0.8fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
}
.footer__phone-line {
  margin-bottom: 0.6rem;
  line-height: 1.5;
  font-size: 0.85rem;
}
.footer__brand .nav__logo-name { font-size: 1.05rem; color: var(--white); }
.footer__brand .nav__logo-sub { color: var(--gold); }
.footer__tagline { font-family: var(--font-heading); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.35); margin-top: 1rem; margin-bottom: 1.5rem; }
.footer__col h4 {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 1.25rem;
}
.footer__col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.4); margin-bottom: 0.6rem; }
.footer__col a:hover { color: var(--gold); }
.footer__col p { font-size: 0.85rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer__bottom {
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: rgba(255,255,255,0.25);
}
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { color: rgba(255,255,255,0.25); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.8s ease, transform 0.8s ease; }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }
html.js .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
html.js .reveal-left.visible { opacity: 1; transform: translateX(0); }
html.js .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
html.js .reveal-right.visible { opacity: 1; transform: translateX(0); }
html.js .reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.8s ease, transform 0.8s ease; }
html.js .reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__offices-inner { grid-template-columns: repeat(2, 1fr); }
  .split__grid { gap: 3rem; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .nav__links, .nav__right .nav__lang, .nav__right .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero { min-height: 85vh; }
  .hero__offices-inner { grid-template-columns: 1fr 1fr; }
  .hero__office { padding: 0.75rem; }
  .page-hero { padding: 10rem 0 4rem; min-height: 350px; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-bar__number { font-size: 2.4rem; }
  .split__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split__grid--reverse .split__image { order: 0; }
  .split__image::after { display: none; }
  .process__steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors__grid { grid-template-columns: 1fr 1fr; }
  .model__grid { grid-template-columns: 1fr; }
  .mission-vision__grid { grid-template-columns: 1fr; }
  .audience__grid { grid-template-columns: 1fr; }
  .step-full { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .step-full__num { font-size: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__offices-inner { grid-template-columns: 1fr; }
  .sectors__grid { grid-template-columns: 1fr; }
}
