/* ==========================================================
   JAMM Y RRC HANDEL — Stylesheet
   Design System: Navy/Oxford Blue + Safety Orange
   Fonts: Barlow Condensed / Barlow / DM Mono
   ========================================================== */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  /* Colors */
  --navy:        #0B1D3A;
  --navy-mid:    #122649;
  --navy-light:  #1A3460;
  --orange:      #F4620A;
  --orange-h:    #FF7A2F;
  --cream:       #F8F5EF;
  --cream-dark:  #EFE9DE;
  --white:       #FFFFFF;
  --text-body:   #2D3748;
  --text-muted:  #718096;
  --text-light:  #A0AEC0;
  --border:      #E2E8F0;
  --border-dark: rgba(255,255,255,0.12);

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Spacing */
  --section-py:  100px;
  --container:   1200px;

  /* Transitions */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur:         0.35s;
  --dur-slow:    0.6s;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(11,29,58,0.08), 0 1px 2px rgba(11,29,58,0.06);
  --shadow-md:   0 4px 16px rgba(11,29,58,0.10), 0 2px 6px rgba(11,29,58,0.06);
  --shadow-lg:   0 12px 40px rgba(11,29,58,0.14), 0 4px 12px rgba(11,29,58,0.08);
  --shadow-xl:   0 24px 64px rgba(11,29,58,0.18);
}

/* ── 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-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

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

abbr[title] {
  text-decoration: none;
  color: var(--orange);
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* ── Focus visible ───────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Utility Classes ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  border: 1px solid rgba(244,98,10,0.25);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 8px;
  padding: 12px 24px;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur) var(--ease);
}

.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244,98,10,0.35);
}

.btn-primary:hover {
  background: var(--orange-h);
  box-shadow: 0 6px 20px rgba(244,98,10,0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-full { width: 100%; justify-content: center; }


/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
}

.header.scrolled {
  background: rgba(11, 29, 58, 0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 2px 24px rgba(11,29,58,0.25);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-cta {
  margin-left: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: 6px;
  transition: background var(--dur);
}

.hamburger:hover { background: rgba(255,255,255,0.1); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11,29,58,0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  transition: opacity var(--dur);
}

.mobile-overlay.visible {
  display: block;
  opacity: 1;
}


/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,29,58,0.88) 0%,
    rgba(11,29,58,0.70) 50%,
    rgba(11,29,58,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 120px;
  max-width: 860px;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border: 1px solid rgba(244,98,10,0.4);
  border-radius: 100px;
  background: rgba(244,98,10,0.08);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.hero-badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  position: relative;
  flex-shrink: 0;
}

.hero-badge-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(244,98,10,0.3);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0; }
}

/* Hero title */
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(28px);
}

.hero-title.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out) 0.1s, transform 0.7s var(--ease-out) 0.1s;
}

.hero-title-accent {
  font-style: normal;
  color: var(--orange);
  position: relative;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(24px);
}

.hero-subtitle.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out) 0.2s, transform 0.7s var(--ease-out) 0.2s;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out) 0.3s, transform 0.7s var(--ease-out) 0.3s;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-stats.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s var(--ease-out) 0.4s, transform 0.7s var(--ease-out) 0.4s;
}

.hero-stat {
  padding: 0 32px;
  text-align: center;
}

.hero-stat:first-child { padding-left: 0; }

.hero-stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.hero-stat-value .counter {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-value .counter + * {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange);
}

.hero-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.4;
}

.hero-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: scrollBounce 2.5s ease infinite;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.7; }
}


/* ══════════════════════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════════════════════ */
.services-section {
  background: var(--cream);
}

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px 28px;
  border: 1.5px solid var(--border);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(244,98,10,0.2);
}

.service-card:hover::before { transform: scaleX(1); }

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

.service-icon {
  color: var(--orange);
  flex-shrink: 0;
}

.service-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

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

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(244,98,10,0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-arrow {
  color: var(--text-light);
  transition: color var(--dur), transform var(--dur);
}

.service-card:hover .service-arrow {
  color: var(--orange);
  transform: translateX(4px);
}


/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text .section-eyebrow { margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 24px; }

.about-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(244,98,10,0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* About visual */
.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.4;
}

/* About metrics */
.about-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  background: var(--navy);
  border-radius: 16px;
  padding: 24px 32px;
  overflow: hidden;
}

