/* ============================================================
   RELU ANALYTICS — style.css
   Design tokens → Reset → Base → Layout → Components → Sections
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Colors */
  --color-bg:           #ffffff;
  --color-bg-2:         #f7f8fa;
  --color-bg-card:      #ffffff;
  --color-bg-card-2:    #f9fafc;
  --color-border:       #e4e4e7;
  --color-border-light: #d1d1d6;

  --color-accent:       #062D92;
  --color-accent-2:     #F58146;
  --color-accent-3:     #BF3A1B;
  --color-accent-hover: #051f6a;
  --color-accent-glow:  rgba(6, 45, 146, 0.08);
  --color-accent-glow-2: rgba(245, 129, 70, 0.06);

  --color-text:         #1a1a2e;
  --color-text-muted:   #52525b;
  --color-text-dim:     #a1a1aa;

  --gradient-primary:   linear-gradient(135deg, #062D92 0%, #F58146 100%);
  --gradient-subtle:    linear-gradient(135deg, rgba(6,45,146,0.06) 0%, rgba(245,129,70,0.06) 100%);
  --gradient-card:      linear-gradient(160deg, #ffffff 0%, #f9fafc 100%);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width:     1200px;
  --nav-height:    72px;
  --section-gap:   120px;

  /* Shape */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 60px rgba(6,45,146,0.06);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.25s;
}

/* ── Reset ── */
*, *::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: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.section {
  padding-block: var(--section-gap);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, var(--text-6xl)); }
h2 { font-size: clamp(1.875rem, 4vw, var(--text-4xl)); }
h3 { font-size: var(--text-xl); }

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

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6, 45, 146, 0.25);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(6, 45, 146, 0.35);
}

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

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
  background: var(--color-accent-glow);
}

.btn-outline {
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-glow);
}

.btn-lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

/* ── Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--duration) ease, border-color var(--duration) ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-base);
  flex-shrink: 0;
}

.logo-mark {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  color: var(--color-text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-left: auto;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--duration) ease;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  box-shadow: 0 2px 12px rgba(6, 45, 146, 0.2);
}

.nav-cta:hover {
  background: var(--color-accent-hover) !important;
  box-shadow: 0 4px 20px rgba(6, 45, 146, 0.35) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-muted);
  border-radius: 2px;
  transition: all var(--duration) ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 45, 146, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 45, 146, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}

.hero-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
}

.hero-orb--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(6, 45, 146, 0.08) 0%, transparent 70%);
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  bottom: 0;
  left: -100px;
  background: radial-gradient(circle, rgba(245, 129, 70, 0.06) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: var(--space-24);
}

.hero-content h1 {
  margin-bottom: var(--space-6);
}

.hero-lead {
  font-size: clamp(var(--text-base), 2.5vw, var(--text-xl));
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: var(--space-8);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.stat-number {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* ── About ── */
.about {
  background:
    radial-gradient(ellipse 60% 50% at 10% 40%, rgba(6, 45, 146, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(245, 129, 70, 0.05) 0%, transparent 60%),
    var(--color-bg-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.about-text h2 {
  margin-bottom: var(--space-6);
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.about-text .btn {
  margin-top: var(--space-4);
}

.about-pillars {
  display: flex;
  flex-direction: column;
}

.about-pillar {
  display: flex;
  gap: var(--space-8);
  align-items: flex-start;
  padding-block: var(--space-8);
  border-bottom: 1px solid var(--color-border);
}

.about-pillar:first-child {
  border-top: 1px solid var(--color-border);
}

.pillar-number {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.5;
  color: var(--color-accent);
  opacity: 0.35;
  flex-shrink: 0;
  width: 2.5rem;
}

.pillar-text h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.pillar-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Services ── */
.services {
  background:
    radial-gradient(ellipse 55% 60% at 85% 25%, rgba(6, 45, 146, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 15% 80%, rgba(245, 129, 70, 0.05) 0%, transparent 60%),
    var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}

.service-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.service-card--featured {
  background: rgba(6, 45, 146, 0.06);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(6, 45, 146, 0.2);
  box-shadow: 0 4px 32px rgba(6, 45, 146, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.service-card--featured:hover {
  border-color: rgba(6, 45, 146, 0.35);
  box-shadow: 0 16px 48px rgba(6, 45, 146, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-accent-glow);
  border: 1px solid rgba(6, 45, 146, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.service-card--featured .service-icon {
  background: rgba(6, 45, 146, 0.12);
  border-color: rgba(6, 45, 146, 0.25);
}

.service-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.service-tag--featured {
  color: var(--color-accent);
  background: var(--color-accent-glow);
  border-color: rgba(6, 45, 146, 0.2);
}

.service-card h3 {
  font-size: var(--text-xl);
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  flex: 1;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.service-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  opacity: 0.6;
}

/* ── Process ── */
.process {
  background:
    radial-gradient(ellipse 55% 50% at 90% 30%, rgba(6, 45, 146, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 10% 75%, rgba(245, 129, 70, 0.05) 0%, transparent 60%),
    var(--color-bg-2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.step-number {
  font-size: var(--text-4xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}

.step-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.step-content p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ── Team ── */
.team {
  background:
    radial-gradient(ellipse 50% 60% at 25% 50%, rgba(6, 45, 146, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 80% 40%, rgba(245, 129, 70, 0.04) 0%, transparent 60%),
    var(--color-bg);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin-inline: auto;
}

.team-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.team-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.team-watermark {
  position: absolute;
  top: -0.15em;
  right: -0.05em;
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.team-info {
  position: relative;
  z-index: 1;
}

.team-info h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-1);
}

.team-title {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.team-info p:not(.team-title) {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ── Contact ── */
.contact {
  background: var(--color-bg-2);
}

.contact-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-24) var(--space-16);
  text-align: center;
  background: var(--gradient-card);
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
}

.contact-orb--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(6, 45, 146, 0.07) 0%, transparent 70%);
}

.contact-orb--2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -50px;
  background: radial-gradient(circle, rgba(245, 129, 70, 0.06) 0%, transparent 70%);
}

.contact-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-inline: auto;
}

.contact-content h2 {
  margin-bottom: var(--space-4);
}

.contact-content p {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

/* ── Footer ── */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-16) var(--space-8);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-dim);
  max-width: 280px;
  line-height: 1.7;
}

.footer-nav h4,
.footer-connect h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
  margin-bottom: var(--space-4);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--duration) ease;
}

.footer-nav a:hover {
  color: var(--color-text);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--duration) ease;
}

.social-link:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-8);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: var(--color-text-dim);
}

/* ── Animations ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.7s var(--ease-out) both;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.05s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.15s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.25s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.35s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.45s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

  /* backdrop-filter on the header creates a containing block for position:fixed
     children — the nav overlay would be clipped to the 72px header instead of
     covering the full viewport. Remove it on mobile for both states. */
  .site-header.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #ffffff;
  }

  .site-header.nav-open {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: all;
  }

  .nav-links a {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-text);
    padding: var(--space-3) var(--space-8);
  }

  .nav-links a:hover {
    color: var(--color-accent);
  }

  .nav-cta {
    padding: var(--space-4) var(--space-10) !important;
    margin-top: var(--space-4);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-stats {
    gap: var(--space-6);
  }

  .stat-divider {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .contact-inner {
    padding: var(--space-16) var(--space-8);
  }

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

@media (max-width: 480px) {
  :root {
    --section-gap: 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
    text-align: center;
  }

}

