/* ==========================================================================
   MHLL LTD — Architectural Construction Showcase Design System
   Company Reg: 16338908 | 15 Havelock Road, Oxford, England, OX4 3EP
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* Color Tokens */
  --bg-main: #080B10;
  --bg-surface-1: #0E141E;
  --bg-surface-2: #141C2B;
  --bg-surface-3: #1A2538;
  --bg-glass: rgba(14, 20, 30, 0.72);
  --bg-glass-card: rgba(20, 28, 43, 0.65);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(217, 155, 74, 0.28);
  --border-accent-strong: rgba(217, 155, 74, 0.6);

  --accent-gold: #D99B4A;
  --accent-gold-light: #F4C47B;
  --accent-gold-glow: rgba(217, 155, 74, 0.25);
  --accent-copper: #C26E38;
  --accent-blue: #38BDF8;
  --accent-green: #10B981;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-inverse: #080B10;

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Transitions & Shadows */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
  --shadow-sm: 0 4px 20px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 35px var(--accent-gold-glow);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 9999px;

  --container-max: 1320px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(ellipse 60% 40% at 50% -10%, rgba(217, 155, 74, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 30% at 85% 60%, rgba(56, 189, 248, 0.05), transparent 60%);
}

/* Architectural Grid Texture Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-size: 50px 50px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-surface-3);
  border-radius: 4px;
  border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

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

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

section[id] {
  scroll-margin-top: clamp(80px, 10vh, 110px);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  position: relative;
  z-index: 1;
}

/* Section Common Header */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(32px, 5vw, 60px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(217, 155, 74, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: clamp(0.72rem, 1.8vw, 0.8rem);
  font-family: var(--font-mono);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold-light);
  margin-bottom: 14px;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 8px var(--accent-gold);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-title .gradient-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--accent-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: clamp(0.92rem, 1.8vw, 1.06rem);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
  gap: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  color: #080B10;
  font-weight: 700;
  box-shadow: 0 8px 24px -4px rgba(217, 155, 74, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -4px rgba(217, 155, 74, 0.65);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  backdrop-filter: blur(12px);
}

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

.btn-outline {
  border: 1px solid var(--border-accent);
  color: var(--accent-gold-light);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: #080B10;
  box-shadow: var(--shadow-glow);
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

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

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(8, 11, 16, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-symbol {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--bg-surface-2), var(--bg-surface-3));
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  position: relative;
  flex-shrink: 0;
}

.logo-symbol::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px dashed rgba(217, 155, 74, 0.4);
  border-radius: 8px;
  pointer-events: none;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.1;
  white-space: nowrap;
}

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

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s ease;
  border-radius: 2px;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile drawer contact is hidden on desktop */
.mobile-drawer-contact {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Header Phone Action Button */
.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(217, 155, 74, 0.08);
  border: 1px solid var(--border-accent);
  color: var(--accent-gold-light);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.header-phone-btn:hover {
  background: rgba(217, 155, 74, 0.2);
  border-color: var(--accent-gold);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(217, 155, 74, 0.25);
}

.header-phone-btn svg {
  color: var(--accent-gold);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-menu {
    gap: 10px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .header-phone-btn span {
    display: none;
  }
  .header-phone-btn {
    padding: 7px 10px;
  }
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-primary);
}

.hamburger-icon {
  width: 26px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: auto;
  padding-top: clamp(110px, 14vh, 145px);
  padding-bottom: clamp(50px, 8vh, 80px);
  display: flex;
  align-items: center;
  overflow: visible;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) contrast(1.12);
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 11, 16, 0.75) 0%,
      rgba(8, 11, 16, 0.45) 40%,
      rgba(8, 11, 16, 0.88) 85%,
      var(--bg-main) 100%);
}

.hero-radial-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 155, 74, 0.18), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Floating Verification Pill */
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(14, 20, 30, 0.78);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(16px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.reg-icon {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
}

.hero-trust-badge .badge-text {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-primary);
  letter-spacing: 0.04em;
}

