/* ============================================================
   LAKEOPS DESIGN SYSTEM
   Version 1.0 - April 2026
   ============================================================ */

/* ========== DESIGN TOKENS ========== */
:root {
  /* --- Color: Brand --- */
  --color-brand: #E91E63;
  --color-brand-hover: #F0317A;
  --color-brand-active: #C4185A;
  --color-brand-subtle: #2D1320;
  --color-brand-glow: rgba(233, 30, 99, 0.15);

  /* --- Color: Surface (Dark) --- */
  --color-bg: #0A0A0D;
  --color-surface: #121216;
  --color-surface-2: #1A1A1F;
  --color-surface-3: #242429;
  --color-surface-elevated: #2D2D34;

  /* --- Color: Surface (Light Sections) --- */
  --color-bg-light: #FAFAFA;
  --color-surface-light: #FFFFFF;
  --color-surface-light-2: #F4F4F6;

  /* --- Color: Text --- */
  --color-text: #F5F5F7;
  --color-text-secondary: #B4B4BA;
  --color-text-muted: #7A7A82;
  --color-text-on-brand: #FFFFFF;

  --color-text-dark: #1A1A1F;
  --color-text-dark-secondary: #4A4A52;
  --color-text-dark-muted: #7A7A82;

  /* --- Color: Border --- */
  --color-border: #2A2A30;
  --color-border-strong: #3A3A42;
  --color-border-light: #E5E5EA;

  /* --- Color: Semantic --- */
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --color-info: #3B82F6;

  /* --- Typography: Families --- */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* --- Typography: Scale --- */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  --text-7xl: 4.5rem;      /* 72px */

  /* --- Typography: Weights --- */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* --- Typography: Line Heights --- */
  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;

  /* --- Typography: Letter Spacing --- */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.02em;
  --tracking-wider: 0.08em;

  /* --- Spacing (4px base) --- */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-32: 8rem;     /* 128px */

  /* --- Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.45);
  --shadow-brand: 0 8px 24px rgba(233, 30, 99, 0.25);

  /* --- Transitions --- */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Layout --- */
  --container-max: 1240px;
  --container-narrow: 880px;
  --nav-height: 72px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.h-display {
  font-size: clamp(2.5rem, 5vw, var(--text-7xl));
  font-weight: var(--weight-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.h-1 {
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  font-weight: var(--weight-bold);
}

.h-2 {
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
  font-weight: var(--weight-bold);
}

.h-3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
}

.h-4 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
}

.text-eyebrow {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.text-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--color-brand);
}

.text-lead {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }

/* ========== LAYOUT HELPERS ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-24) 0;
}

.section-sm {
  padding: var(--space-16) 0;
}

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

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

.section-brand {
  background: var(--color-brand);
  color: var(--color-text-on-brand);
}

/* ========== NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-mark::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 6px;
  width: 5px;
  background: var(--color-text);
  border-radius: 2px;
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 2px;
  width: 8px;
  height: 8px;
  background: var(--color-brand);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

/* Mobile drawer — hidden on desktop by default */
.nav-mobile {
  display: none;
}

/* Hamburger button (mobile) */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--color-text);
  transition: all var(--transition-fast);
}

.nav-toggle:hover { border-color: var(--color-brand); color: var(--color-brand); }

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition-base), top var(--transition-base), opacity var(--transition-fast);
}

.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before { position: absolute; top: -6px; }
.nav-toggle-icon::after { position: absolute; top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-brand);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  min-height: 44px;
}

.btn-primary {
  background: var(--color-brand);
  color: var(--color-text-on-brand);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background: var(--color-brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(233, 30, 99, 0.35);
}

.btn-secondary {
  background: var(--color-surface-2);
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
}

.btn-secondary:hover {
  background: var(--color-surface-3);
  border-color: var(--color-text-muted);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  background: var(--color-surface-2);
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  min-height: 52px;
}

.btn .icon-arrow {
  transition: transform var(--transition-fast);
}

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

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
  padding: var(--space-20) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0A0A0D 0%, #141419 100%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: var(--weight-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: var(--space-6) 0;
}

.hero-title .accent {
  color: var(--color-brand);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, var(--text-xl));
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-16);
  padding-top: var(--space-10);
  border-top: 1px solid var(--color-border);
  max-width: 720px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ========== CLAIM BANNER ========== */
.claim-banner {
  background: var(--color-brand);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}

.claim-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
}

.claim-banner-content {
  position: relative;
  text-align: center;
  color: var(--color-text-on-brand);
}

.claim-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, var(--text-3xl));
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-3);
}

.claim-banner-subtitle {
  font-size: var(--text-base);
  opacity: 0.9;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.service-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  border-color: var(--color-brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-brand-subtle);
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  font-size: var(--text-2xl);
}

.service-card h3 {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}

.service-card p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  flex: 1;
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-6);
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.service-features li::before {
  content: "→";
  color: var(--color-brand);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-brand);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  margin-top: auto;
}

.service-link:hover { gap: var(--space-3); }