.metric {
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.metric-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

.metric-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Trust bar */
.trust-bar {
  background: var(--cream);
  border-radius: 16px;
  padding: 32px 40px;
  border: 1px solid var(--border);
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  transition: border-color var(--dur), box-shadow var(--dur);
}

.trust-item:hover {
  border-color: rgba(244,98,10,0.3);
  box-shadow: var(--shadow-sm);
}

.trust-item svg { color: var(--orange); flex-shrink: 0; }


/* ══════════════════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════════════════ */
.process-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,98,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.process-section .section-eyebrow {
  border-color: rgba(244,98,10,0.35);
  color: var(--orange);
}

.process-section .section-title {
  color: var(--white);
}

.process-section .section-desc {
  color: rgba(255,255,255,0.55);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-line {
  position: absolute;
  top: 72px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(244,98,10,0.4) 15%,
    rgba(244,98,10,0.4) 85%,
    transparent
  );
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(244,98,10,0.2), 0 0 0 8px rgba(244,98,10,0.05);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}

.process-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  transition: background var(--dur), border-color var(--dur), transform var(--dur);
}

.process-step:hover .process-icon-wrap {
  background: rgba(244,98,10,0.12);
  border-color: rgba(244,98,10,0.3);
  transform: translateY(-4px);
  color: var(--orange);
}

.process-content h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.process-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}


/* ══════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-body);
  background: var(--white);
  transition: border-color var(--dur), box-shadow var(--dur);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,98,10,0.12);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #E53E3E;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%23718096' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* Form success */
.form-success {
  text-align: center;
  padding: 40px 24px;
}

.form-success[hidden] { display: none; }

.form-success-icon { margin-bottom: 24px; }

.form-success h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.form-success-contact {
  font-size: 0.875rem;
}

.form-success-contact a {
  color: var(--orange);
  font-weight: 600;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.contact-info-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 36px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: opacity var(--dur);
}

.contact-detail:last-child { border-bottom: none; padding-bottom: 0; }
.contact-detail:first-of-type { padding-top: 0; }

a.contact-detail:hover { opacity: 0.8; }

.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-visual {
  position: relative;
  height: 200px;
}

.map-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.6);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  animation: pinBounce 2s ease infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%); }
  50%       { transform: translate(-50%, -58%); }
}

.map-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 10px 14px;
}

.map-label strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.map-label span {
  font-size: 0.78125rem;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 200px;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 20px 0 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur), color var(--dur), transform var(--dur);
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-nav-col h4,
.footer-contact-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  color: var(--white);
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur), transform var(--dur);
  display: inline-block;
}

.footer-nav-col a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-col p,
.footer-contact-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  transition: color var(--dur);
}

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

.footer-hours {
  font-family: var(--font-mono);
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.35) !important;
  letter-spacing: 0.05em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom strong { color: rgba(255,255,255,0.55); }

.footer-legal {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--dur);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

.footer-legal span {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}


/* ══════════════════════════════════════════════════════════
   ANIMATION CLASSES
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 1024px (tablet landscape)
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --section-py: 80px; }

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

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

  .about-images { height: 400px; }
  .about-img-badge { right: 8px; }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .contact-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-info-card { flex: 1; min-width: 280px; }
  .contact-map-card { flex: 1; min-width: 280px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 48px;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-line { display: none; }
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 768px (tablet)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: 64px; }

  /* Header */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 80vw;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--navy-mid);
    padding: 88px 24px 32px;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }

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

  .nav-link {
    font-size: 1.0625rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
  }

  .nav-link::after { display: none; }
  .nav-link:hover { background: rgba(255,255,255,0.06); }

  .header-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero — align-items:center + padding-top impredecible en móvil;
     cambiamos a flex-start y usamos padding explícito para limpiar header */
  .hero { align-items: flex-start; }
  .hero-content { padding-top: 124px; padding-bottom: 64px; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .hero-stat-sep { display: none; }

  .hero-stat {
    padding: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin: 4px;
    background: rgba(255,255,255,0.04);
  }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About */
  .about-images { height: 280px; }

  .about-img-badge {
    right: 12px;
    top: auto;
    bottom: -16px;
    transform: none;
  }

  .about-metrics { padding: 20px 24px; }
  .metric-value { font-size: 1.75rem; }

  .trust-items { gap: 8px; }
  .trust-item { font-size: 0.8125rem; padding: 8px 14px; }

  /* Process */
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }

  .contact-sidebar { flex-direction: column; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: auto; }

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


/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 480px (mobile)
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --section-py: 56px; }

  .container { padding: 0 16px; }

  .hero-content { padding-top: 100px; }

  .hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .hero-stats { grid-template-columns: 1fr 1fr; }

  .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  .about-images { height: 220px; }
  .about-img-secondary { display: none; }

  .contact-form-wrap { padding: 24px 16px; }
}


/* ══════════════════════════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════════════════════════ */
@media print {
  .header, .scroll-indicator, .hamburger, .mobile-overlay { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-bg { display: none; }
  .hero-content, .hero-title, .hero-subtitle, .hero-badge, .hero-ctas, .hero-stats { color: #000 !important; opacity: 1 !important; transform: none !important; }
}
