/* ==========================================================================
   DEV CREW UAE — Official Stylesheet
   Brand Theme: Coral Red (#FF5850), Royal Blue (#466ABD), Deep Purple (#46243C)
   ========================================================================== */

:root {
  /* Brand Primary Colors */
  --coral-red: #FF5850;
  --coral-light: #FFEAE8;
  --coral-glow: rgba(255, 88, 80, 0.25);
  --royal-blue: #466ABD;
  --royal-light: #EDF2FB;
  --royal-glow: rgba(70, 106, 189, 0.25);
  --deep-purple: #46243C;
  --purple-light: #F4EFF3;
  --purple-glow: rgba(70, 36, 60, 0.25);

  /* Neutrals & Surfaces */
  --bg-primary: #FFFFFF;
  --bg-subtle: #F7F8FC;
  --bg-card: #FFFFFF;
  --bg-dark: #12131C;
  --text-dark: #1E1E2A;
  --text-body: #3E4050;
  --text-muted: #646575;
  --text-light: #A0A2B3;
  --border-light: rgba(30, 30, 42, 0.08);
  --border-subtle: rgba(70, 106, 189, 0.12);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #FF5850 0%, #46243C 52%, #466ABD 100%);
  --grad-coral-purple: linear-gradient(135deg, #FF5850 0%, #46243C 100%);
  --grad-purple-blue: linear-gradient(135deg, #46243C 0%, #466ABD 100%);
  --grad-coral-blue: linear-gradient(135deg, #FF5850 0%, #466ABD 100%);
  --grad-subtle-glow: radial-gradient(circle at 50% 50%, rgba(255, 88, 80, 0.07) 0%, rgba(70, 106, 189, 0.07) 50%, transparent 80%);
  --grad-dark-mesh: radial-gradient(at 0% 0%, rgba(70, 36, 60, 0.8) 0px, transparent 50%), radial-gradient(at 100% 100%, rgba(70, 106, 189, 0.6) 0px, transparent 50%), #12131C;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(30, 30, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(30, 30, 42, 0.07);
  --shadow-lg: 0 16px 40px rgba(30, 30, 42, 0.09);
  --shadow-xl: 0 24px 64px rgba(70, 36, 60, 0.14);
  --shadow-glow: 0 12px 36px var(--coral-glow);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Layout */
  --container-width: 1240px;
  --header-height: 84px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

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

button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* ==========================================================================
   Typography Hierarchy
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 3.2vw + 0.5rem, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 1.8vw + 0.2rem, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.text-coral {
  color: var(--coral-red);
}

.text-blue {
  color: var(--royal-blue);
}

.text-purple {
  color: var(--deep-purple);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-red);
  margin-bottom: 1rem;
  background: rgba(255, 88, 80, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 88, 80, 0.18);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral-red);
}

.eyebrow-blue {
  color: var(--royal-blue);
  background: rgba(70, 106, 189, 0.08);
  border-color: rgba(70, 106, 189, 0.18);
}
.eyebrow-blue::before {
  background: var(--royal-blue);
}

.lead-text {
  font-size: 1.2rem;
  color: var(--text-body);
  font-weight: 400;
  line-height: 1.7;
}

/* ==========================================================================
   Layout Containers & Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-bg-subtle {
  background-color: var(--bg-subtle);
}

.section-bg-dark {
  background: var(--grad-dark-mesh);
  color: #FFFFFF;
}

.section-bg-dark h1,
.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark h4 {
  color: #FFFFFF;
}

.section-bg-dark .text-muted {
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-inline: 0;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-primary);
  color: #FFFFFF;
  box-shadow: 0 8px 24px var(--coral-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 88, 80, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--royal-blue);
  color: var(--royal-blue);
  background: var(--royal-light);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--text-dark);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
  background: var(--royal-blue);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-white {
  background: #FFFFFF;
  color: var(--deep-purple);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--royal-light);
  color: var(--royal-blue);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--royal-blue);
  padding: 0;
}

.btn-link:hover {
  color: var(--coral-red);
  gap: 10px;
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  height: 72px;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(30, 30, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.04);
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grad-primary);
  color: #FFFFFF;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--coral-red);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  cursor: pointer;
  z-index: 1002;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  padding: 6rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.drawer-link:hover {
  color: var(--coral-red);
  padding-left: 6px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(255, 88, 80, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(70, 106, 189, 0.06) 0%, transparent 45%),
              linear-gradient(180deg, #FFFFFF 0%, var(--bg-subtle) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

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

.hero-title {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-description {
  font-size: 1.22rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-light);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}

.trust-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--royal-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Abstract Visual Composition */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(70, 106, 189, 0.15);
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.hero-visual-card:hover {
  transform: translateY(-4px);
}

.hero-card-header {
  padding: 1rem 1.25rem;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

.header-status-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-status-pill::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 6px #10B981;
}

.hero-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.system-mesh-graphic {
  background: linear-gradient(135deg, #1E1E2A 0%, #2A213B 100%);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

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

.mesh-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-light);
}

.mesh-nodes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mesh-node {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.mesh-node:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--coral-red);
}

.mesh-node-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 6px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.node-icon-ai { background: rgba(255, 88, 80, 0.2); color: var(--coral-red); }
.node-icon-cloud { background: rgba(70, 106, 189, 0.2); color: #82A7FF; }
.node-icon-sec { background: rgba(168, 85, 247, 0.2); color: #C084FC; }

.mesh-node-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
}

.hero-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.kpi-widget {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.kpi-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.kpi-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
}

.kpi-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
}

/* Floating Elements around Hero */
.floating-chip {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(70, 106, 189, 0.15);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: floatSlow 5s ease-in-out infinite alternate;
}

.floating-chip-1 {
  top: -20px;
  right: 20px;
  border-left: 3px solid var(--coral-red);
}

.floating-chip-2 {
  bottom: -15px;
  left: -20px;
  border-left: 3px solid var(--royal-blue);
  animation-delay: -2.5s;
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* ==========================================================================
   Trust / Track Record Strip (Section 6)
   ========================================================================== */
.metrics-strip {
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 3.5rem 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 1.2fr;
  gap: 2rem;
  align-items: center;
}

.metric-item {
  position: relative;
  padding-right: 1.5rem;
  border-right: 1px solid var(--border-light);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.metric-number .accent {
  color: var(--coral-red);
}

.metric-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.metrics-audience-badge {
  background: var(--grad-subtle-glow), var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--royal-blue);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.audience-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

/* ==========================================================================
   Introduction Section (Section 7)
   ========================================================================== */
.intro-section {
  padding: 6.5rem 0;
  background-color: var(--bg-primary);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-content h2 {
  margin-bottom: 1.75rem;
}

.intro-quote-card {
  background: var(--bg-subtle);
  border-left: 4px solid var(--royal-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 500;
}

.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.intro-pill {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-purple);
  background: var(--purple-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.intro-visual-matrix {
  position: relative;
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.intro-visual-matrix::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--coral-glow);
  filter: blur(50px);
}

.intro-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}

.intro-matrix-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast);
}

.intro-matrix-card:hover {
  transform: translateY(-3px);
  border-color: var(--royal-blue);
}

.intro-matrix-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.matrix-icon-1 { background: var(--coral-light); color: var(--coral-red); }
.matrix-icon-2 { background: var(--royal-light); color: var(--royal-blue); }
.matrix-icon-3 { background: var(--purple-light); color: var(--deep-purple); }
.matrix-icon-4 { background: #E6FBF5; color: #059669; }

.intro-matrix-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.intro-matrix-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Services Feature Section (11 Cards) (Section 8)
   ========================================================================== */
.services-section {
  background-color: var(--bg-subtle);
  position: relative;
}

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

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(70, 106, 189, 0.25);
}

/* Subtle individual shape accents for service cards */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  border-radius: 0 0 0 100%;
  background: var(--bg-subtle);
  transition: background var(--transition-normal);
  z-index: 0;
}

.service-card:hover::before {
  background: var(--royal-light);
}

.service-card:nth-child(3n+1):hover::before {
  background: var(--coral-light);
}

.service-card:nth-child(3n+2):hover::before {
  background: var(--purple-light);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--grad-primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.service-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.service-examples {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-example-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-right: 6px;
  margin-bottom: 6px;
}

.service-footer {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.service-learn-btn {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-card:hover .service-learn-btn {
  color: var(--coral-red);
  gap: 10px;
}

/* ==========================================================================
   "Why Dev Crew" Section (Section 9)
   ========================================================================== */
.why-section {
  background: #FFFFFF;
}

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

.why-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  background: #FFFFFF;
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--coral-red);
  margin-bottom: 1rem;
}

.why-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Portfolio / What We Have Built (Section 10)
   ========================================================================== */
.portfolio-section {
  background: var(--bg-subtle);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: var(--text-muted);
  border: 1.5px solid var(--border-light);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-dark);
  border-color: var(--royal-blue);
}

.filter-btn.active {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
}

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

.portfolio-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(70, 106, 189, 0.25);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-mockup {
  height: 220px;
  position: relative;
  background: linear-gradient(135deg, #1E1E2A 0%, #292842 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.portfolio-mockup-inner {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  padding: 1rem;
  position: relative;
  transition: transform var(--transition-normal);
}

.portfolio-card:hover .portfolio-mockup-inner {
  transform: scale(1.04);
}

.mockup-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.mockup-category-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.mockup-preview-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}

.mockup-preview-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

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

.portfolio-category-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--royal-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.portfolio-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.portfolio-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1.25rem;
}