.hero-trust-badge .badge-text strong {
  color: var(--accent-gold-light);
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-title .title-accent {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-gold-light) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.2rem;
  color: #CBD5E1;
  max-width: 660px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

/* Real-time Ticker in Hero */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 1040px;
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-value .suffix {
  color: var(--accent-gold);
  font-size: 1.6rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ==========================================================================
   Credentials & Companies House Trust Banner
   ========================================================================== */
.trust-strip {
  position: relative;
  z-index: 10;
  margin-top: 0;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.trust-card {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg), 0 0 25px rgba(217, 155, 74, 0.08);
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 30px;
  align-items: center;
}

.trust-reg-info {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--border-subtle);
  padding-right: 24px;
}

.gov-seal-icon {
  width: 52px;
  height: 52px;
  background: rgba(217, 155, 74, 0.12);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.reg-details h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reg-details h4 .badge-live {
  background: rgba(16, 185, 129, 0.18);
  color: var(--accent-green);
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.reg-details p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

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

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

.pillar-icon {
  color: var(--accent-gold-light);
  display: flex;
}

.pillar-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.pillar-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Spacings
   ========================================================================== */
.section {
  padding: clamp(52px, 8vw, 96px) 0;
  position: relative;
}

/* Contact Quick Action Buttons */
.contact-quick-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.quick-call-btn,
.quick-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.quick-call-btn {
  background: rgba(217, 155, 74, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid var(--border-accent);
}

.quick-call-btn:hover {
  background: var(--accent-gold);
  color: #080B10;
  box-shadow: 0 4px 14px rgba(217, 155, 74, 0.35);
}

.quick-whatsapp-btn {
  background: rgba(16, 185, 129, 0.15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.quick-whatsapp-btn:hover {
  background: #10B981;
  color: #080B10;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* Mobile Sticky Bottom Quick-Action Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(8, 11, 16, 0.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-accent);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.65);
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.sticky-bar-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.sticky-bar-btn.sticky-call {
  background: var(--bg-surface-2);
  color: var(--accent-gold-light);
  border: 1px solid var(--border-accent);
}

.sticky-bar-btn.sticky-call:hover,
.sticky-bar-btn.sticky-call:active {
  background: rgba(217, 155, 74, 0.2);
}

.sticky-bar-btn.sticky-consult {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  color: #080B10;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(217, 155, 74, 0.4);
}

.sticky-bar-btn.sticky-consult:active {
  filter: brightness(1.1);
}

/* Body lock when mobile nav open */
body.nav-open {
  overflow: hidden;
}

/* ==========================================================================
   Responsive Overrides
   ========================================================================== */
@media (max-width: 1024px) {
  /* Switch to Mobile / Tablet Navigation Drawer */
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--bg-surface-2);
    border: 1px solid var(--border-subtle);
    padding: 10px;
    cursor: pointer;
  }

  .nav-menu {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 11, 16, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px 100px;
    border-bottom: 1px solid var(--border-accent);
    box-shadow: var(--shadow-lg);
    gap: 12px;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }

  .nav-menu.open {
    display: flex;
    animation: menuSlideDown 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-link {
    display: block;
    padding: 14px 6px;
    font-size: 1.05rem;
    font-weight: 600;
  }

  .nav-link::after {
    display: none;
  }

  /* Direct Phone Call in Mobile Drawer */
  .mobile-drawer-contact {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-accent);
  }

  .mobile-drawer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-surface-2);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    color: var(--accent-gold-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
  }

  /* Compact Header Action Buttons - Always Visible */
  .header-phone-btn span {
    display: none;
  }

  .header-phone-btn {
    display: inline-flex;
    padding: 9px 12px;
  }

  .nav-actions .btn {
    display: inline-flex;
    padding: 9px 16px;
    font-size: 0.82rem;
  }

  .trust-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .trust-reg-info {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-right: 0;
    padding-bottom: 18px;
  }

  .trust-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  /* Mobile Sticky Bar & Body Spacing */
  .mobile-sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: 64px;
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header.scrolled {
    padding: 8px 0;
  }

  .logo-symbol {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-sub {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  /* Hero Section Mobile Compact */
  .hero-section {
    min-height: auto;
    padding-top: 86px;
    padding-bottom: 40px;
  }

  .hero-trust-badge {
    padding: 6px 12px;
    gap: 8px;
    margin-bottom: 18px;
    max-width: 100%;
    white-space: normal;
  }

  .hero-trust-badge .badge-text {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.7rem);
    letter-spacing: -0.02em;
    line-height: 1.14;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    width: 100%;
  }

  .hero-cta-group .btn {
    padding: 12px 14px;
    font-size: 0.86rem;
    width: 100%;
    justify-content: center;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-top: 18px;
  }

  .hero-stat-card {
    background: rgba(14, 20, 30, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    text-align: center;
    align-items: center;
  }

  .stat-value {
    font-size: 1.45rem;
    justify-content: center;
  }

  .stat-value .suffix {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.72rem;
    line-height: 1.25;
    margin-top: 2px;
  }

  /* Trust Strip Mobile */
  .trust-strip {
    margin-top: 0;
    margin-bottom: 36px;
  }

  .trust-card {
    padding: 18px 14px;
    gap: 14px;
  }

  .trust-reg-info {
    gap: 12px;
    padding-bottom: 12px;
  }

  .gov-seal-icon {
    width: 42px;
    height: 42px;
  }

  .reg-details h4 {
    font-size: 0.95rem;
  }

  .reg-details p {
    font-size: 0.78rem;
  }

  .trust-pillars {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pillar-item {
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 480px) {
  .header-phone-btn {
    display: none;
  }

  .nav-actions .btn {
    padding: 8px 12px;
    font-size: 0.76rem;
  }
}

@media (max-width: 400px) {
  .brand-sub {
    display: none;
  }
}