@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,600;1,700&display=swap');

/* ==========================================================================
   KINGDOM LEGAL CHAMBERS LLP — ULTRA-PREMIUM BRITISH EXECUTIVE STYLESHEET
   Apple-grade Minimalist Luxury & Mayfair Advisory Distinction
   ========================================================================== */

:root {
  /* British Sovereign & Mayfair Executive Palette */
  --uk-navy-deep: #050d1a;
  --uk-navy: #00205b;
  --uk-navy-hover: #00153d;
  --uk-navy-soft: #f0f4fa;
  --uk-navy-border: #cbd8ec;

  --uk-gold: #c59b27;
  --uk-gold-light: #d8b248;
  --uk-gold-rich: #9e7512;
  --uk-gold-soft: #fcf9f0;
  --uk-gold-border: rgba(197, 155, 39, 0.3);
  --gold-gradient: linear-gradient(135deg, #b88716 0%, #e6ca65 45%, #c59b27 75%, #996e0f 100%);
  --gold-glow: 0 4px 20px rgba(197, 155, 39, 0.25);

  --uk-red: #c8102e;
  --uk-red-soft: #fdf2f4;
  --uk-red-border: #f9ccd4;

  /* Apple Pearl White & Alabaster Palette */
  --pearl-white: #ffffff;
  --pearl-subtle: #f8fafc;
  --pearl-canvas: #f4f6f9;
  --pearl-card: #ffffff;

  --text-dark: #0a1120;
  --text-primary: #1e293b;
  --text-secondary: #57657a;
  --text-tertiary: #8896ab;

  --border-light: rgba(0, 32, 91, 0.08);
  --border-subtle: rgba(0, 0, 0, 0.04);
  --border-gold-subtle: rgba(197, 155, 39, 0.18);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  --shadow-apple-sm: 0 2px 10px rgba(0, 32, 91, 0.04);
  --shadow-apple-md: 0 10px 30px rgba(0, 32, 91, 0.06);
  --shadow-apple-lg: 0 20px 50px rgba(0, 32, 91, 0.09);
  --shadow-luxury: 0 16px 45px rgba(6, 16, 30, 0.08);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --container-max: 1180px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--pearl-canvas);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-bottom: 4rem; /* room for mobile sticky concierge dock */
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1.18;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TOP BRITISH HERITAGE ACCENT LINE (Navy, White, Red, Gold)
   ========================================================================== */
.top-heritage-line {
  height: 3.5px;
  width: 100%;
  background: linear-gradient(90deg, 
    var(--uk-navy) 0%, 
    var(--uk-navy) 40%, 
    var(--uk-gold) 40%, 
    var(--uk-gold) 48%, 
    var(--uk-red) 48%, 
    var(--uk-red) 56%, 
    var(--uk-gold) 56%, 
    var(--uk-gold) 64%, 
    var(--uk-navy) 64%, 
    var(--uk-navy) 100%
  );
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
}

/* ==========================================================================
   LUXURY EXECUTIVE TOP BAR (London Mayfair Status Ticker)
   ========================================================================== */
.luxury-top-bar {
  background: var(--uk-navy-deep);
  color: #ffffff;
  font-size: 0.76rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(197, 155, 39, 0.2);
  position: relative;
  z-index: 1050;
  margin-top: 3.5px;
}

.luxury-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.luxury-top-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.top-meta-separator {
  color: rgba(255, 255, 255, 0.25);
}

.top-meta-text {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.luxury-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ffffff;
  padding: 0.15rem 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.top-wa-badge:hover {
  background: rgba(197, 155, 39, 0.2);
  border-color: var(--uk-gold);
  color: #ffffff;
}

.rating-gold {
  color: #fbbf24;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ==========================================================================
   APPLE-STYLE FROSTED EXECUTIVE NAVBAR
   ========================================================================== */
.apple-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 32, 91, 0.03);
  height: 4.25rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-crest-box {
  width: 40px;
  height: 40px;
  background: var(--uk-navy-deep);
  border: 1.5px solid var(--uk-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 32, 91, 0.2), inset 0 0 10px rgba(197, 155, 39, 0.2);
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-brand:hover .brand-crest-box {
  border-color: #ffd700;
  transform: scale(1.04);
}

.brand-crest-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.brand-titles {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--uk-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--uk-gold-rich);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  transition: var(--transition);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--uk-gold);
  transition: width 0.25s ease;
}

.nav-item:hover {
  color: var(--uk-navy);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ==========================================================================
   PILL BUTTONS (APPLE LUXURY CRAFTED)
   ========================================================================== */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.pill-btn-sm {
  padding: 0.4rem 0.95rem;
  font-size: 0.78rem;
}

.pill-btn-lg {
  padding: 0.8rem 1.85rem;
  font-size: 0.96rem;
}

.pill-btn-block {
  width: 100%;
}

/* Gold Sovereign Luxury Button */
.pill-btn-gold {
  background: var(--gold-gradient);
  color: var(--uk-navy-deep);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 16px rgba(197, 155, 39, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.pill-btn-gold:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 22px rgba(197, 155, 39, 0.45);
  background: linear-gradient(135deg, #c59b27 0%, #fae58d 45%, #d4af37 75%, #a87d18 100%);
}

.pill-btn-primary {
  background: var(--uk-navy);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 32, 91, 0.25);
}

.pill-btn-primary:hover {
  background: var(--uk-navy-hover);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 22px rgba(0, 32, 91, 0.35);
}

.pill-btn-secondary {
  background: #ffffff;
  color: var(--uk-navy);
  border-color: var(--border-light);
  box-shadow: var(--shadow-apple-sm);
}

.pill-btn-secondary:hover {
  background: var(--pearl-subtle);
  border-color: var(--uk-gold);
  color: var(--uk-gold-rich);
  transform: translateY(-1px);
}

.pill-btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.pill-btn-whatsapp:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: rgba(0, 32, 91, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.55rem;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--uk-navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Sheet (Full-Screen Executive Portal Overlay) */
.mobile-nav-sheet {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-sheet.active {
  transform: translateY(0);
}

.mobile-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-close-btn {
  background: rgba(0, 32, 91, 0.06);
  border: none;
  font-size: 1.8rem;
  color: var(--uk-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-sheet-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.mobile-sheet-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--uk-navy);
  letter-spacing: -0.02em;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-sheet-links a span {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--uk-gold);
  background: var(--uk-gold-soft);
  border: 1px solid var(--uk-gold-border);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
}

.mobile-sheet-links a:hover {
  background: var(--uk-navy-soft);
  color: var(--uk-navy);
}

.mobile-sheet-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.mobile-sheet-contact-box {
  background: var(--uk-navy-deep);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  color: #ffffff;
}

.mobile-desk-status {
  display: block;
  font-size: 0.75rem;
  color: #4ade80;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   HERO SECTION: ULTRA-PREMIUM BRITISH EXECUTIVE STYLING
   ========================================================================== */
.apple-hero {
  padding: 4.5rem 0 3.75rem;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, var(--pearl-canvas) 100%);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

/* Subtle background architectural radial glow */
.apple-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(197, 155, 39, 0.08) 0%, rgba(0, 32, 91, 0.04) 50%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #ffffff;
  border: 1px solid var(--uk-gold-border);
  box-shadow: 0 2px 10px rgba(197, 155, 39, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.15rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--uk-navy);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow-insignia {
  font-size: 0.95rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--uk-navy-deep);
  margin-bottom: 1.35rem;
  max-width: 950px;
  letter-spacing: -0.025em;
}

.headline-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-style: italic;
  font-weight: 800;
}

.hero-subhead {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 760px;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.tagline-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  max-width: 860px;
}

.tag-pill {
  background: #ffffff;
  color: var(--uk-navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--uk-navy-border);
  box-shadow: 0 1px 4px rgba(0, 32, 91, 0.04);
  transition: var(--transition);
}

.tag-pill:hover {
  border-color: var(--uk-gold);
  color: var(--uk-gold-rich);
  transform: translateY(-1px);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.75rem;
}

/* ==========================================================================
   HERO STAGE WRAPPER & CINEMATIC MAYFAIR BOARDROOM SHOWCASE
   ========================================================================== */
.hero-stage-wrapper {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto 3.5rem;
  position: relative;
  border-radius: var(--radius-xl);
  padding: 6px;
  background: linear-gradient(135deg, rgba(197, 155, 39, 0.4) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(0, 32, 91, 0.25) 100%);
  box-shadow: 0 24px 65px rgba(5, 13, 26, 0.12), 0 4px 20px rgba(197, 155, 39, 0.18);
}

.hero-stage-frame {
  position: relative;
  width: 100%;
  height: clamp(260px, 46vw, 530px);
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  background: var(--uk-navy-deep);
}

.hero-stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stage-wrapper:hover .hero-stage-img {
  transform: scale(1.03);
}

.hero-stage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.25rem 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(5, 13, 26, 0) 0%, rgba(5, 13, 26, 0.85) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #ffffff;
  gap: 1rem;
  flex-wrap: wrap;
}

.stage-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}

.stage-caption strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.stage-caption span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Division Bento Visual Photo Cards */
.division-visual-card {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--uk-gold-border);
  box-shadow: 0 4px 16px rgba(0, 32, 91, 0.08);
  margin-bottom: 1.5rem;
}

.division-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.division-bento-hero:hover .division-visual-img {
  transform: scale(1.04);
}

.division-visual-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(5, 13, 26, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--uk-gold-border);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   BENTO STATS BAR (4 LUXURY CARDS)
   ========================================================================== */
.bento-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 1060px;
}