.deliverable-chip {
  font-size: 0.75rem;
  background: var(--bg-subtle);
  color: var(--text-dark);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

/* ==========================================================================
   Philippines -> UAE Expansion (Section 11)
   ========================================================================== */
.expansion-section {
  background: var(--grad-dark-mesh);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.expansion-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.expansion-content h2 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.expansion-lead {
  font-size: 1.22rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.expansion-body-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.corridor-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  display: inline-flex;
}

.corridor-pills span {
  color: var(--coral-red);
}

/* Expansion Visual Map / Flight Corridor */
.expansion-visual {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.corridor-map-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.corridor-hub-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.hub-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
}

.hub-flag {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hub-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.hub-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ==========================================================================
   About Dev Crew & Timeline (Section 12)
   ========================================================================== */
.about-section {
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Timeline */
.timeline-wrap {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--border-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: calc(-2rem - 6px);
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(70, 106, 189, 0.15);
}

.timeline-item:last-child .timeline-dot {
  border-color: var(--coral-red);
  box-shadow: 0 0 0 4px rgba(255, 88, 80, 0.2);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.timeline-content {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Leadership & Expertise (Section 13)
   ========================================================================== */
.leadership-section {
  background: var(--bg-subtle);
}

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

.leader-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(70, 106, 189, 0.2);
}

.leader-avatar-box {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: var(--grad-subtle-glow), var(--bg-subtle);
  border: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--royal-blue);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.leader-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.leader-role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--coral-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.leader-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   Vision Section (Section 14)
   ========================================================================== */
.vision-section {
  background: var(--deep-purple);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 88, 80, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(70, 106, 189, 0.15) 0%, transparent 60%);
}

.vision-wrap {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.vision-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.75rem;
  color: #FFFFFF;
}

.vision-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.vision-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Client Types Section (Section 15)
   ========================================================================== */
.clients-section {
  background: #FFFFFF;
}

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

.client-type-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.client-type-card:hover {
  background: #FFFFFF;
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.client-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.client-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Process Section (Section 16)
   ========================================================================== */
.process-section {
  background: var(--bg-subtle);
}

.process-steps-wrap {
  position: relative;
  margin-top: 3.5rem;
}

.process-line {
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--coral-red) 0%, var(--deep-purple) 50%, var(--royal-blue) 100%);
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.process-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.process-card:hover,
.process-card.active {
  transform: translateY(-6px);
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-lg);
}

.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--royal-blue);
  color: var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.process-card:hover .process-step-num,
.process-card.active .process-step-num {
  background: var(--royal-blue);
  color: #FFFFFF;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.process-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Testimonials & Proof Section (Section 17)
   ========================================================================== */
.proof-section {
  background: #FFFFFF;
}

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

.proof-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.proof-card:hover {
  background: #FFFFFF;
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.proof-metric-highlight {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--coral-red);
  margin-bottom: 0.5rem;
}

.proof-quote {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.proof-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-author-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.proof-stars {
  color: #F59E0B;
  display: flex;
  gap: 2px;
}

/* ==========================================================================
   Final CTA & Contact Section (Section 18 & 19)
   ========================================================================== */
.final-cta-section {
  background: var(--grad-primary);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.cta-content h2 {
  color: #FFFFFF;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.cta-official-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.cta-official-links a {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: underline;
}

/* Consultation Form Box */
.cta-form-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 60px rgba(30, 30, 42, 0.25);
  color: var(--text-dark);
}

.form-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 3px rgba(70, 106, 189, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-feedback {
  margin-top: 1rem;
  font-size: 0.85rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-feedback.success {
  display: block;
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.form-feedback.error {
  display: block;
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ==========================================================================
   Footer (Section 19)
   ========================================================================== */
.site-footer {
  background: #0E0F17;
  color: #FFFFFF;
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 360px;
}

.footer-brand .brand-title {
  color: #FFFFFF;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-link:hover {
  color: var(--coral-red);
  padding-left: 4px;
}

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

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-meta-item svg {
  flex-shrink: 0;
  color: var(--coral-red);
  margin-top: 3px;
}

.placeholder-badge {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
  color: #FCD34D;
  margin-left: 4px;
}

.footer-bottom {
  padding-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   Modals & Overlays
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 19, 28, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  transform: translateY(20px) scale(0.97);
  transition: all var(--transition-normal);
  position: relative;
  padding: 2.5rem;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--coral-red);
  color: #FFFFFF;
}

.modal-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.modal-title {
  font-size: 1.85rem;
  margin-bottom: 0.75rem;
}

.modal-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.modal-section-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--royal-blue);
  margin-bottom: 0.75rem;
}

.modal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.modal-list-item {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-list-item svg {
  color: #10B981;
  flex-shrink: 0;
}

/* Scroll To Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--grad-primary);
  color: #FFFFFF;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ==========================================================================
   Conversion Enhancers: Assessment Banner, FAQ, WhatsApp, Trust Bar
   ========================================================================== */
.assessment-banner {
  background: linear-gradient(135deg, #1E1E2A 0%, #2B1D36 50%, #1A284A 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 4rem;
}

.assessment-banner::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral-glow) 0%, transparent 70%);
}

.assessment-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
}

.assessment-banner h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.assessment-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.assessment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.assessment-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.assessment-badge-item svg {
  color: #10B981;
}

.assessment-cta-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Trust Assurance Bar */
.trust-assurance-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
}

.assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
}

.assurance-item svg {
  color: var(--coral-red);
  flex-shrink: 0;
}

/* FAQ Accordion Section */
.faq-section {
  background: var(--bg-subtle);
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 1.4rem 1.75rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
}

.faq-icon-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal-blue);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--royal-blue);
  color: #FFFFFF;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}

