/* ============================================================
   LAWFUL JOURNEY - MODERN EXECUTIVE HOMEPAGE STYLESHEET
   Design System: Midnight Obsidian & Royal Brushed Gold
   ============================================================ */

:root {
  /* Color Palette */
  --bg-dark: #070B19;
  --bg-surface: #0E162E;
  --bg-card: #111A35;
  --bg-card-hover: #162244;
  --bg-light: #F8FAFC;
  
  --primary-navy: #0A1128;
  --gold-primary: #D4AF37;
  --gold-hover: #E5C158;
  --gold-light: #F3E5AB;
  --gold-dark: #997A15;
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --text-primary: #FFFFFF;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;
  
  --accent-green: #10B981;
  --accent-blue: #38BDF8;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.35);
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-secondary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* Highlights & Buttons */
.gold-text {
  background: linear-gradient(135deg, #FFE28A 0%, #D4AF37 50%, #AA820A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
  color: #070B19;
  box-shadow: var(--shadow-gold);
  border-color: #F3E5AB;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #F3E5AB 0%, #E5C158 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border-color: var(--border-color);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #20BA56;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 38px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16.5px;
  color: var(--text-muted);
}

/* ============================================================
   1. TOP NOTIFICATION & STICKY HEADER
   ============================================================ */
.top-bar {
  background: #040711;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left a, .top-bar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.top-bar-left a:hover, .top-bar-right a:hover {
  color: var(--gold-primary);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 11, 25, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(7, 11, 25, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(212, 175, 55, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
}

.logo-sub {
  font-size: 10px;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

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

.nav-link i.fa-chevron-down {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Header Search Button */
.header-search-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gold-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition);
}

.header-search-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
  transform: scale(1.05);
}

/* Header CTAs & Mobile Toggle */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Animated Hamburger Toggle */
.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transition: var(--transition);
  z-index: 1001;
}

.menu-toggle:hover, .menu-toggle.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-primary);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Nav Backdrop Overlay */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 6, 15, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   GLOBAL SEARCH MODAL OVERLAY
   ============================================================ */
.search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 7, 17, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.search-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-card {
  background: #0D1630;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 720px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  overflow: hidden;
  animation: modalSlideDown 0.25s ease forwards;
}

@keyframes modalSlideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.search-modal-header {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.search-modal-header i.fa-search {
  color: var(--gold-primary);
  font-size: 18px;
}

.search-modal-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 17px;
  font-family: var(--font-body);
}

.search-modal-input:focus {
  outline: none;
}

.search-modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
}

.search-modal-close:hover {
  color: #FFFFFF;
}

.search-modal-results {
  max-height: 420px;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.search-result-item:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  transform: translateX(4px);
}

.search-result-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-result-title i {
  color: var(--gold-primary);
}

.search-result-tag {
  font-size: 11px;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* ============================================================
   SEARCHABLE MEGA-MENU DROPDOWN
   ============================================================ */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 1020px;
  background: #0B1229;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75), 0 0 20px rgba(212, 175, 55, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1001;
  pointer-events: none;
}

