/* ==========================================================================
   AudiTax Section Styles — Layouts & Specialized Visual Components
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Navbar & Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-normal);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background-color: var(--surface);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height, 80px);
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-english-display);
  font-size: 1.55rem;
  font-weight: var(--fw-black);
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition-normal);
}

/* In dark mode, brand logo is pure white */
[data-theme="dark"] .brand-logo,
body.theme-dark .brand-logo {
  color: #FFFFFF;
}

/* In light mode, brand logo is deep prestige slate */
[data-theme="light"] .brand-logo,
body.theme-light .brand-logo {
  color: var(--text, #0F172A);
}

.brand-logo .brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm, 8px);
  background: #FFFFFF;
  padding: 2px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-bounce, 0.25s cubic-bezier(0.34, 1.56, 0.64, 1)), box-shadow var(--transition-smooth, 0.3s ease);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.brand-logo .logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gradient-hero);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(11, 25, 44, 0.15);
}

.brand-logo .brand-highlight {
  color: inherit;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }
}

.nav-link {
  font-size: var(--font-size-small);
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
  position: relative;
  padding-block: 0.5rem;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Header Utilities (Language, Theme, CTA) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

@media (max-width: 900px) {
  .header-direct-btn,
  .header-actions .btn-primary {
    display: none !important; /* Disappear in mobile mode as floating FAB provides identical functionality */
  }
}

@media (max-width: 640px) {
  .header-actions .switcher-group[aria-label="Theme Selector"] {
    display: none; /* Accessible inside mobile drawer */
  }
  .header-container {
    height: 68px;
  }
  .brand-logo {
    font-size: 1.25rem;
    gap: 0.5rem;
  }
  .brand-logo .logo-mark {
    width: 36px;
    height: 36px;
  }
  .brand-logo .logo-mark svg {
    width: 20px;
    height: 20px;
  }
}

/* Mobile Hamburger Toggle */
.mobile-toggle-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text);
  flex-shrink: 0;
}

@media (max-width: 1040px) {
  .mobile-toggle-btn {
    display: flex;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-height, 80px);
  inset-inline: 0;
  bottom: 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem var(--container-padding) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 899;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 640px) {
  .mobile-drawer {
    top: var(--header-height, 68px);
  }
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   2. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: var(--gradient-hero);
  color: var(--text);
  padding-block: clamp(4rem, 8vw, 7.5rem);
  overflow: hidden;
  transition: background var(--transition-normal), color var(--transition-normal);
}

.hero-background-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(197, 168, 128, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  inset-inline-start: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.18) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .hero-visual-container {
    order: -1;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  font-size: var(--font-size-small);
  font-weight: var(--fw-semibold);
  color: var(--accent);
  background: rgba(197, 168, 128, 0.12);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-pill);
  width: fit-content;
}

.hero-headline {
  font-size: var(--font-size-hero);
  font-weight: var(--fw-black);
  line-height: 1.18;
  color: var(--text);
  transition: color var(--transition-normal);
}

