/* ═══════════════════════════════════════════════════════════════
   Raaz Pentesting — Main Stylesheet
   Design: Clean corporate, navy + white, refined typography
   Font: Barlow (display) + Source Serif 4 (body accent)
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&family=Barlow+Condensed:wght@600;700&family=Source+Serif+4:ital,wght@0,300;0,400;1,300&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:      #0C3B6B;
  --navy-deep: #081F3A;
  --blue:      #185FA5;
  --blue-mid:  #378ADD;
  --blue-lt:   #E6F1FB;
  --white:     #FFFFFF;
  --off-white: #F8F7F4;
  --gray-100:  #EDECEA;
  --gray-300:  #C8C6C0;
  --gray-500:  #888780;
  --gray-700:  #444441;
  --text:      #1A1A1A;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 2px 24px rgba(12,59,107,0.08);
  --shadow-lg: 0 8px 48px rgba(12,59,107,0.14);
  --transition: 0.2s ease;
  --max-w:     1120px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-100);
  height: 68px;
  display: flex;
  align-items: center;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 9px 22px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--blue) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Page offset for fixed nav */
.page-content { padding-top: 68px; }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(24,95,165,0.15) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-mid);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--blue-mid); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  background: var(--blue-mid);
  color: var(--white);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-navy:hover { background: var(--navy-deep); }

/* Hero visual — pulse logo mark -->
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-mark {
  width: 100%;
  max-width: 380px;
  opacity: 0.92;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.trust-clients {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-client {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════════ */
.section {
  padding: 5.5rem 0;
}
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header.centered { text-align: center; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-mid);
}
.section-header.centered .eyebrow {
  justify-content: center;
}
.section-header.centered .eyebrow::before { display: none; }

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--navy);
}
.section-dark h2 { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}
.section-header.centered .section-desc { margin: 0 auto; }
.section-dark .section-desc { color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 2.25rem;
  transition: background var(--transition);
}
.service-card:hover { background: var(--off-white); }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--blue-lt);
  color: var(--blue);
}

/* ══════════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-100);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.stat-card {
  background: var(--white);
  padding: 2rem 1.75rem;
}
.section-alt .stat-card { background: var(--off-white); }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   CASE STUDIES
══════════════════════════════════════════════════════════════ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.section-alt .case-card { background: var(--white); }
.case-industry {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 0.6rem;
}
.case-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.case-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.case-outcomes { display: flex; flex-direction: column; gap: 8px; }
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.outcome::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1D9E75;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   APPROACH / VALUES
══════════════════════════════════════════════════════════════ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.approach-item {
  padding: 0;
}
.approach-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue-lt);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.section-dark .approach-num { color: rgba(255,255,255,0.08); }
.approach-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section-dark .approach-item h3 { color: var(--white); }
.approach-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.section-dark .approach-item p { color: rgba(255,255,255,0.55); }

/* ══════════════════════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.contact-detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--blue-lt);
  border: 1px solid #B5D4F4;
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 0.8rem;
  color: var(--blue);
  line-height: 1.5;
  margin-top: 2rem;
}
.security-note svg {
  width: 15px;
  height: 15px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
}
textarea { resize: vertical; min-height: 100px; }
.honeypot { display: none; }
.turnstile-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 12px;
  color: var(--gray-500);
}
.turnstile-row span:last-child {
  margin-left: auto;
  font-size: 10px;
  color: var(--gray-300);
  text-align: right;
  line-height: 1.3;
}
.form-submit {
  width: 100%;
  padding: 13px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit:hover { background: var(--blue); }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: #E8F8F1;
  border: 1px solid #9FE1CB;
  border-radius: var(--radius-lg);
  color: #085041;
}
.form-success h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  padding: 5rem 0 4rem;
}
.page-hero .eyebrow { color: var(--blue-mid); }
.page-hero .eyebrow::before { background: var(--blue-mid); }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES PAGE — DEEP DIVE
══════════════════════════════════════════════════════════════ */
.service-deep {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-deep:last-child { border-bottom: none; }
.service-deep.reverse { direction: rtl; }
.service-deep.reverse > * { direction: ltr; }
.service-deep-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
}
.service-deep-content p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.service-features { display: flex; flex-direction: column; gap: 0.75rem; }
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.service-feature::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-mid);
  margin-top: 7px;
  flex-shrink: 0;
}
.service-deep-visual {
  background: var(--blue-lt);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.process-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.process-text p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════════ */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro h2 { margin-bottom: 1.25rem; }
.about-intro p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-stat-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-stat {
  padding: 1.75rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--blue-mid);
}
.about-stat .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-stat .stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
}
.value-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .about-intro,
  .service-deep { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-deep.reverse { direction: ltr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    gap: 1.25rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 5rem 0 4rem; }
  .section { padding: 4rem 0; }
}