/* ========== VALUES / PHILOSOPHY ========== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.value-item {
  padding: var(--space-6);
  border-left: 2px solid var(--color-brand);
}

.value-item h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-2);
}

.value-item p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ========== PRICING CARDS ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-12);
}

.pricing-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-base);
}

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

.pricing-card.featured {
  border-color: var(--color-brand);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-2) 100%);
  box-shadow: var(--shadow-brand);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: var(--space-6);
  background: var(--color-brand);
  color: var(--color-text-on-brand);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: var(--space-2);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-1);
}

.pricing-price .currency {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  margin-right: var(--space-1);
}

.pricing-period {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.pricing-features li::before {
  content: "✓";
  color: var(--color-brand);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

/* ========== TEAM CARDS ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.team-avatar {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-brand-subtle), var(--color-surface-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  color: var(--color-brand);
  letter-spacing: var(--tracking-tight);
  position: relative;
  overflow: hidden;
}

.team-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(233, 30, 99, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 1;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-avatar img {
  transform: scale(1.04);
}

.team-info {
  padding: var(--space-6);
}

.team-name {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-1);
}

.team-role {
  font-size: var(--text-sm);
  color: var(--color-brand);
  margin-bottom: var(--space-3);
  font-weight: var(--weight-medium);
}

.team-bio {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-brand-glow) 0%, transparent 70%);
  filter: blur(40px);
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
  margin-bottom: var(--space-4);
}

.cta-content p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-brand p {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 320px;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--color-brand); }

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

/* ========== BADGES / TAGS ========== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
}

.tag-brand {
  background: var(--color-brand-subtle);
  border-color: transparent;
  color: var(--color-brand);
}

/* ========== PAGE HEADER (Sub-pages) ========== */
.page-header {
  padding: var(--space-20) 0 var(--space-12);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, var(--color-brand-glow) 0%, transparent 60%);
  filter: blur(60px);
}

.page-header-content {
  position: relative;
  max-width: 720px;
}

.page-header h1 {
  font-size: clamp(2.25rem, 5vw, var(--text-6xl));
  font-weight: var(--weight-bold);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: var(--space-4) 0;
}

.page-header p {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.breadcrumb a:hover { color: var(--color-brand); }

/* ========== FORMS ========== */
.form-grid {
  display: grid;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
}

.form-label .required { color: var(--color-brand); }

.form-input, .form-textarea, .form-select {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  width: 100%;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-brand);
  background: var(--color-surface-3);
  box-shadow: 0 0 0 4px var(--color-brand-glow);
}

.form-textarea { resize: vertical; min-height: 120px; font-family: inherit; }

.form-help {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ========== TECH STACK ========== */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.tech-chip {
  padding: var(--space-2) var(--space-4);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.tech-chip:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

/* ========== FEATURE GRID ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

.feature-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  font-size: var(--text-xl);
}

.feature-item h4 {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
}

.feature-item p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

/* ========== CONTACT PAGE LAYOUTS ========== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-16);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

/* ========== RESPONSIVE ========== */
/* Tablet & below */
@media (max-width: 960px) {
  :root { --nav-height: 64px; }

  .nav-inner { gap: var(--space-4); }
  .nav-toggle { display: inline-flex; }

  /* Hide desktop nav-links AND the desktop CTA on mobile */
  .nav > .nav-inner > .nav-links,
  .nav > .nav-inner > .btn { display: none; }

  /* Mobile drawer (visible on mobile only) */
  .nav-mobile {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 13, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transform: translateY(-120%);
    transition: transform var(--transition-base);
    z-index: 90;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }

  .nav-mobile.is-open { transform: translateY(0); }

  .nav-mobile a {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
  }

  .nav-mobile a:hover,
  .nav-mobile a.active {
    background: var(--color-surface-2);
    color: var(--color-text);
  }

  .nav-mobile a.active {
    border-left: 2px solid var(--color-brand);
  }

  .nav-mobile .btn {
    margin-top: var(--space-4);
    justify-content: center;
  }

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

  /* Layout */
  .container, .container-narrow { padding: 0 var(--space-5); }
  .section { padding: var(--space-16) 0; }
  .hero { min-height: auto; padding: var(--space-12) 0 var(--space-16); }
  .page-header { padding: var(--space-12) 0 var(--space-10); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .form-row { grid-template-columns: 1fr; }

  /* Mission/Vision stacks on mobile */
  .values-grid[style*="1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: var(--space-8) !important;
  }

  /* Contact + Location layouts */
  .contact-layout,
  .location-layout {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* Small phones */
@media (max-width: 560px) {
  :root { --space-24: 4rem; --space-20: 3rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .services-grid,
  .pricing-grid,
  .feature-grid,
  .values-grid,
  .team-grid { grid-template-columns: 1fr !important; gap: var(--space-5); }

  .service-card,
  .pricing-card { padding: var(--space-6); }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--space-2); }

  .claim-banner { padding: var(--space-10) 0; }

  /* Stat blocks stack cleanly */
  .hero-stats { grid-template-columns: 1fr; gap: var(--space-5); margin-top: var(--space-10); padding-top: var(--space-8); }

  /* Page-header smaller */
  .page-header h1 { font-size: clamp(2rem, 8vw, 2.75rem); }

  /* Breadcrumb smaller */
  .breadcrumb { font-size: var(--text-xs); }
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 960px) {
  html, body { overflow-x: hidden; }
}

/* ========== UTILITY ========== */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-12) 0;
}

.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.section-header { max-width: 720px; margin: 0 auto var(--space-8); text-align: center; }
.section-header .h-2 { margin: var(--space-4) 0; }
.section-header.left { margin-left: 0; text-align: left; }