.bento-metric-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-apple-sm);
  transition: var(--transition);
}

.metric-accent-line {
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 0 0 3px 3px;
}

.bento-metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-apple-md);
  border-color: var(--uk-gold-border);
}

.metric-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--uk-navy);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.metric-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.metric-caption {
  font-size: 0.74rem;
  color: var(--text-secondary);
  line-height: 1.4;
  display: block;
}

/* ==========================================================================
   SERVICES SECTION (APPLE-STYLE SEGMENTED CONTROLS & BENTO PANE)
   ========================================================================== */
.services-section {
  padding: 5rem 0;
  background: var(--pearl-canvas);
}

.section-head {
  margin-bottom: 2.75rem;
}

.text-center {
  text-align: center;
}

.section-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--uk-navy);
  background: #ffffff;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  border: 1px solid var(--uk-gold-border);
  box-shadow: 0 2px 6px rgba(197, 155, 39, 0.1);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--uk-navy-deep);
  margin-bottom: 0.65rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Segmented Control Bar (Apple Native Scrollable Dock) */
.segmented-control-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.25rem;
  overflow-x: auto;
  padding: 0.5rem 0.5rem 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Chrome/Safari/Firefox */
}

.segmented-control-wrapper::-webkit-scrollbar {
  display: none;
}