[data-theme="dark"] .hero-headline,
body.theme-dark .hero-headline {
  color: var(--text-on-dark, #FFFFFF);
}

[data-theme="light"] .hero-headline,
body.theme-light .hero-headline {
  color: #0B192C;
}

.hero-headline .highlight {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: var(--font-size-lead);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 620px;
  transition: color var(--transition-normal);
}

[data-theme="dark"] .hero-subtext,
body.theme-dark .hero-subtext {
  color: var(--text-on-dark-muted, #CBD5E1);
}

[data-theme="light"] .hero-subtext,
body.theme-light .hero-subtext {
  color: #475569;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.85rem;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-trust-indicators {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

[data-theme="dark"] .hero-trust-indicators,
body.theme-dark .hero-trust-indicators {
  border-top-color: rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .hero-trust-indicators,
body.theme-light .hero-trust-indicators {
  border-top-color: #E2E8F0;
}

@media (max-width: 640px) {
  .hero-trust-indicators {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: var(--font-size-small);
  color: var(--text-secondary);
}

[data-theme="dark"] .trust-item,
body.theme-dark .trust-item {
  color: var(--text-on-dark-muted, #CBD5E1);
}

[data-theme="light"] .trust-item,
body.theme-light .trust-item {
  color: #475569;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Hero Visual Showcase */
.hero-visual-container {
  position: relative;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-visual-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-visual-card:hover img {
  transform: scale(1.03);
}

/* Hero Floating Top Badge */
.hero-floating-card-top {
  position: absolute;
  top: -18px;
  inset-inline-end: -15px;
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md, 12px);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.theme-light .hero-floating-card-top {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(197, 168, 128, 0.45);
}

.top-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm, 8px);
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.top-stat-title {
  font-size: 0.85rem;
  font-weight: var(--fw-bold);
  color: var(--text-on-dark, #FFFFFF);
}

.theme-light .top-stat-title {
  color: var(--text, #0B192C);
}

.top-stat-sub {
  font-size: 0.72rem;
  color: var(--text-on-dark-muted, #CBD5E1);
}

.theme-light .top-stat-sub {
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .hero-floating-card-top {
    position: absolute;
    top: 10px;
    inset-inline-end: 10px;
    padding: 0.45rem 0.75rem;
  }
}

/* Floating Status Pill */
.hero-floating-stat {
  position: absolute;
  bottom: -20px;
  inset-inline-start: -20px;
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 600px) {
  .hero-floating-stat {
    position: static;
    margin-top: 1rem;
  }
}

.floating-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(197, 168, 128, 0.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-stat-text .stat-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--text-on-dark, #FFFFFF);
}

.floating-stat-text .stat-label {
  font-size: var(--font-size-caption);
  color: var(--text-on-dark-muted, #CBD5E1);
}

/* Hero light theme adjustments */
[data-theme="light"] .hero-floating-stat,
body.theme-light .hero-floating-stat {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 12px 35px rgba(11, 25, 44, 0.12);
}

[data-theme="light"] .floating-stat-text .stat-num,
body.theme-light .floating-stat-text .stat-num {
  color: #0B192C;
}

[data-theme="light"] .floating-stat-text .stat-label,
body.theme-light .floating-stat-text .stat-label {
  color: #64748B;
}

[data-theme="light"] .hero-floating-card-top,
body.theme-light .hero-floating-card-top {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 10px 30px rgba(11, 25, 44, 0.1);
}

[data-theme="light"] .hero-actions .btn-outline,
body.theme-light .hero-actions .btn-outline {
  color: #0B192C;
  border-color: rgba(11, 25, 44, 0.25);
  background-color: rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .hero-actions .btn-outline:hover,
body.theme-light .hero-actions .btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  background-color: rgba(197, 168, 128, 0.12);
}

[data-theme="light"] .hero-badge,
body.theme-light .hero-badge {
  background: rgba(197, 168, 128, 0.16);
  border-color: rgba(197, 168, 128, 0.45);
  color: #8A6D3B;
}

[data-theme="light"] .hero-background-pattern,
body.theme-light .hero-background-pattern {
  background-image: radial-gradient(rgba(11, 25, 44, 0.08) 1px, transparent 1px);
  opacity: 0.6;
}

/* --------------------------------------------------------------------------
   3. Statistics Section
   -------------------------------------------------------------------------- */
.stats-section {
  padding-block: 3.5rem;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

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

.stat-box {
  display: flex;
  flex-direction: column;
  padding-inline-start: 1.5rem;
  border-inline-start: 3px solid var(--accent);
}

.stat-value-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: var(--fw-black);
  color: var(--primary);
}

[data-theme="dark"] .stat-value-row {
  color: var(--accent);
}

.stat-plus {
  color: var(--accent);
}

.stat-title {
  font-size: var(--font-size-body);
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-top: 0.25rem;
}

.stat-subtitle {
  font-size: var(--font-size-caption);
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   4. About AudiTax Section
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

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

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-badge-card {
  position: absolute;
  bottom: -25px;
  inset-inline-end: -20px;
  background: var(--surface);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.6rem;
  box-shadow: var(--shadow-xl);
  max-width: 260px;
}

@media (max-width: 600px) {
  .about-badge-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 580px) {
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-item {
  display: flex;
  gap: 1rem;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background-color: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-content h4 {
  font-size: var(--font-size-body);
  font-weight: var(--fw-bold);
  margin-bottom: 0.35rem;
}

.pillar-content p {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: var(--line-height-normal);
}

/* Global Investors Highlight Quote */
.about-global-quote {
  position: relative;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, var(--surface) 100%);
  border-inline-start: 4px solid var(--accent);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  border-inline-end: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: var(--fw-medium);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Global Investors Showcase Strip & National Flags */
.about-global-trust {
  margin-top: 3.5rem;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.about-global-trust::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.global-trust-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.global-trust-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.global-trust-title {
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: 0.3rem;
}

.global-trust-subtitle {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: 1.5;
}

.global-countries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 1100px) {
  .global-countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .global-countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-global-trust {
    padding: 1.5rem;
    margin-top: 2.5rem;
  }
  .global-trust-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .global-countries-grid {
    grid-template-columns: 1fr;
  }
}

.country-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.country-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), 0 0 16px rgba(212, 175, 55, 0.15);
}

.country-flag-wrap {
  width: 42px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.country-flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.country-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.country-name {
  font-size: 0.92rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.15rem;
}

.country-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   5. Services Section
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background: var(--gradient-gold);
  color: #0B192C;
  transform: scale(1.08);
  box-shadow: var(--shadow-accent);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-card-desc {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-deliverables {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-caption);
  color: var(--text-secondary);
}

.deliverable-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. Why AudiTax (Bento Grid)
   -------------------------------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1.5rem;
}

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

.bento-box {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-box.col-span-2 {
  grid-column: span 2;
}

@media (max-width: 960px) {
  .bento-box.col-span-2 {
    grid-column: span 1;
  }
}

.bento-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.bento-tag {
  font-size: var(--font-size-caption);
  font-weight: var(--fw-bold);
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bento-box h3 {
  font-size: 1.45rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.75rem;
}

.bento-box p {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
}

/* --------------------------------------------------------------------------
   7. Industries / Sectors Expertise
   -------------------------------------------------------------------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.industry-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background-color: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
}

.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.industry-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.industry-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: var(--line-height-normal);
}

/* --------------------------------------------------------------------------
   8. Process / How We Work Section
   -------------------------------------------------------------------------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (max-width: 1040px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: all var(--transition-normal);
}

.process-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: var(--fw-black);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.5rem;
  color: var(--text);
}

.process-desc {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: var(--line-height-normal);
}

/* --------------------------------------------------------------------------
   9. Diagnostic Risk Assessment Tool (Interactive Widget)
   -------------------------------------------------------------------------- */
.diagnostic-container {
  background: var(--surface);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin-inline: auto;
}

.diagnostic-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-block: 1.75rem;
}

@media (max-width: 768px) {
  .diagnostic-options-grid {
    grid-template-columns: 1fr;
  }
}

.diagnostic-choice-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background-color: var(--surface-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.diagnostic-choice-card:hover {
  border-color: var(--accent);
  background-color: var(--surface);
}

.diagnostic-choice-card.selected {
  border-color: var(--accent);
  background-color: var(--accent-subtle);
  box-shadow: 0 0 0 2px var(--accent);
}

.diagnostic-result-box {
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 1.5rem;
  display: none;
}

.diagnostic-result-box.is-active {
  display: block;
}

/* --------------------------------------------------------------------------
   10. Team Section
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.team-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.team-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-image-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--secondary);
}

.team-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-image-box img {
  transform: scale(1.05);
}

.team-content {
  padding: 1.75rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.25rem;
  color: var(--text);
}

.team-role {
  font-size: var(--font-size-small);
  color: var(--accent);
  font-weight: var(--fw-semibold);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: var(--line-height-normal);
  margin-bottom: 1.25rem;
}

.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* --------------------------------------------------------------------------
   11. Clients Section (Luxury Animated Marquee Showcase)
   -------------------------------------------------------------------------- */
.clients-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 6.5vw, 6.5rem);
  background: linear-gradient(180deg, var(--background) 0%, var(--surface-subtle) 50%, var(--background) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(500px, 70vw, 900px);
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(197, 168, 128, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.clients-section .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 3.5rem;
}

.clients-section .section-badge {
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.35);
  color: var(--accent-hover);
  font-weight: var(--fw-bold);
  padding: 0.45rem 1.35rem;
  letter-spacing: 0.03em;
}

.clients-section .section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: var(--fw-black);
  color: var(--text);
  margin-top: 0.85rem;
  letter-spacing: -0.02em;
}

/* Marquee Container with Horizontal Edge Masks */
.clients-showcase-container {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

/* Gradient Fade Mask on viewport edges */
.clients-showcase-container::before,
.clients-showcase-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(80px, 15vw, 240px);
  z-index: 10;
  pointer-events: none;
}

.clients-showcase-container::before {
  left: 0;
  background: linear-gradient(to right, var(--background) 25%, transparent 100%);
}

.clients-showcase-container::after {
  right: 0;
  background: linear-gradient(to left, var(--background) 25%, transparent 100%);
}

[data-theme="dark"] .clients-showcase-container::before,
body.theme-dark .clients-showcase-container::before {
  background: linear-gradient(to right, var(--background) 25%, transparent 100%);
}

[data-theme="dark"] .clients-showcase-container::after,
body.theme-dark .clients-showcase-container::after {
  background: linear-gradient(to left, var(--background) 25%, transparent 100%);
}

/* CRITICAL: Force LTR for continuous marquee tracks regardless of document dir */
.clients-marquee-wrapper {
  direction: ltr !important;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  overflow: hidden;
}

.marquee-track-wrapper {
  direction: ltr !important;
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.marquee-track {
  direction: ltr !important;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 0.75rem;
  width: max-content;
  will-change: transform;
}

/* Luxury Logo Card (Refined Squircle & Gold Halo) */
.client-logo-card {
  position: relative;
  flex-shrink: 0;
  width: 226px;
  height: 118px;
  padding: 1rem 1.4rem;
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  box-shadow: 0 8px 24px -3px rgba(0, 0, 0, 0.35),
              0 2px 6px 0 rgba(212, 175, 55, 0.12),
              inset 0 1px 1px rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 380ms cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

/* Ambient Halo Behind Card on Hover */
.client-logo-card::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 28px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.35) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
  z-index: 0;
}

.client-logo-card:hover::before {
  opacity: 1;
}

/* Elegant Light Sweep / Reflection Shimmer on Card */
.client-logo-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
  pointer-events: none;
  z-index: 2;
}

.client-logo-card:hover::after {
  left: 150%;
}

/* Hover & Focus State: High-End Lift & Vibrant Gold Halo */
.client-logo-card:hover,
.client-logo-card:focus-visible {
  transform: translateY(-8px) scale(1.045);
  border-color: #F1D279;
  box-shadow: 0 20px 45px -4px rgba(212, 175, 55, 0.48),
              0 8px 24px rgba(0, 0, 0, 0.65),
              0 0 0 1px rgba(241, 210, 121, 0.4);
}

.client-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.client-logo-img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.client-logo-card:hover .client-logo-img {
  transform: scale(1.06);
}

/* Clients Trust Row below Marquee */
.clients-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.75rem;
  padding-inline: 1rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--accent-border);
  font-size: var(--font-size-small);
  font-weight: var(--fw-medium);
  color: var(--text);
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.25);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.trust-pill:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px -2px rgba(212, 175, 55, 0.3);
}

.trust-pill .trust-icon {
  font-size: 1.15rem;
}

/* Dark Theme Adjustments for Clients */
[data-theme="dark"] .clients-section,
body.theme-dark .clients-section {
  background: radial-gradient(ellipse at 50% 0%, #0F1D33 0%, #060D17 65%, #03070C 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .clients-ambient-glow,
body.theme-dark .clients-ambient-glow {
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
}

[data-theme="dark"] .client-logo-card,
body.theme-dark .client-logo-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

[data-theme="dark"] .client-logo-card:hover,
body.theme-dark .client-logo-card:hover {
  border-color: #F5D77F;
  box-shadow: 0 22px 50px -4px rgba(212, 175, 55, 0.55),
              0 10px 26px rgba(0, 0, 0, 0.75);
}

/* ==========================================================================
   Floating Contact Us FAB & Interactive Action Sheet Modal
   ========================================================================== */
.floating-contact-fab {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.4rem 0.75rem 1rem;
  background: linear-gradient(135deg, #0B192C 0%, #152844 50%, #1E3A5F 100%);
  color: #FFFFFF !important;
  font-size: var(--font-size-small);
  font-weight: var(--fw-bold);
  font-family: var(--font-display);
  border-radius: 9999px;
  border: 1.5px solid rgba(197, 168, 128, 0.65);
  box-shadow: 0 10px 28px rgba(11, 25, 44, 0.35),
              0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  cursor: pointer;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 300ms ease,
              border-color 300ms ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

[data-theme="dark"] .floating-contact-fab,
body.theme-dark .floating-contact-fab {
  background: linear-gradient(135deg, #111e33 0%, #192d4c 50%, #0B192C 100%);
  border-color: rgba(245, 215, 127, 0.75);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(197, 168, 128, 0.25);
}

.floating-contact-fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(11, 25, 44, 0.45),
              0 0 24px rgba(197, 168, 128, 0.4);
  border-color: #F5D77F;
}

.floating-contact-fab:active {
  transform: translateY(-1px) scale(0.98);
}

.floating-fab-pulse-ring {
  position: absolute;
  inset: -4px;
  border-radius: 9999px;
  border: 2px solid rgba(197, 168, 128, 0.6);
  animation: fabPulseRing 3s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

@keyframes fabPulseRing {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.floating-fab-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: #0B192C;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.fab-icon-chat {
  width: 17px;
  height: 17px;
  color: #0B192C;
}

.fab-icon-phone {
  position: absolute;
  width: 11px;
  height: 11px;
  bottom: -2px;
  inset-inline-end: -2px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  padding: 2.5px;
  box-sizing: content-box;
  border: 1.5px solid #0B192C;
}

.floating-fab-text {
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* Quick Contact Action Sheet Modal */
.quick-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
              visibility 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.quick-contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 25, 44, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 300ms ease;
}

[data-theme="dark"] .quick-contact-backdrop,
body.theme-dark .quick-contact-backdrop {
  background: rgba(4, 10, 18, 0.82);
}

.quick-contact-sheet {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: var(--surface);
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius-lg, 24px);
  box-shadow: 0 24px 60px -12px rgba(11, 25, 44, 0.35),
              0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 1.75rem;
  z-index: 1;
  transform: translateY(24px) scale(0.96);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

[data-theme="dark"] .quick-contact-sheet,
body.theme-dark .quick-contact-sheet {
  background: #0f1c2e;
  border-color: rgba(245, 215, 127, 0.35);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.8),
              0 0 30px rgba(197, 168, 128, 0.15);
}

.quick-contact-modal.is-open .quick-contact-sheet {
  transform: translateY(0) scale(1);
}

.sheet-drag-handle {
  display: none;
  width: 44px;
  height: 5px;
  background: var(--border-strong, #CBD5E1);
  border-radius: 9999px;
  margin: -0.5rem auto 1rem auto;
}

.quick-contact-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.quick-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  background: var(--success-bg, rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 9999px;
  font-size: var(--font-size-caption, 0.8rem);
  font-weight: var(--fw-semibold);
  color: #10B981;
  margin-bottom: 0.5rem;
}

.quick-contact-title {
  font-size: var(--font-size-h3, 1.35rem);
  font-weight: var(--fw-bold);
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.quick-contact-subtitle {
  font-size: var(--font-size-caption, 0.88rem);
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.quick-contact-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-subtle);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 200ms ease;
}

.quick-contact-close-btn:hover {
  background: var(--accent-subtle);
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(90deg);
}

.quick-contact-options-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-sheet-option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md, 16px);
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
}

/* Call Option Card Styling */
.call-option-card {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.12) 0%, rgba(11, 25, 44, 0.04) 100%);
  border-color: rgba(197, 168, 128, 0.35);
}

[data-theme="dark"] .call-option-card,
body.theme-dark .call-option-card {
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.15) 0%, rgba(21, 40, 68, 0.4) 100%);
  border-color: rgba(245, 215, 127, 0.35);
}

.call-option-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(197, 168, 128, 0.25);
}

.call-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-gold);
  color: #0B192C;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(197, 168, 128, 0.4);
}

/* WhatsApp Option Card Styling */
.whatsapp-option-card {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(18, 140, 126, 0.04) 100%);
  border-color: rgba(37, 211, 102, 0.35);
}

[data-theme="dark"] .whatsapp-option-card,
body.theme-dark .whatsapp-option-card {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.14) 0%, rgba(18, 140, 126, 0.18) 100%);
  border-color: rgba(37, 211, 102, 0.45);
}

.whatsapp-option-card:hover {
  transform: translateY(-2px);
  border-color: #25D366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
}

.whatsapp-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.contact-sheet-info {
  flex: 1;
  min-width: 0;
}

.contact-sheet-top-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}