.nav-item:hover .mega-menu,
.mega-menu:hover,
.nav-item.mega-active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Mega Menu Search Bar */
.mega-search-wrapper {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.mega-search-input {
  width: 100%;
  padding: 12px 18px 12px 46px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 14px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.mega-search-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.mega-search-icon {
  position: absolute;
  left: 16px;
  top: 15px;
  color: var(--gold-primary);
  font-size: 15px;
}

.mega-search-clear {
  position: absolute;
  right: 14px;
  top: 15px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  display: none;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-height: 460px;
  overflow-y: auto;
  padding-right: 8px;
}

.mega-grid::-webkit-scrollbar {
  width: 5px;
}
.mega-grid::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

.mega-col-title {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mega-service-link {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.mega-service-link:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #FFFFFF;
  transform: translateX(3px);
}

.mega-service-link i {
  font-size: 11px;
  color: var(--gold-primary);
  width: 14px;
}

.search-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px;
  color: var(--text-muted);
  display: none;
}

/* ============================================================
   2. HERO SECTION WITH DIRECT ABOVE-THE-FOLD CONVERSION
   ============================================================ */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(14, 22, 46, 0.8) 0%, transparent 60%),
              var(--bg-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

/* Sovereign Architectural Guilloché Canvas (Rare Executive Linework) */
.hero-guilloche-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

/* Executive Checkered Grid Pattern with Deep Ambient Vignette */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* Subtle Gold Radial Spotlight */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 55%),
              radial-gradient(circle at 20% 70%, rgba(30, 58, 138, 0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Levitating Floating Trust Badges */
.hero-floating-badge {
  position: absolute;
  padding: 10px 16px;
  background: rgba(14, 22, 48, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #FFFFFF;
  z-index: 3;
  animation: badgeLevitate 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-badge-top-left {
  top: -18px;
  left: -20px;
  animation-delay: 0s;
}

.hero-badge-bottom-right {
  bottom: -18px;
  right: -20px;
  animation-delay: 2s;
}

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

@media (max-width: 900px) {
  .hero-floating-badge {
    display: none;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-mobile-kicker,
.hero-title-mobile,
.hero-description-mobile,
.cta-mobile-label,
.mobile-practice-dock,
.hero-card-mobile-intro {
  display: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge i {
  color: var(--gold-primary);
}

.hero-title {
  font-size: 46px;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.18;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Trust checklist */
.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-bottom: 32px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.hero-checklist li i {
  color: var(--accent-green);
  font-size: 15px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Above-The-Fold Lead Capture Card */
.hero-card {
  background: #0E1630;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.12);
  position: relative;
}

.hero-card-header {
  margin-bottom: 20px;
  text-align: center;
}

.hero-card-title {
  font-size: 22px;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.hero-card-subtitle {
  font-size: 13px;
  color: var(--gold-primary);
  font-weight: 500;
}

.hero-form .form-group {
  margin-bottom: 14px;
}

.hero-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.hero-form select option {
  background: #0E1630;
  color: #FFFFFF;
}

.hero-form .btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}

.hero-card-footer {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-card-footer i {
  color: var(--accent-green);
}

/* ============================================================
   3. INSTITUTIONAL CREDIBILITY & METRICS RIBBON
   ============================================================ */
.trust-bar {
  background: linear-gradient(180deg, #090F24 0%, #060A18 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
  position: relative;
  z-index: 5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(14, 22, 46, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #D4AF37 0%, transparent 100%);
  opacity: 0.6;
}

.stat-box:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
}

.stat-emblem-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.25);
  transition: var(--transition);
  background: #000000;
}

.stat-box:hover .stat-emblem-img {
  transform: scale(1.08) rotate(4deg);
  border-color: var(--gold-primary);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 13.5px;
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 2px;
  line-height: 1.2;
}

.stat-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   4. RISK-REVERSAL & URGENCY BANNER
   ============================================================ */
.urgency-banner {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0D1630 100%);
  border-bottom: 1px solid var(--border-color);
}

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

.urgency-card {
  background: rgba(19, 30, 61, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.urgency-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-primary);
  opacity: 0.8;
}

.urgency-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.urgency-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.urgency-title {
  font-size: 18px;
  margin-bottom: 6px;
  color: #FFFFFF;
}

.urgency-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   5. COMPREHENSIVE CATEGORIZED SERVICE CARDS (PREVIOUS + NEW)
   ============================================================ */
.services-section {
  padding: 90px 0;
  background: var(--bg-dark);
}

.service-filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.service-tab-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.service-tab-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border-color: var(--border-gold);
}

.service-tab-btn.active {
  background: linear-gradient(135deg, #E5C158 0%, #D4AF37 100%);
  color: #070B19;
  border-color: #F3E5AB;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.services-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card-hub {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card-hub:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  background: var(--bg-card-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
}

.hub-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.hub-illustration {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.hub-info {
  flex: 1;
}

.hub-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-primary);
  letter-spacing: 1px;
}

.hub-title {
  font-size: 22px;
  color: #FFFFFF;
  margin: 4px 0 8px;
}

.hub-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hub-subgroup {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.hub-subgroup-title {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hub-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
}

.hub-service-pill {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.hub-service-pill:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--border-gold);
  color: #FFFFFF;
  transform: translateX(2px);
}

.hub-service-pill i {
  font-size: 10px;
  color: var(--gold-primary);
}

.hub-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  margin-top: 20px;
}

.hub-action-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hub-action-btn:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

/* ============================================================
   6. 4-STEP STREAMLINED PROCESS ROADMAP
   ============================================================ */
.process-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 34%),
    #090F22;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.process-card {
  background: linear-gradient(155deg, rgba(24, 37, 70, 0.92), rgba(12, 20, 43, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-md);
  padding: 28px 24px 30px;
  text-align: left;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.process-card:not(:last-child)::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: 82px;
  right: -15px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111C38 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m9 6 6 6-6 6' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/18px no-repeat;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.process-step-num {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(7, 11, 25, 0.86);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.process-visual {
  width: 112px;
  height: 112px;
  margin: 2px auto 22px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.process-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.process-title {
  font-size: 18px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.process-desc {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ============================================================
   8. CLIENT REVIEWS & TESTIMONIALS CAROUSEL
   ============================================================ */
.reviews-section {
  padding: 90px 0;
  scroll-margin-top: 80px;
  background:
    linear-gradient(180deg, rgba(7, 11, 25, 0.45), transparent 42%),
    #090F22;
  border-top: 1px solid var(--border-color);
}

.reviews-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.1), transparent 34%),
    rgba(16, 27, 54, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.reviews-proof-main {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.reviews-proof-stars,
.review-stars {
  display: flex;
  gap: 4px;
  color: #F2C94C;
  text-shadow: 0 0 14px rgba(242, 201, 76, 0.2);
}

.reviews-proof-stars {
  padding: 11px 13px;
  border: 1px solid rgba(242, 201, 76, 0.25);
  border-radius: 12px;
  background: rgba(242, 201, 76, 0.07);
  font-size: 15px;
}

.reviews-proof-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reviews-proof-copy strong {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
}

.reviews-proof-copy span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.reviews-proof-count {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-proof-count strong {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1.2px;
}

.reviews-proof-count span {
  color: #E5C96E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.reviews-carousel {
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  outline: none;
}

.reviews-viewport:focus-visible {
  box-shadow: 0 0 0 2px #090F22, 0 0 0 4px var(--gold-primary);
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 18px;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 370px;
  background:
    linear-gradient(145deg, rgba(27, 42, 76, 0.96), rgba(12, 20, 43, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: -72px;
  right: -52px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.review-star-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.review-stars {
  font-size: 12px;
}

.review-star-row > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.review-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.review-service {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: #EED276;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.review-index {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.review-quote-mark {
  color: var(--gold-primary);
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 0.6;
  margin-bottom: 14px;
}

.review-text {
  font-size: 15px;
  color: #D9E1F0;
  line-height: 1.72;
  margin-bottom: 26px;
}

.review-identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 17px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.reviewer-name,
.review-identity time {
  min-width: 0;
  display: flex;
}

.reviewer-name strong {
  overflow: hidden;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.15px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.review-identity time {
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.055);
  color: #AAB5C9;
  font-size: 9px;
  font-weight: 700;
  font-style: normal;
  text-align: right;
}

.review-identity time i {
  color: var(--gold-primary);
  font-size: 9px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-context {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
}

.review-context i {
  color: var(--gold-primary);
}

.review-context > span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-context small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.review-context strong {
  overflow: hidden;
  color: #C9D2E3;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.review-anonymous {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #92A0B8;
  background: rgba(255, 255, 255, 0.025);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.review-anonymous i {
  color: var(--gold-primary);
}

.reviews-controls {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto auto;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
}

.reviews-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.reviews-progress span {
  display: block;
  width: 3%;
  height: 100%;
  background: linear-gradient(90deg, #9F7419, #F4DD8B);
  transition: width 0.45s ease;
}

.reviews-status {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.reviews-hint {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
}

.reviews-buttons {
  display: flex;
  gap: 10px;
}

.reviews-nav {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(18, 29, 56, 0.92);
  color: var(--gold-primary);
  cursor: pointer;
  transition: var(--transition);
}

.reviews-nav:hover,
.reviews-nav:focus-visible {
  color: #081023;
  background: var(--gold-primary);
  outline: none;
  transform: translateY(-2px);
}

/* ============================================================
   9. FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 90px 0;
  background: var(--bg-dark);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question i {
  color: var(--gold-primary);
  font-size: 14px;
}

.faq-toggle-icon {
  font-size: 14px;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

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

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

.faq-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Premium FAQ treatment */
.faq-wrapper {
  max-width: 900px;
  gap: 12px;
  counter-reset: faqItem;
}

.faq-item {
  counter-increment: faqItem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(18,28,50,.9), rgba(8,14,28,.96));
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.faq-item.active {
  border-color: rgba(224,189,85,.54);
  box-shadow: 0 20px 42px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.05);
}

.faq-header {
  min-height: 70px;
  padding: 18px 22px;
  gap: 18px;
}

.faq-question {
  flex: 1;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.45;
}

.faq-question::before {
  content: counter(faqItem, decimal-leading-zero);
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(224,189,85,.35);
  border-radius: 50%;
  color: var(--gold-primary);
  background: rgba(224,189,85,.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
}

.faq-question i {
  display: none;
}

.faq-toggle-icon {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(224,189,85,.35);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 0;
  transition: transform .25s ease, background .25s ease;
}

.faq-toggle-icon::before {
  content: "\f067";
  font-size: 12px;
}

.faq-item.active .faq-toggle-icon {
  transform: none;
  background: var(--gold-primary);
  color: #081023;
}

.faq-item.active .faq-toggle-icon::before {
  content: "\f068";
}

.faq-item.active .faq-toggle-icon {
  font-size: 0;
}

.faq-item.active .faq-toggle-icon::before {
  font-size: 12px;
}

.faq-body {
  max-height: 0;
  padding: 0 22px;
}

.faq-item.active .faq-body {
  max-height: 420px;
  padding: 0 22px 22px 68px;
}

.faq-body p {
  color: #aeb9ca;
  font-size: 14px;
  line-height: 1.75;
}

/* ============================================================
   10. BOTTOM CONTACT & MAP
   ============================================================ */
.contact-section {
  padding: 90px 0;
  background: #090F22;
  border-top: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 24px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.channel-details span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-details a {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
}

.channel-details a:hover {
  color: var(--gold-primary);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.contact-form-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
  background: #040711;
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-about p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}

.footer-about .footer-disclaimer {
  margin-top: 12px;
  padding-left: 11px;
  border-left: 2px solid rgba(212, 175, 55, 0.34);
  color: #7f8ba2;
  font-size: 10.5px;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--gold-primary);
}

/* Floating WhatsApp Quick Action Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}

/* ============================================================
   MOBILE BOTTOM BAR (DESKTOP DEFAULT: HIDDEN)
   ============================================================ */
.mobile-bottom-bar {
  display: none !important;
}

/* ============================================================
   ULTRA-PREMIUM PRACTICE AREA HUB DIRECTORY STYLES
   ============================================================ */
.hub-hero-section {
  padding: 60px 0 40px;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.1), transparent 50%),
              radial-gradient(circle at 100% 100%, rgba(14, 22, 46, 0.6), transparent 40%),
              var(--bg-dark);
  border-bottom: 1px solid var(--border-gold-subtle);
  position: relative;
  overflow: hidden;
}

.hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-full);
  color: var(--gold-primary);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hub-title {
  font-size: 38px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.hub-lead {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 820px;
  line-height: 1.65;
  margin-bottom: 26px;
}

/* Real-Time Live Directory Filter Bar */
.hub-search-container {
  max-width: 680px;
  position: relative;
  margin-bottom: 10px;
}

.hub-search-input {
  width: 100%;
  padding: 14px 18px 14px 48px;
  background: rgba(14, 22, 46, 0.9);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  color: #FFFFFF;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hub-search-input:focus {
  border-color: var(--gold-primary);
  background: #0E162E;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.15);
}

.hub-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 16px;
  pointer-events: none;
}

/* Master Directory Grid */
.hub-directory-section {
  padding: 60px 0 80px;
  background: var(--bg-dark);
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.hub-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.hub-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hub-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 18px;
  flex-shrink: 0;
}

.hub-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.hub-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.hub-card-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.hub-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.hub-btn-primary {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.hub-btn-primary:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: #070B19;
}

.hub-btn-primary i {
  transition: transform 0.25s ease;
}

.hub-btn-primary:hover i {
  transform: translateX(4px);
}

.hub-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 38px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-sm);
  color: #25D366;
  font-size: 16px;
  transition: all 0.25s ease;
}

.hub-btn-wa:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (LUXURY EXECUTIVE MOBILE & TABLET)
   ============================================================ */

@media (max-width: 1024px) {
  .hub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mega-menu {
    width: 92vw;
    left: 4vw;
    transform: translateY(10px);
  }
  .nav-item:hover .mega-menu {
    transform: translateY(0);
  }
  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-container {
    grid-template-columns: 1fr;
  }
  .urgency-grid, .reviews-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-card::after {
    display: none;
  }
  .reviews-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-scroll-hint {
    display: block;
    margin: 0 18px 8px;
    color: #E4CA7D;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: right;
    text-transform: uppercase;
    animation: mobileScrollHint 1.8s ease-in-out infinite;
  }

  @keyframes mobileScrollHint {
    0%, 100% { opacity: 0.55; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
  }

  .stats-grid,
  .service-filter-tabs,
  .process-grid,
  .reviews-track {
    scroll-behavior: smooth;
  }

  /* Hide Floating WhatsApp button on Mobile as per user request */
  .whatsapp-btn,
  .floating-whatsapp {
    display: none !important;
  }

  /* Show Mobile Bottom Bar on Mobile */
  .mobile-bottom-bar {
    display: flex !important;
  }

  .hub-hero-section {
    padding: 40px 0 28px;
  }

  .hub-title {
    font-size: 26px;
  }

  .hub-lead {
    font-size: 14px;
  }

  .hub-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hub-card {
    padding: 18px 16px;
  }

  section[id] {
    scroll-margin-top: 62px;
  }

  /* Top Bar */
  .top-bar {
    display: none;
  }

  /* Executive Mobile Header */
  .header {
    padding: 10px 0;
    height: 62px;
    background: rgba(7, 11, 25, 0.98);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  }

  .navbar {
    gap: 8px;
    height: 100%;
  }

  .logo {
    gap: 10px;
  }

  .logo img {
    height: 36px;
  }

  .logo-title {
    font-size: 16.5px;
    letter-spacing: -0.3px;
  }

  .logo-sub {
    font-size: 9.5px;
    letter-spacing: 0.5px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }

  .header-search-btn {
    width: 36px;
    height: 36px;
    font-size: 13.5px;
  }

  .menu-toggle {
    display: flex;
    width: 38px;
    height: 38px;
  }

  /* Slide-Down Mobile Navigation Drawer (Bulletproof & Buttery Smooth) */
  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: #080D1F;
    border-bottom: 2px solid var(--gold-primary);
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
    display: flex; /* Flex display controlled by transform/opacity */
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    color: #FFFFFF;
    font-weight: 600;
    transition: var(--transition);
  }

  .nav-link:active, .nav-link:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-primary);
    color: var(--gold-light);
  }

  /* Mobile Services Sub-Dropdown */
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    display: none;
    padding: 12px 0 0 0;
    background: transparent;
    border: none;
  }

  .nav-item.mobile-open .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: mobileSubMenu 0.2s ease-out;
  }

  @keyframes mobileSubMenu {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mega-search-wrapper {
    padding: 10px 14px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.05);
  }

  .mega-search-input {
    font-size: 14px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    max-height: none;
    gap: 14px;
    overflow: visible;
  }

  /* Mobile Full-Screen Search Modal */
  .search-modal-overlay {
    padding: 10px;
    padding-top: 20px;
    align-items: flex-start;
  }

  .search-modal-card {
    width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
  }

  .search-modal-header {
    padding: 14px 16px;
  }

  .search-modal-input {
    font-size: 15px;
  }

  .search-modal-results {
    padding: 12px 16px;
    max-height: 65vh;
  }

  .search-result-item {
    padding: 12px 14px;
  }

  .search-result-title {
    font-size: 13.5px;
  }

  .search-result-tag {
    font-size: 10px;
    padding: 2px 8px;
  }

  /* Hero Section on Mobile */
  .hero {
    padding: 36px 0 50px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
  }

  .hero-checklist {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-checklist li {
    font-size: 13px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14.5px;
  }

  /* Hero Consultation Card on Mobile */
  .hero-card {
    padding: 22px 16px;
    border-radius: var(--radius-md);
    margin-top: 14px;
    background: #0E162E;
  }

  .hero-card-title {
    font-size: 18.5px;
  }

  .hero-card-subtitle {
    font-size: 12px;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 11px 12px;
  }

  .hero-form .btn-submit {
    padding: 13px;
    font-size: 15px;
  }

  /* Credibility Bar on Mobile (2x2 Grid with 3D Medallions) */
  .trust-bar {
    padding: 22px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-box {
    padding: 14px 10px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 8px;
    background: #0E162E;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
  }

  .stat-box::before {
    display: none;
  }

  .stat-emblem-img {
    width: 48px;
    height: 48px;
    margin: 0 auto;
    border-width: 1.5px;
  }

  .stat-number {
    font-size: 19px;
  }

  .stat-label {
    font-size: 11.5px;
    margin-top: 2px;
  }

  .stat-sub {
    font-size: 10px;
    margin-top: 1px;
  }

  /* Urgency / Risk-Reversal Section */
  .urgency-banner {
    padding: 45px 0;
  }

  .section-tag {
    font-size: 10.5px;
    padding: 4px 12px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .urgency-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .urgency-card {
    padding: 18px 16px;
    border-radius: var(--radius-sm);
  }

  .urgency-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
    border-radius: 10px;
  }

  .urgency-title {
    font-size: 15.5px;
  }

  .urgency-text {
    font-size: 12.5px;
  }

  /* Category Filter Tabs (Swipeable Horizontal Scrollbar) */
  .service-filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 4px 10px;
    margin-bottom: 20px;
    gap: 8px;
    scrollbar-width: none;
  }

  .service-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .service-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 12.5px;
  }

  /* Service Category Hub Cards (The 9 Boxes) */
  .services-section {
    padding: 50px 0;
  }

  .services-grid-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card-hub {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .hub-top {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .hub-illustration {
    width: 52px;
    height: 52px;
    padding: 4px;
  }

  .hub-tag {
    font-size: 9.5px;
  }

  .hub-title {
    font-size: 18px;
    margin: 2px 0 3px;
  }

  .hub-desc {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .hub-subgroup {
    margin-top: 10px;
    padding-top: 10px;
  }

  .hub-subgroup-title {
    font-size: 10.5px;
    margin-bottom: 6px;
  }

  .hub-links-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hub-service-pill {
    padding: 10px 12px;
    font-size: 13px;
    justify-content: space-between;
    border-radius: 6px;
  }

  .hub-service-pill i {
    color: var(--gold-primary);
    font-size: 10px;
  }

  .hub-action-btn {
    font-size: 12.5px;
    width: 100%;
    justify-content: center;
    padding: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
  }

  /* Process Roadmap */
  .process-section {
    padding: 50px 0;
  }

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

  .process-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .process-visual {
    width: 96px;
    height: 96px;
    margin-bottom: 16px;
  }

  .process-title {
    font-size: 16px;
  }

  .process-desc {
    font-size: 13px;
  }

  /* Testimonials */
  .reviews-section {
    padding: 50px 0;
  }

  .reviews-track {
    grid-auto-columns: 100%;
    gap: 14px;
  }

  .review-card {
    min-height: 292px;
    padding: 22px 18px;
    border-radius: 12px;
  }

  .review-text {
    font-size: 13px;
  }

  .reviews-controls {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .reviews-progress {
    grid-column: 1 / -1;
  }

  .reviews-hint {
    display: none;
  }

  .reviews-nav {
    width: 40px;
    height: 40px;
  }

  /* FAQ Accordion */
  .faq-section {
    padding: 50px 0;
  }

  .faq-header {
    padding: 15px 16px;
  }

  .faq-question {
    font-size: 13.5px;
    gap: 8px;
  }

  .faq-body {
    padding: 0 16px 16px;
    font-size: 13px;
  }

  /* Contact & Map */
  .contact-section {
    padding: 50px 0;
  }

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

  .contact-info-card, .contact-form-card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .contact-info-card h3, .contact-form-card h3 {
    font-size: 20px;
  }

  .contact-form-card div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 11.5px;
  }

  /* Mobile Floating Action & Bottom Sticky Bar */
  .floating-whatsapp {
    display: none; /* Replaced by bottom sticky bar on mobile */
  }

  /* High-Converting Mobile Bottom Sticky Quick Action Bar */
  .mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 11, 25, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    display: flex;
    gap: 12px;
    z-index: 997;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  }

  .mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
  }

  .mobile-action-btn:active {
    transform: scale(0.97);
  }

  .mobile-action-call {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
  }

  .mobile-action-call i {
    color: var(--gold-primary);
  }

  .mobile-action-whatsapp {
    flex: 1.25;
    background: linear-gradient(135deg, #25D366 0%, #1EAA52 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }

  body {
    padding-bottom: 72px; /* Ensure content is never blocked by bottom bar */
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 25px;
  }
  .section-title {
    font-size: 21px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .stat-box {
    padding: 12px 8px;
  }
  .stat-emblem-img {
    width: 42px;
    height: 42px;
  }
  .stat-number {
    font-size: 17px;
  }
  .stat-label {
    font-size: 11px;
  }
}

/* ============================================================
   PREMIUM MOBILE EXPERIENCE — LEGAL CONCIERGE EDITION
   Desktop remains governed by the core design system above.
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --mobile-gutter: 18px;
    --mobile-surface: rgba(16, 27, 54, 0.86);
    --mobile-surface-strong: #101A33;
    --mobile-line: rgba(218, 185, 84, 0.22);
    --mobile-gold: #E0BD55;
  }

  html {
    background: #060A16;
  }

  body {
    background:
      radial-gradient(circle at 100% 8%, rgba(31, 57, 113, 0.15), transparent 26%),
      #060A16;
    padding-bottom: 96px;
  }

  .container {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  /* Floating executive header */
  .header {
    height: 68px;
    padding: 10px 0;
    background: rgba(6, 10, 22, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
    backdrop-filter: blur(24px) saturate(135%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }

  .header.mobile-scrolled {
    background: rgba(6, 10, 22, 0.96);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.5);
  }

  .header .container {
    width: calc(100% - 28px);
  }

  .logo {
    min-width: 0;
    gap: 9px;
  }

  .logo img {
    width: 42px;
    height: 42px;
    padding: 2px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid rgba(224, 189, 85, 0.5);
    box-shadow: 0 0 24px rgba(224, 189, 85, 0.12);
  }

  .logo-text {
    min-width: 0;
  }

  .logo-title {
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: -0.45px;
    white-space: nowrap;
  }

  .logo-sub {
    margin-top: 4px;
    font-size: 8px;
    letter-spacing: 0.48px;
    color: #D9BE68;
    white-space: nowrap;
  }

  .header-actions {
    gap: 8px;
  }

  .header-search-btn,
  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .header-search-btn {
    color: var(--mobile-gold);
  }

  .menu-toggle {
    border-color: rgba(224, 189, 85, 0.3);
  }

  .hamburger-line {
    width: 18px;
  }

  .nav-links {
    top: 76px;
    left: 12px;
    right: 12px;
    padding: 14px;
    gap: 7px;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 189, 85, 0.11), transparent 34%),
      rgba(8, 14, 29, 0.98);
    border: 1px solid rgba(224, 189, 85, 0.25);
    border-radius: 22px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.72);
  }

  .nav-link {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.025);
  }

  section[id] {
    scroll-margin-top: 76px;
  }

  /* Editorial mobile hero */
  .hero {
    padding: 32px 0 30px;
    background:
      radial-gradient(circle at 90% 4%, rgba(224, 189, 85, 0.16), transparent 26%),
      radial-gradient(circle at 7% 42%, rgba(35, 74, 147, 0.28), transparent 36%),
      linear-gradient(180deg, #070C1B 0%, #091127 62%, #070B18 100%);
    border-bottom: 0;
  }

  .hero::before {
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
  }

  .hero::after {
    background:
      radial-gradient(circle at 80% 17%, rgba(224, 189, 85, 0.14), transparent 30%),
      linear-gradient(180deg, transparent 62%, rgba(4, 7, 16, 0.66) 100%);
  }

  .hero-guilloche-canvas {
    opacity: 0.35;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
    mask-image: linear-gradient(to bottom, black 0%, transparent 76%);
  }

  .hero .container {
    width: calc(100% - 36px);
  }

  .hero-grid {
    gap: 0;
  }

  .hero-left {
    position: relative;
  }

  .hero-mobile-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    margin-bottom: 18px;
    padding: 7px 11px;
    border: 1px solid rgba(224, 189, 85, 0.26);
    border-radius: 999px;
    background: rgba(224, 189, 85, 0.07);
    color: #E8D38C;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.55px;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .hero-mobile-kicker-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1), 0 0 14px rgba(74, 222, 128, 0.5);
  }

  .hero-mobile-kicker-separator {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.14);
  }

  .hero-title-desktop,
  .hero-description-desktop,
  .cta-desktop-label {
    display: none;
  }

  .hero-title-mobile,
  .hero-description-mobile,
  .cta-mobile-label {
    display: inline;
  }

  .hero-title {
    max-width: 350px;
    margin-bottom: 17px;
    font-size: clamp(34px, 10.2vw, 40px);
    line-height: 1.06;
    letter-spacing: -1.55px;
    text-wrap: balance;
  }

  .hero-title .gold-text {
    color: transparent;
    background: linear-gradient(100deg, #F4DEA0 0%, #E1BB4F 55%, #BB8724 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }

  .hero-description {
    max-width: 345px;
    margin-bottom: 22px;
    color: #B7C2D8;
    font-size: 14.5px;
    line-height: 1.7;
  }

  .hero-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 24px;
  }

  .hero-checklist li {
    min-height: 58px;
    padding: 11px 10px;
    align-items: flex-start;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    color: #F4F7FC;
    font-size: 11.5px;
    line-height: 1.35;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .hero-checklist li i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    flex: 0 0 25px;
    border-radius: 8px;
    background: rgba(224, 189, 85, 0.1);
    color: var(--mobile-gold);
    font-size: 11px;
  }

  .hero-checklist li strong {
    align-self: center;
  }

  .hero-cta-group {
    gap: 9px;
    margin-bottom: 19px;
  }

  .hero-cta-group .btn {
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 13.5px;
    letter-spacing: -0.1px;
  }

  .hero-primary-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center !important;
    padding: 14px 54px 14px 20px !important;
    color: #0B1020;
    font-weight: 700;
    background: linear-gradient(105deg, #F0D582 0%, #D9AE3B 58%, #C58D24 100%);
    border: 1px solid #F2D98E;
    box-shadow: 0 16px 36px rgba(197, 141, 36, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    border-radius: 16px;
    text-align: center;
  }

  .hero-primary-cta > i,
  .hero-primary-cta .hero-cta-arrow {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%) !important;
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #F8E9B7;
    background: #121A31;
    font-size: 13px;
    margin: 0;
    line-height: 1;
  }

  .hero-primary-cta .hero-cta-arrow i {
    position: static !important;
    transform: none !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    color: #F8E9B7 !important;
    font-size: 13px !important;
    margin: 0 !important;
  }

  .hero-cta-group .btn-outline {
    min-height: 46px;
    padding: 10px 16px;
    border-color: transparent;
    background: transparent;
    color: #C7D0E2;
    font-size: 12.5px;
  }

  /* High-value service shortcut dock */
  .mobile-practice-dock {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin: 2px 0 16px;
    padding: 10px;
    border: 1px solid rgba(224, 189, 85, 0.17);
    border-radius: 20px;
    background: rgba(6, 11, 24, 0.7);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.035);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-practice-dock a {
    min-width: 0;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-radius: 14px;
    color: #C8D1E2;
    font-size: 9.5px;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .mobile-practice-dock a:active {
    transform: scale(0.96);
    background: rgba(224, 189, 85, 0.08);
  }

  .mobile-practice-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(224, 189, 85, 0.22);
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(224, 189, 85, 0.12), rgba(224, 189, 85, 0.03));
    color: var(--mobile-gold);
    font-size: 13px;
  }

  /* Collapsible private-enquiry card */
  .hero-right {
    margin-top: 0;
  }

  .hero-card {
    margin-top: 0;
    scroll-margin-top: 80px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(224, 189, 85, 0.24);
    border-radius: 20px;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 189, 85, 0.12), transparent 42%),
      rgba(13, 22, 45, 0.94);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .hero-card-mobile-intro {
    width: 100%;
    min-height: 82px;
    display: grid;
    grid-template-columns: 42px 1fr 34px;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
  }

  .hero-card-mobile-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.28);
    border: 1px solid rgba(212, 175, 55, 0.45);
    flex-shrink: 0;
  }

  .hero-card-mobile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 11px;
  }

  .hero-card-mobile-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .hero-card-mobile-copy strong {
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: -0.2px;
  }

  .hero-card-mobile-copy small {
    overflow: hidden;
    color: #8F9DB8;
    font-size: 10.5px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero-card-mobile-arrow {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 11px;
    color: var(--mobile-gold);
    background: rgba(255, 255, 255, 0.035);
  }

  .hero-card-mobile-arrow i {
    transition: transform 0.28s ease;
  }

  .hero-card.mobile-form-open .hero-card-mobile-arrow i {
    transform: rotate(180deg);
  }

  .hero-card-header {
    display: none;
  }

  .hero-card .hero-form {
    display: none;
    padding: 4px 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
  }

  .hero-card.mobile-form-open .hero-form {
    display: block;
    animation: mobileFormReveal 0.36s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes mobileFormReveal {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-form .form-group {
    margin-bottom: 11px;
  }

  .hero-form label {
    margin-bottom: 5px;
    color: #9DAAC1;
    font-size: 9.5px;
    letter-spacing: 0.8px;
  }

  .hero-form input,
  .hero-form textarea {
    min-height: 48px;
    padding: 12px 13px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.09);
  }

  .hero-form textarea {
    min-height: 92px;
  }

  .hero-form .btn-submit {
    min-height: 50px;
    border-radius: 14px;
  }

  /* Swipeable credibility rail */
  .trust-bar {
    padding: 18px 0 30px;
    background: linear-gradient(180deg, #070B18 0%, #080D1C 100%);
    border-bottom: 0;
  }

  .trust-bar .container {
    width: 100%;
    max-width: none;
  }

  .stats-grid {
    display: flex;
    gap: 11px;
    overflow-x: auto;
    padding: 2px 18px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .stats-grid::-webkit-scrollbar {
    display: none;
  }

  .stat-box {
    flex: 0 0 min(72vw, 278px);
    min-height: 110px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(224, 189, 85, 0.18);
    border-radius: 20px;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 189, 85, 0.1), transparent 42%),
      linear-gradient(145deg, rgba(19, 31, 62, 0.9), rgba(11, 18, 38, 0.96));
    text-align: left;
    scroll-snap-align: start;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .stat-emblem-img {
    width: 58px;
    height: 58px;
    margin: 0;
    border: 1px solid rgba(224, 189, 85, 0.42);
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.42), 0 0 24px rgba(224, 189, 85, 0.09);
  }

  .stat-number {
    font-size: 21px;
    letter-spacing: -0.65px;
  }

  .stat-label {
    margin-top: 4px;
    color: #E4CA7D;
    font-size: 11.5px;
  }

  .stat-sub {
    margin-top: 3px;
    font-size: 10px;
  }

  /* Shared editorial section rhythm */
  .services-section,
  .process-section,
  .reviews-section,
  .faq-section,
  .contact-section {
    padding: 62px 0;
  }

  .services-section,
  .faq-section {
    background:
      radial-gradient(circle at 100% 0%, rgba(35, 74, 147, 0.13), transparent 27%),
      #070B18;
  }

  .section-header {
    margin-bottom: 27px;
    text-align: left;
  }

  .section-tag {
    margin-bottom: 13px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #E6CC7D;
    font-size: 9px;
    letter-spacing: 1.1px;
  }

  .section-title {
    max-width: 350px;
    font-size: clamp(26px, 7.6vw, 32px);
    line-height: 1.13;
    letter-spacing: -1.05px;
    text-wrap: balance;
  }

  .section-subtitle {
    max-width: 345px;
    margin: 12px 0 0;
    color: #92A0BA;
    font-size: 12.5px;
    line-height: 1.65;
  }

  /* Premium services stack */
  .services-section .container {
    width: calc(100% - 32px);
  }

  .service-filter-tabs {
    position: sticky;
    top: 76px;
    z-index: 18;
    margin: 0 -4px 20px;
    padding: 8px 4px;
    border-radius: 15px;
    background: rgba(7, 11, 24, 0.9);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .service-tab-btn {
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 11px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    font-size: 11px;
  }

  .service-tab-btn.active {
    color: #10162A;
    background: linear-gradient(105deg, #EACD72, #C9972E);
    border-color: #E8CC76;
    box-shadow: 0 10px 24px rgba(201, 151, 46, 0.18);
  }

  .services-grid-container {
    gap: 17px;
  }

  .service-card-hub {
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(224, 189, 85, 0.16);
    border-radius: 22px;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 189, 85, 0.08), transparent 34%),
      linear-gradient(150deg, rgba(19, 31, 62, 0.94), rgba(10, 17, 35, 0.98));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .hub-top {
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 17px;
  }

  .hub-illustration {
    width: 62px;
    height: 62px;
    padding: 7px;
    border-radius: 17px;
    background: rgba(224, 189, 85, 0.07);
    border: 1px solid rgba(224, 189, 85, 0.14);
  }

  .hub-tag {
    font-size: 8px;
    letter-spacing: 0.7px;
  }

  .hub-title {
    margin: 3px 0 5px;
    font-size: 18px;
    letter-spacing: -0.45px;
  }

  .hub-desc {
    color: #9BA8C0;
    font-size: 11.5px;
    line-height: 1.55;
  }

  .hub-subgroup {
    margin-top: 13px;
    padding-top: 13px;
    border-top-color: rgba(255, 255, 255, 0.065);
  }

  .hub-subgroup-title {
    color: #DCC679;
    font-size: 9px;
    letter-spacing: 0.85px;
  }

  .hub-links-grid {
    gap: 7px;
  }

  .hub-service-pill {
    min-height: 44px;
    padding: 11px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.07);
    color: #CDD5E4;
    font-size: 11.5px;
  }

  .hub-footer {
    margin-top: 16px;
  }

  /* Swipeable four-step legal journey */
  .process-section {
    background:
      radial-gradient(circle at 0% 0%, rgba(224, 189, 85, 0.1), transparent 30%),
      #090F22;
  }

  .process-section .container {
    width: 100%;
    max-width: none;
  }

  .process-section .section-header {
    padding: 0 18px;
  }

  .process-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 330px);
    gap: 12px;
    overflow-x: auto;
    padding: 5px 18px 19px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .process-grid::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    min-height: 350px;
    padding: 22px 20px 24px;
    border: 1px solid rgba(224, 189, 85, 0.2);
    border-radius: 22px;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 189, 85, 0.08), transparent 36%),
      linear-gradient(155deg, rgba(24, 39, 76, 0.96), rgba(11, 19, 40, 0.99));
    scroll-snap-align: center;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .process-step-num {
    top: 18px;
    left: 18px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .process-visual {
    width: 118px;
    height: 118px;
    margin: 4px auto 26px;
  }

  .process-title {
    margin-bottom: 11px;
    font-size: 19px;
    letter-spacing: -0.45px;
  }

  .process-desc {
    color: #A7B2C8;
    font-size: 13px;
    line-height: 1.68;
  }

  /* Testimonial feature cards */
  .reviews-section {
    background:
      radial-gradient(circle at 100% 0%, rgba(35, 74, 147, 0.16), transparent 29%),
      #070B18;
  }

  .reviews-section .container {
    width: calc(100% - 32px);
  }

  .reviews-proof {
    gap: 14px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 18px;
  }

  .reviews-proof-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .reviews-proof-stars {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  .reviews-proof-copy strong {
    font-size: 12.5px;
  }

  .reviews-proof-copy span {
    font-size: 9.5px;
    line-height: 1.5;
  }

  .reviews-proof-count {
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    padding-left: 14px;
  }

  .reviews-proof-count strong {
    font-size: 32px;
  }

  .reviews-proof-count span {
    font-size: 8px;
  }

  .reviews-track {
    grid-auto-columns: calc(100% - 26px);
    gap: 10px;
    padding-bottom: 14px;
  }

  .review-card {
    min-height: 440px;
    padding: 24px 20px;
    border-radius: 22px;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 189, 85, 0.1), transparent 36%),
      linear-gradient(150deg, rgba(24, 39, 76, 0.96), rgba(10, 18, 38, 0.99));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }

  .review-service {
    max-width: 58%;
    padding: 6px 9px;
    font-size: 8.5px;
    letter-spacing: 0.55px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .review-star-row {
    margin-bottom: 16px;
  }

  .review-stars {
    font-size: 11px;
  }

  .review-index {
    font-size: 8px;
  }

  .review-text {
    font-size: 13.5px;
    line-height: 1.75;
  }

  .review-identity {
    gap: 10px;
    margin-bottom: 15px;
    padding: 0 0 12px;
  }

  .reviewer-name strong {
    max-width: 145px;
    font-size: 13px;
  }

  .review-identity time {
    font-size: 8.5px;
  }

  .review-context strong {
    max-width: 150px;
  }

  .review-anonymous {
    padding: 5px 7px;
    font-size: 7.5px;
  }

  .reviews-controls {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin-top: 15px;
  }

  .reviews-progress {
    grid-column: auto;
  }

  .reviews-status {
    display: none;
  }

  .reviews-nav {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  /* Elevated FAQ and contact surfaces */
  .faq-wrapper {
    gap: 10px;
  }

  .faq-item {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    background: rgba(16, 27, 54, 0.72);
  }

  .faq-item.active {
    border-color: rgba(224, 189, 85, 0.28);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  }

  .faq-header {
    min-height: 62px;
    padding: 16px;
  }

  .faq-question {
    color: #E8EDF7;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .faq-question i {
    color: var(--mobile-gold);
  }

  .contact-section {
    background:
      radial-gradient(circle at 0% 0%, rgba(224, 189, 85, 0.1), transparent 30%),
      #090F22;
  }

  .contact-grid {
    gap: 14px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 20px 17px;
    border: 1px solid rgba(224, 189, 85, 0.17);
    border-radius: 22px;
    background:
      radial-gradient(circle at 100% 0%, rgba(224, 189, 85, 0.08), transparent 36%),
      linear-gradient(150deg, rgba(20, 33, 65, 0.95), rgba(10, 17, 35, 0.99));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .contact-info-card h3,
  .contact-form-card h3 {
    font-size: 21px;
    letter-spacing: -0.55px;
  }

  .contact-form-card .hero-form input,
  .contact-form-card .hero-form textarea {
    border-radius: 13px;
  }

  /* Compact premium footer */
  .footer {
    padding: 48px 0 26px;
    background: #050812;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-col:not(.footer-about) {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    min-height: 34px;
    font-size: 12.5px;
  }

  /* Floating mobile action dock */
  .mobile-bottom-bar {
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    right: 12px;
    padding: 8px;
    border: 1px solid rgba(224, 189, 85, 0.24);
    border-radius: 22px;
    background: rgba(8, 13, 28, 0.9);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    backdrop-filter: blur(24px) saturate(130%);
  }

  .mobile-action-btn {
    height: 50px;
    border-radius: 15px;
    font-size: 12.5px;
  }

  .mobile-action-call {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .mobile-action-whatsapp {
    background: linear-gradient(115deg, #35D96D, #1BA94C);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.18);
  }

  /* Gentle scroll-entry motion */
  .mobile-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.62s ease, transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--mobile-reveal-delay, 0ms);
  }

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

@media (max-width: 374px) {
  .logo-title {
    font-size: 14.5px;
  }

  .logo-sub {
    font-size: 7.2px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-mobile-kicker {
    font-size: 8.5px;
  }

  .mobile-practice-dock a {
    font-size: 8.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-reveal,
  .hero-card.mobile-form-open .hero-form {
    animation: none !important;
    transition: none !important;
  }
}