.segmented-control {
  display: inline-flex;
  background: #ffffff;
  padding: 5px;
  border-radius: var(--radius-pill);
  gap: 5px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-apple-sm);
  max-width: 100%;
}

.segment-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.segment-btn:hover {
  color: var(--uk-navy);
}

.segment-btn.active {
  background: var(--uk-navy);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 32, 91, 0.25);
}

.segment-icon {
  font-size: 1.05rem;
}

/* Division Bento Hero */
.division-pane {
  display: none;
}

.division-pane.active {
  display: block;
  animation: appleFadeIn 0.35s ease-out;
}

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

.division-bento-hero {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-apple-md);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  align-items: start;
  position: relative;
}

.division-gold-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--uk-navy-deep);
  background: var(--gold-gradient);
  letter-spacing: 0.08em;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-xs);
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 6px rgba(197, 155, 39, 0.25);
}

.division-hero-title {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--uk-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.division-hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.bento-hero-actions {
  margin-top: 1rem;
}

.regulatory-chip {
  background: var(--uk-red-soft);
  border: 1px solid var(--uk-red-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: #9e0b22;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.service-capsule {
  background: var(--pearl-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
}

.service-capsule:hover {
  background: #ffffff;
  border-color: var(--uk-gold);
  color: var(--uk-navy);
  box-shadow: var(--shadow-apple-sm);
  transform: translateY(-1px);
}

.capsule-num {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--uk-gold-rich);
  background: #ffffff;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--uk-gold-border);
  box-shadow: 0 1px 3px rgba(197, 155, 39, 0.15);
}

/* ==========================================================================
   APPLE INTERACTIVE STRATEGIC DIAGNOSTIC
   ========================================================================== */
.diagnostic-section {
  padding: 5rem 0;
  background: #ffffff;
}

.diagnostic-apple-card {
  background: var(--pearl-canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 3.25rem 3rem;
  box-shadow: var(--shadow-apple-md);
  max-width: 920px;
  margin: 0 auto;
}

.diagnostic-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.step-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-tertiary);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.step-pill.active {
  color: #ffffff;
  background: var(--uk-navy);
  border-color: var(--uk-navy);
  box-shadow: 0 2px 8px rgba(0, 32, 91, 0.2);
}

.step-divider {
  width: 16px;
  height: 2px;
  background: var(--border-light);
}

.diag-step-pane {
  display: none;
}

.diag-step-pane.active {
  display: block;
  animation: appleFadeIn 0.3s ease-out;
}

.diag-question {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--uk-navy-deep);
}

.diag-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-bottom: 2.25rem;
}