.contact-sheet-tag {
  font-size: 0.72rem;
  font-weight: var(--fw-bold);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}

.call-tag {
  background: rgba(197, 168, 128, 0.2);
  color: var(--accent-hover, #9E7D4E);
}

[data-theme="dark"] .call-tag,
body.theme-dark .call-tag {
  color: #F5D77F;
  background: rgba(245, 215, 127, 0.2);
}

.whatsapp-tag {
  background: rgba(37, 211, 102, 0.2);
  color: #128C7E;
}

[data-theme="dark"] .whatsapp-tag,
body.theme-dark .whatsapp-tag {
  color: #25D366;
  background: rgba(37, 211, 102, 0.2);
}

.contact-sheet-number {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  letter-spacing: 0.02em;
}

.contact-sheet-name {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  margin-bottom: 0.2rem;
}

.contact-sheet-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.contact-sheet-action-pill {
  padding: 0.55rem 1rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.call-action-pill {
  background: var(--gradient-gold);
  color: #0B192C;
  box-shadow: 0 2px 8px rgba(197, 168, 128, 0.3);
}

.whatsapp-action-pill {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.contact-sheet-option-card:hover .contact-sheet-action-pill {
  transform: scale(1.05);
}

/* Mobile Responsive Bottom Sheet Behavior */
@media (max-width: 768px) {
  .floating-contact-fab {
    bottom: 20px;
    inset-inline-start: 16px;
    padding: 0.7rem 1.15rem 0.7rem 0.85rem;
    font-size: 0.88rem;
  }

  .quick-contact-modal {
    padding: 0;
    align-items: flex-end;
  }

  .quick-contact-sheet {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    border-bottom: none;
    padding: 1.25rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px)) 1.25rem;
    transform: translateY(100%);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  }

  .quick-contact-modal.is-open .quick-contact-sheet {
    transform: translateY(0);
  }

  .sheet-drag-handle {
    display: block;
  }

  .contact-sheet-option-card {
    padding: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-sheet-action-pill {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    margin-top: 0.5rem;
  }
}

/* Atmospheric Ambient Glow Orbs in Background */
.ambient-glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
  opacity: 0.28;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-gold-1 {
  top: 10%;
  inset-inline-start: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
}

.orb-navy-2 {
  top: 45%;
  inset-inline-end: 5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(26, 47, 79, 0.5) 0%, transparent 70%);
  animation-delay: -6s;
}

.orb-gold-3 {
  top: 80%;
  inset-inline-start: 15%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  animation-delay: -12s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .clients-marquee-wrapper {
    gap: 1rem;
  }

  .marquee-track {
    gap: 1rem;
    padding-inline: 0.5rem;
  }

  .client-logo-card {
    width: 175px;
    height: 92px;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .client-logo-img {
    max-height: 52px;
  }
}

@media (max-width: 480px) {
  .client-logo-card {
    width: 148px;
    height: 82px;
    padding: 0.6rem 0.85rem;
  }

  .client-logo-img {
    max-height: 44px;
  }
}

/* --------------------------------------------------------------------------
   12. Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.testimonial-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 1.25rem;
}

.testimonial-text {
  font-size: var(--font-size-lead);
  color: var(--text);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--gradient-hero);
  color: var(--accent);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: var(--font-size-body);
  font-weight: var(--fw-bold);
}

.author-info p {
  font-size: var(--font-size-caption);
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Insights / Articles Section
   -------------------------------------------------------------------------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

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

.article-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.article-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.article-card:hover .article-cover img {
  transform: scale(1.04);
}

.article-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--font-size-caption);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.article-title {
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: var(--line-height-snug);
}

.article-summary {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: var(--line-height-normal);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   13. Final CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--gradient-hero);
  color: var(--text-on-dark, #FFFFFF);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.35);
  box-shadow: var(--shadow-xl);
}

.cta-banner .cta-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  color: var(--text-on-dark, #FFFFFF);
  margin-bottom: 1rem;
}

.cta-banner .cta-desc {
  font-size: var(--font-size-lead);
  color: var(--text-on-dark-muted, #CBD5E1);
  max-width: 650px;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: var(--line-height-relaxed);
}

/* --------------------------------------------------------------------------
   14. Contact Page & Direct Communication Hub
   -------------------------------------------------------------------------- */
.contact-section {
  position: relative;
}

.contact-grid {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  display: block;
}

/* When the consultation form is active, use 2-column layout */
.contact-grid:has(#contact-form-container:not(.section-hidden)) {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

@media (max-width: 960px) {
  .contact-grid:has(#contact-form-container:not(.section-hidden)) {
    grid-template-columns: 1fr;
  }
}

.contact-form-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}

/* Full Width Executive Contact Direct Hub */
.contact-direct-hub {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

/* 1. Executive Featured Hotlines Grid (Bento Grid Architecture) */
.contact-hotlines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 860px) {
  .contact-hotlines-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.hotline-card {
  background: var(--surface);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg, 18px);
  padding: 1.6rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.15rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(212, 175, 55, 0.05);
}

.theme-light .hotline-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(197, 168, 128, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04), 0 0 15px rgba(197, 168, 128, 0.1);
}

.hotline-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hotline-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(212, 175, 55, 0.18);
}