.faq-content-inner {
  padding: 0 1.75rem 1.5rem 1.75rem;
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid rgba(30, 30, 42, 0.05);
  padding-top: 1rem;
}

/* Floating Quick Contact Pill */
.floating-contact-pill {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: #FFFFFF;
  border: 1.5px solid var(--coral-red);
  box-shadow: 0 10px 30px rgba(255, 88, 80, 0.25);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 900;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.floating-contact-pill:hover {
  background: var(--coral-red);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 88, 80, 0.4);
}

.pulse-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  position: relative;
}

.pulse-indicator::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

@media (max-width: 992px) {
  .assessment-banner-inner {
    grid-template-columns: 1fr;
  }
  .assessment-cta-box {
    align-items: flex-start;
  }
  .trust-assurance-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-assurance-bar {
    grid-template-columns: 1fr;
  }
  .floating-contact-pill {
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1180px) {
  .hero-grid,
  .intro-grid,
  .expansion-grid,
  .about-grid,
  .cta-grid {
    gap: 2.5rem;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-line {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr) 1fr;
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 76px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .hero-grid,
  .intro-grid,
  .expansion-grid,
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .services-grid,
  .portfolio-grid,
  .leadership-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .metric-item {
    border-right: none;
    padding-right: 0;
  }

  .metrics-audience-badge {
    grid-column: span 2;
  }

  .services-grid,
  .portfolio-grid,
  .leadership-grid,
  .proof-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .corridor-hub-cards {
    grid-template-columns: 1fr;
  }

  .modal-list {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metrics-audience-badge {
    grid-column: span 1;
  }

  .intro-matrix-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