.diag-select-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.diag-select-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.select-card-inner {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  height: 100%;
  transition: var(--transition);
}

.select-card-inner:hover {
  border-color: var(--uk-navy-border);
  box-shadow: var(--shadow-apple-sm);
  transform: translateY(-1px);
}

.diag-select-card input[type="radio"]:checked + .select-card-inner {
  border-color: var(--uk-navy);
  background: var(--uk-navy-soft);
  box-shadow: 0 0 0 2px var(--uk-navy);
}

.card-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.5rem;
}

.select-card-inner strong {
  display: block;
  font-size: 0.98rem;
  color: var(--uk-navy);
  margin-bottom: 0.25rem;
}

.select-card-inner p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.diag-inputs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
  margin-bottom: 2.25rem;
}

.input-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.apple-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #ffffff;
  font-size: 0.92rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.apple-select:focus {
  border-color: var(--uk-navy);
  box-shadow: 0 0 0 3px var(--uk-navy-soft);
}

.diag-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Blueprint Card */
.blueprint-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--uk-gold-border);
  padding: 2.25rem;
  box-shadow: var(--shadow-apple-md);
  text-align: center;
}

.blueprint-badge {
  display: inline-block;
  background: #22c55e;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}

.blueprint-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--uk-navy);
  margin-bottom: 1.35rem;
}

.blueprint-meta-strip {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.25rem;
  background: var(--pearl-canvas);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-light);
}

.blueprint-meta-strip strong {
  color: var(--uk-navy);
}

.blueprint-body {
  text-align: left;
  background: var(--uk-navy-soft);
  border: 1px solid var(--uk-navy-border);
  border-radius: var(--radius-sm);
  padding: 1.35rem;
  margin-bottom: 1.75rem;
}

.blueprint-body strong {
  display: block;
  color: var(--uk-navy);
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.blueprint-body p {
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.55;
}

.blueprint-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   WHO WE WORK WITH (LUXURY CLIENT PORTFOLIO BENTO)
   ========================================================================== */
.clients-section {
  padding: 5rem 0;
  background: var(--pearl-canvas);
}

.clients-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.client-bento-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  box-shadow: var(--shadow-apple-sm);
}