.hotline-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hotline-avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md, 12px);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.hotline-avatar-wrap.executive-avatar {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
  color: #0B192C;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.hotline-title-meta {
  flex: 1;
}

.hotline-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.hotline-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.18rem 0.65rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  border-radius: var(--radius-full, 9999px);
  font-size: 0.76rem;
  font-weight: var(--fw-bold);
}

.hotline-live-badge.executive-badge {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--accent);
}

.hotline-scope-pill {
  font-size: 0.74rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-full, 9999px);
  padding: 0.18rem 0.65rem;
  font-weight: var(--fw-medium);
}

.theme-light .hotline-scope-pill {
  background: rgba(0, 0, 0, 0.04);
}

.hotline-name {
  font-size: 1.12rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}

.hotline-dialer-wrap {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 10px);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.theme-light .hotline-dialer-wrap {
  background: rgba(0, 0, 0, 0.03);
}

.hotline-dialer-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hotline-number {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  font-family: var(--font-english-display, sans-serif);
  line-height: 1;
}

.hotline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}

.hotline-actions-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.hotline-actions-row.hotline-actions-single {
  grid-template-columns: 1fr;
}

@media (max-width: 480px) {
  .hotline-actions-row {
    grid-template-columns: 1fr;
  }
}

.hotline-btn-full {
  width: 100%;
  justify-content: center;
  padding: 0.82rem 1.25rem;
  font-size: 0.95rem;
}