.client-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-apple-md);
  border-color: var(--uk-gold-border);
}

.client-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.85rem;
}

.client-bento-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--uk-navy);
  margin-bottom: 0.45rem;
}

.client-bento-card p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ==========================================================================
   METHODOLOGY: EXECUTIVE 4-STAGE FRAMEWORK
   ========================================================================== */
.method-section {
  padding: 5rem 0;
  background: #ffffff;
}

.method-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.method-card {
  background: var(--pearl-canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.35rem;
  position: relative;
  transition: var(--transition);
}

.method-card:hover {
  background: #ffffff;
  border-color: var(--uk-gold-border);
  box-shadow: var(--shadow-apple-sm);
  transform: translateY(-2px);
}

.method-step-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--uk-gold-rich);
  background: #ffffff;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--uk-gold-border);
  margin-bottom: 0.65rem;
  letter-spacing: 0.05em;
}

.method-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--uk-navy);
  margin-bottom: 0.45rem;
}

.method-card p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   CONTACT SECTION (LUXURY EXECUTIVE PRIVATE CONSULTATION)
   ========================================================================== */
.contact-section {
  padding: 5rem 0;
  background: var(--pearl-canvas);
}

.contact-card-apple {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-luxury);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3.5rem;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--uk-navy);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.contact-subhead {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hotline-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  padding: 1.15rem 1.35rem;
  transition: var(--transition);
  margin-bottom: 1.5rem;
}

.hotline-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.15);
}

.hotline-icon {
  font-size: 1.85rem;
}

.hotline-pill strong {
  display: block;
  font-size: 0.94rem;
  color: #15803d;
}

.hotline-pill span {
  font-size: 0.78rem;
  color: #475569;
}

.nda-badge-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.76rem;
  color: var(--text-tertiary);
  line-height: 1.45;
  padding: 0.75rem 1rem;
  background: var(--pearl-canvas);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.nda-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
  margin-bottom: 0.95rem;
}

.field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.apple-input {
  width: 100%;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--pearl-canvas);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.apple-input:focus {
  background: #ffffff;
  border-color: var(--uk-navy);
  box-shadow: 0 0 0 3px var(--uk-navy-soft);
}

/* ==========================================================================
   LUXURY MINIMALIST FOOTER
   ========================================================================== */
.apple-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 3.5rem 0 2.5rem;
}

.footer-legal-notice {
  font-size: 0.74rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.75rem;
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-brand-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--uk-navy);
  font-weight: 800;
}

.footer-brand-info span {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.footer-nav-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-nav-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.footer-nav-links a:hover {
  color: var(--uk-navy);
}

.footer-copyright {
  font-size: 0.74rem;
  color: var(--text-tertiary);
}

/* ==========================================================================
   MOBILE ULTRA-PREMIUM CONCIERGE DOCK (UK Executive Mobile Experience)
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(5, 13, 26, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--uk-gold-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.5rem;
  z-index: 1000;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.25rem;
  width: 100%;
}

.sticky-btn-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.live-dot-green {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: livePulse 2s infinite;
}

.sticky-btn-action {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--uk-gold);
  letter-spacing: -0.01em;
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATIONS (UK MOBILE EXPERIENCE SPECIFIC)
   ========================================================================== */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .bento-metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .division-bento-hero {
    grid-template-columns: 1fr;
    padding: 2.25rem;
    gap: 2rem;
  }
  .contact-card-apple {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }
  .clients-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .method-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 5.5rem; /* Ensure footer clear of mobile concierge dock */
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Luxury Top Bar Mobile — Single-Line Centered Status */
  .luxury-top-bar {
    padding: 0.3rem 0;
    overflow: hidden;
  }
  .luxury-top-inner {
    justify-content: center;
  }
  .luxury-top-left {
    justify-content: center;
    gap: 0;
    width: 100%;
  }
  .live-status-pill {
    font-size: 0.68rem;
    padding: 0.15rem 0.55rem;
    white-space: nowrap;
  }
  .luxury-top-left .top-meta-separator,
  .luxury-top-left .top-meta-text,
  .luxury-top-right {
    display: none !important;
  }

  /* Apple-Grade Mobile Executive Header */
  .apple-nav {
    height: 3.75rem;
  }
  .nav-container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    gap: 0.4rem;
  }
  .nav-brand {
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  .brand-crest-box {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    border-width: 1px;
    flex-shrink: 0;
  }
  .brand-crest-icon {
    font-size: 1rem;
  }
  .brand-titles {
    min-width: 0;
    overflow: hidden;
    flex: 1;
  }
  .brand-title {
    font-size: clamp(0.78rem, 3.8vw, 0.98rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-subtitle {
    font-size: clamp(0.52rem, 2.2vw, 0.6rem);
    letter-spacing: 0.03em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  /* Hide desktop header CTA so brand title has 100% breathing space */
  .nav-header-cta,
  .nav-actions .pill-btn {
    display: none !important;
  }
  .mobile-toggle {
    width: 38px;
    height: 38px;
    padding: 0.4rem;
    flex-shrink: 0;
    border-radius: 8px;
  }
  .mobile-toggle span {
    width: 18px;
  }

  /* Hero Mobile */
  .apple-hero {
    padding: 2.25rem 0 2rem;
    overflow: hidden;
  }
  .hero-eyebrow {
    font-size: clamp(0.64rem, 2.6vw, 0.72rem);
    padding: 0.3rem 0.75rem;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 1.15rem;
  }
  .hero-headline {
    font-size: clamp(1.8rem, 6.8vw, 2.35rem);
    line-height: 1.12;
    margin-bottom: 0.85rem;
    word-break: break-word;
  }
  .hero-subhead {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    padding: 0 0.25rem;
  }
  .tagline-pills {
    gap: 0.35rem;
    margin-bottom: 1.25rem;
  }
  .tag-pill {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }
  .hero-cta-group .pill-btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
  }

  /* Hero Stage Boardroom Showcase Mobile */
  .hero-stage-wrapper {
    margin: 0 auto 1.75rem;
    border-radius: var(--radius-md);
    padding: 3px;
    max-width: 100%;
  }
  .hero-stage-frame {
    height: clamp(180px, 48vw, 260px);
    border-radius: calc(var(--radius-md) - 2px);
  }
  .hero-stage-overlay {
    padding: 1rem 0.75rem 0.65rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .stage-caption strong {
    font-size: 0.82rem;
    line-height: 1.2;
  }
  .stage-caption span {
    font-size: 0.68rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .stage-tag {
    font-size: 0.62rem;
    padding: 0.15rem 0.45rem;
  }

  /* Bento Stats Mobile */
  .bento-metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    width: 100%;
  }
  .bento-metric-card {
    padding: 0.85rem 0.55rem;
    border-radius: var(--radius-md);
  }
  .metric-value {
    font-size: 1.55rem;
    margin-bottom: 0.2rem;
  }
  .metric-label {
    font-size: 0.74rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
  }
  .metric-caption {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  /* Services Mobile */
  .services-section {
    padding: 2.75rem 0;
  }
  .section-badge {
    font-size: 0.66rem;
    padding: 0.2rem 0.65rem;
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  .section-lead {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }
  .segmented-control-wrapper {
    justify-content: flex-start;
    padding: 0.25rem 0.25rem 0.65rem;
    -webkit-overflow-scrolling: touch;
  }
  .segmented-control {
    width: max-content;
  }
  .segment-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.76rem;
  }
  .division-bento-hero {
    padding: 1.35rem 0.95rem;
    border-radius: var(--radius-md);
    gap: 1.25rem;
  }
  .division-visual-card {
    height: 165px;
    margin-bottom: 0.85rem;
    border-radius: var(--radius-sm);
  }
  .division-visual-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.55rem;
    bottom: 8px;
    left: 8px;
  }
  .division-gold-tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.5rem;
  }
  .division-hero-title {
    font-size: 1.3rem;
    margin-bottom: 0.65rem;
  }
  .division-hero-desc {
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 1.15rem;
  }
  .service-pills-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .service-capsule {
    padding: 0.6rem 0.75rem;
    font-size: 0.78rem;
    gap: 0.55rem;
  }
  .capsule-num {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 0.66rem;
  }
  .regulatory-chip {
    padding: 0.65rem 0.75rem;
    font-size: 0.72rem;
    margin-bottom: 1rem;
    line-height: 1.45;
  }

  /* Diagnostic Mobile */
  .diagnostic-section {
    padding: 2.75rem 0;
  }
  .diagnostic-apple-card {
    padding: 1.35rem 0.95rem;
    border-radius: var(--radius-md);
  }
  .diagnostic-stepper {
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
  }
  .step-pill {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
  .step-divider {
    width: 6px;
  }
  .diag-headline {
    font-size: 1.35rem;
  }
  .diag-subhead {
    font-size: 0.84rem;
    margin-bottom: 1.25rem;
  }
  .diag-options-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .diag-option-card {
    padding: 0.75rem 0.85rem;
    border-radius: var(--radius-sm);
  }
  .opt-title {
    font-size: 0.88rem;
  }
  .opt-desc {
    font-size: 0.74rem;
  }
  .diag-inputs-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .diag-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .diag-actions .pill-btn {
    width: 100%;
  }
  .diag-blueprint-card {
    padding: 1.35rem 0.95rem;
    border-radius: var(--radius-md);
  }
  .blueprint-title {
    font-size: 1.35rem;
  }
  .blueprint-meta-strip {
    flex-direction: column;
    gap: 0.35rem;
    text-align: left;
  }
  .blueprint-body {
    padding: 1rem;
  }
  .blueprint-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }
  .blueprint-actions .pill-btn {
    width: 100%;
  }

  /* Clients & Method Mobile */
  .clients-section,
  .method-section,
  .contact-section {
    padding: 2.75rem 0;
  }
  .clients-bento-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .method-steps-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .client-bento-card,
  .method-card {
    padding: 1.25rem 1rem;
    border-radius: var(--radius-md);
  }

  /* Contact Mobile */
  .contact-card-apple {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
    gap: 1.5rem;
  }
  .contact-heading {
    font-size: 1.65rem;
  }
  .contact-subhead {
    font-size: 0.86rem;
    margin-bottom: 1.25rem;
  }
  .hotline-pill {
    padding: 0.75rem 0.9rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* Footer Mobile */
  .apple-footer {
    padding: 2.5rem 0 5.5rem;
  }
  .footer-legal-notice {
    font-size: 0.72rem;
    line-height: 1.55;
    padding: 0.85rem 0.75rem;
  }
  .footer-bottom-grid {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  /* Mobile Concierge Bar Visibility */
  .mobile-sticky-bar {
    display: block;
    padding: 0.5rem 0.85rem env(safe-area-inset-bottom, 0.65rem);
  }
  .mobile-sticky-btn {
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
  }
  .sticky-btn-action {
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .nav-container {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
  .brand-crest-box {
    width: 28px;
    height: 28px;
  }
  .brand-crest-icon {
    font-size: 0.9rem;
  }
  .brand-title {
    font-size: 0.76rem;
  }
  .brand-subtitle {
    font-size: 0.48rem;
    letter-spacing: 0.02em;
  }
  .mobile-toggle {
    width: 34px;
    height: 34px;
    padding: 0.35rem;
  }
  .mobile-toggle span {
    width: 16px;
  }
  .bento-metric-grid {
    grid-template-columns: 1fr;
  }
}