.hotline-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md, 10px);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: all 0.25s ease;
}

.hotline-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.hotline-btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text) !important;
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md, 10px);
  text-decoration: none;
  transition: all 0.25s ease;
}

.theme-light .hotline-btn-phone {
  background: rgba(197, 168, 128, 0.08);
  border-color: rgba(197, 168, 128, 0.35);
}

.hotline-btn-phone:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent);
  color: var(--accent) !important;
  transform: translateY(-2px);
}

.hotline-btn-phone-primary {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
  color: #0B192C !important;
  font-weight: var(--fw-bold);
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.hotline-btn-phone-primary:hover {
  background: linear-gradient(135deg, #F0C419 0%, #D4AF37 100%);
  color: #0B192C !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.theme-light .hotline-btn-phone-primary {
  background: linear-gradient(135deg, #B8860B 0%, #8B6508 100%);
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.3);
}

.theme-light .hotline-btn-phone-primary:hover {
  background: linear-gradient(135deg, #996515 0%, #6B4E08 100%);
  color: #FFFFFF !important;
}

/* 2. Three Equal Supporting Pillars (Email, Facebook, Headquarters) */
.contact-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

@media (max-width: 960px) {
  .contact-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.contact-pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 18px);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.contact-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25), 0 0 20px rgba(212, 175, 55, 0.12);
}

.pillar-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md, 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon.email-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pillar-icon.facebook-icon {
  background: rgba(24, 119, 242, 0.15);
  color: #1877F2;
  border: 1px solid rgba(24, 119, 242, 0.3);
}

.pillar-icon.location-icon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pillar-category {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.25rem;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--text);
  margin: 0;
}

.pillar-desc {
  font-size: var(--font-size-small);
  color: var(--text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex-grow: 1;
}

.pillar-highlight-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 10px);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.theme-light .pillar-highlight-box {
  background: rgba(0, 0, 0, 0.03);
}

.highlight-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.highlight-value {
  font-size: 0.95rem;
  font-weight: var(--fw-bold);
  color: var(--text);
}

.pillar-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md, 10px);
  font-size: 0.88rem;
  font-weight: var(--fw-bold);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.25s ease;
}

.pillar-action-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0B192C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.pillar-action-btn.facebook-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
}

.pillar-action-btn.map-btn:hover {
  background: #EA4335;
  border-color: #EA4335;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.35);
}

/* 3. Bottom Guarantee Strip */
.contact-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 16px);
  padding: 1.5rem 2rem;
  width: 100%;
}

@media (max-width: 900px) {
  .contact-trust-strip {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
}

.trust-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.strip-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.trust-strip-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.trust-strip-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--footer-bg, #060D17);
  color: var(--footer-text, #F1F5F9);
  padding-block: 4.5rem 2rem;
  border-top: 1px solid var(--footer-border, rgba(255, 255, 255, 0.1));
  transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

.footer-brand p {
  font-size: var(--font-size-small);
  color: var(--footer-text-muted, #94A3B8);
  line-height: var(--line-height-relaxed);
  margin-block: 1rem 1.5rem;
  max-width: 340px;
}

.footer-col h4 {
  font-size: var(--font-size-body);
  font-weight: var(--fw-bold);
  color: var(--footer-text, #F1F5F9);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: var(--font-size-small);
  color: var(--footer-text-muted, #94A3B8);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent);
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text-muted, #94A3B8);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-address-box {
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--footer-text-muted, #94A3B8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--footer-border, rgba(255, 255, 255, 0.1));
  font-size: var(--font-size-caption);
  color: var(--footer-text-muted, #94A3B8);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Enhancements (320px - 768px)
   ========================================================================== */

@media (max-width: 768px) {
  /* Section Padding */
  .section {
    padding-block: 3.5rem;
  }
  .section-header {
    margin-bottom: 2rem;
  }

  /* Cards & Containers */
  .card {
    padding: 1.5rem;
  }

  /* Tabs Nav */
  .tabs-nav {
    justify-content: flex-start;
    padding-inline: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .tab-btn {
    scroll-snap-align: start;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  /* Bento Grid */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .bento-box.col-span-2 {
    grid-column: span 1;
  }
  .bento-box {
    padding: 1.5rem;
  }

  /* Process Timeline */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .process-step {
    padding: 1.35rem 1.25rem;
  }

  /* Diagnostic Scoper */
  .diagnostic-container {
    padding: 1.5rem 1.25rem;
  }
  .diagnostic-options-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .diagnostic-result-box {
    padding: 1.25rem;
  }

  /* Articles */
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 2.75rem 1.5rem;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-form-card {
    padding: 1.5rem 1.25rem;
  }
}

/* Small Mobile Screens (320px - 480px) */
@media (max-width: 480px) {
  :root {
    --container-padding: 0.95rem;
  }

  /* Header */
  .header-container {
    height: 60px;
    gap: 0.5rem;
  }
  .brand-logo {
    font-size: 1.05rem;
  }
  .brand-logo .brand-logo-img {
    width: 32px;
    height: 32px;
  }
  .brand-logo .logo-mark {
    width: 32px;
    height: 32px;
  }
  .brand-logo .logo-mark svg {
    width: 16px;
    height: 16px;
  }

  /* Hero */
  .hero-section {
    padding-block: 2.25rem 1.75rem;
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 0.28rem 0.75rem;
  }
  .hero-headline {
    font-size: var(--font-size-hero);
    line-height: 1.26;
  }
  .hero-subtext {
    font-size: var(--font-size-lead);
    line-height: 1.55;
  }
  .hero-actions {
    gap: 0.75rem;
  }
  .hero-actions .btn {
    font-size: 0.84rem;
    padding: 0.65rem 1.25rem;
  }
  .hero-trust-indicators {
    gap: 0.5rem;
  }
  .trust-pill {
    font-size: 0.74rem;
    padding: 0.35rem 0.7rem;
  }

  /* Section Headers */
  .section-badge {
    font-size: 0.72rem;
    padding: 0.28rem 0.75rem;
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: var(--font-size-h1);
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  .section-desc {
    font-size: var(--font-size-lead);
    line-height: 1.55;
  }

  /* Stats */
  .stats-section {
    padding-block: 2rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat-box {
    padding-inline-start: 0.85rem;
    border-inline-start-width: 2.5px;
  }
  .stat-value-row {
    font-size: 1.85rem;
  }
  .stat-title {
    font-size: 0.82rem;
  }
  .stat-subtitle {
    font-size: 0.72rem;
  }

  /* About */
  .about-badge-card {
    position: static;
    margin-top: 0.85rem;
    max-width: 100%;
    padding: 0.85rem 1rem;
  }
  .about-badge-card h4 {
    font-size: 0.82rem;
  }
  .about-badge-card p {
    font-size: 0.72rem;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pillar-item h4 {
    font-size: 0.9rem;
  }
  .pillar-item p {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .country-card {
    padding: 0.65rem 0.75rem;
  }
  .country-name {
    font-size: 0.8rem;
  }
  .country-category {
    font-size: 0.68rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    padding: 1.15rem 1rem;
  }
  .service-card-title {
    font-size: 0.98rem;
  }
  .service-card-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .service-feature-tag {
    font-size: 0.72rem;
    padding: 0.2rem 0.55rem;
  }
  .service-card .btn {
    font-size: 0.78rem;
    padding: 0.5rem 0.9rem;
  }
  .service-filter-btn {
    font-size: 0.76rem;
    padding: 0.35rem 0.75rem;
  }

  /* Industries & Practice Areas */
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .industry-card {
    padding: 1rem;
  }
  .industry-card h4 {
    font-size: 0.95rem;
  }
  .industry-card p {
    font-size: 0.78rem;
  }

  /* Diagnostic Tool */
  .diagnostic-container {
    padding: 1.25rem 1rem;
  }
  .diagnostic-step-title {
    font-size: 1.05rem;
  }
  .diagnostic-step-desc {
    font-size: 0.8rem;
  }
  .diagnostic-option-btn {
    padding: 0.75rem 0.9rem;
    font-size: 0.82rem;
  }

  /* Articles */
  .article-card {
    padding: 1rem;
  }
  .article-card h3 {
    font-size: 0.92rem;
  }
  .article-excerpt {
    font-size: 0.78rem;
  }
  .article-meta {
    font-size: 0.7rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .testimonial-card {
    padding: 1.15rem 1rem;
  }
  .testimonial-text {
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .testimonial-author {
    font-size: 0.82rem;
  }
  .testimonial-role {
    font-size: 0.72rem;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 1.85rem 1rem;
  }
  .cta-banner .cta-title {
    font-size: 1.18rem;
  }
  .cta-banner .cta-desc {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .cta-banner .btn {
    font-size: 0.82rem;
  }

  /* Contact Channels & Hotlines */
  .hotline-card {
    padding: 1.15rem 1rem;
  }
  .hotline-name {
    font-size: 0.92rem;
  }
  .hotline-number {
    font-size: 1.05rem;
  }
  .hotline-desc {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .hotline-btn-phone,
  .hotline-btn-whatsapp {
    font-size: 0.8rem;
    padding: 0.55rem 0.95rem;
  }
  .contact-channel-card {
    padding: 1rem;
    gap: 0.75rem;
  }
  .channel-icon {
    width: 34px;
    height: 34px;
  }
  .contact-pillar-card {
    padding: 1rem;
  }
  .pillar-title {
    font-size: 0.9rem;
  }
  .pillar-desc {
    font-size: 0.78rem;
  }

  /* Contact Form */
  .contact-form {
    padding: 1.25rem 1rem;
  }
  .form-title {
    font-size: 1.05rem;
  }
  .form-label {
    font-size: 0.78rem;
  }
  .form-input,
  .form-select,
  .form-textarea {
    font-size: 0.9rem;
    padding: 0.65rem 0.85rem;
  }
  .form-submit-btn {
    font-size: 0.84rem;
    padding: 0.7rem 1.2rem;
  }

  /* Floating Contact FAB & Modal */
  .floating-contact-fab {
    font-size: 0.82rem;
    padding: 0.65rem 1rem 0.65rem 0.75rem;
  }
  .quick-contact-title {
    font-size: 1.15rem;
  }
  .quick-contact-subtitle {
    font-size: 0.8rem;
  }
  .contact-sheet-name {
    font-size: 0.95rem;
  }
  .contact-sheet-number {
    font-size: 0.85rem;
  }
  .contact-sheet-desc {
    font-size: 0.76rem;
  }
  .contact-sheet-action-pill {
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  /* Modal Dialog on Small Mobile */
  .modal-backdrop {
    padding: 0.75rem;
  }
  .modal-content {
    padding: 1.25rem 0.9rem;
    max-height: 88vh;
  }
  .modal-close-btn {
    top: 0.75rem;
    inset-inline-end: 0.75rem;
    width: 30px;
    height: 30px;
  }

  /* Footer */
  .site-footer {
    padding-block: 2.5rem 1.25rem;
  }
  .footer-col-title {
    font-size: 0.82rem;
  }
  .footer-desc {
    font-size: 0.78rem;
    line-height: 1.55;
  }
  .footer-link {
    font-size: 0.78rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
    font-size: 0.72rem;
  }
}
