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

:root {
  --navy: #0A1628;
  --navy-mid: #131F36;
  --navy-light: #1C2E4A;
  --accent: #C8102E;
  --accent-light: #E8364D;
  --cream: #F8F6F3;
  --warm: #F0EDE8;
  --gray-700: #4A4A4A;
  --gray-500: #6B6B6B;
  --gray-400: #9A9A9A;
  --gray-200: #E0DDD8;
  --gray-100: #F5F3F0;
  --white: #FFFFFF;
  --text: #1A1A1C;
  --copper: #B87333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== Animations ===== */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anim--d1 { transition-delay: 0.15s; }
.anim--d2 { transition-delay: 0.3s; }
.anim--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal--d1 { transition-delay: 0.2s; }
.reveal--d2 { transition-delay: 0.4s; }
.reveal--d3 { transition-delay: 0.6s; }
.reveal--d4 { transition-delay: 0.8s; }
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  pointer-events: none;
}

.nav--visible {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 10px 0;
  pointer-events: auto;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  flex-shrink: 0;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
}

.nav-logo-sub {
  font-weight: 400;
  font-size: 0.65em;
  opacity: 0.7;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav--visible .nav-brand,
.nav--visible .nav-links,
.nav--visible .nav-cta {
  opacity: 1;
  pointer-events: auto;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 10px 28px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.4s, background 0.2s;
  pointer-events: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--accent-light); }

.nav-link--cta { display: none; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  z-index: 1000;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ===== Typography ===== */
h1, h2 { font-family: var(--font-heading); }

h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 20px;
}

h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ===== Button ===== */
.btn {
  display: inline-block;
  padding: 18px 48px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 16, 46, 0.3);
}

.btn--large {
  padding: 22px 64px;
  font-size: 0.95rem;
}

/* ===== Sections ===== */
.section {
  padding: 120px 0;
  position: relative;
}

.section--cream { background: var(--cream); }

.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2 { color: var(--white); }
.section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255, 255, 255, 0.75); }

.section--accent {
  background: var(--navy-mid);
  color: var(--white);
}
.section--accent h2 { color: var(--white); }
.section--accent h3 { color: var(--white); }
.section--accent h4 { color: var(--white); }
.section--accent p { color: rgba(255, 255, 255, 0.75); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 14px;
}

.section--dark .section-label,
.section--accent .section-label { color: var(--copper); }

.section-intro {
  font-size: 1.1rem;
  max-width: 680px;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 56px;
}

.section--dark .section-intro,
.section--accent .section-intro { color: rgba(255, 255, 255, 0.65); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 100px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 16, 46, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(184, 115, 51, 0.06) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

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

.hero-logo {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 32px;
}

.hero-logo-sub {
  display: block;
  font-weight: 400;
  font-size: 0.35em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--copper);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(184, 115, 51, 0.3);
}

.hero h1 {
  margin-bottom: 28px;
}

.highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.85;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Grid ===== */
.grid {
  display: grid;
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Cards ===== */
.card {
  background: var(--cream);
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(10, 22, 40, 0.06);
  line-height: 1;
  margin-bottom: 20px;
}

.card p {
  color: var(--gray-500);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ===== Shifts ===== */
.shifts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.shift-item {
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: background 0.3s, border-color 0.3s;
}

.shift-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.shift-item:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px);
}

.shift-from {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 4px;
}

.shift-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  color: var(--copper);
  vertical-align: middle;
  margin: 0 10px;
}

.shift-arrow svg {
  width: 100%;
  height: 100%;
}

.shift-to {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.shift-item p {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ===== Expertise ===== */
.expertise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.expertise-text .section-label { margin-bottom: 14px; }
.expertise-text h2 { margin-bottom: 24px; }

.expertise-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.expertise-highlight {
  font-weight: 600;
  color: var(--white) !important;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-top: 24px !important;
}

.expertise-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pillar {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: background 0.3s;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.07);
}

.pillar-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--copper);
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== Approach ===== */
.approach-item {
  padding: 36px;
  background: var(--cream);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.approach-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.approach-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(10, 22, 40, 0.05);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.approach-item p {
  color: var(--gray-500);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ===== Timeline ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.timeline-track {
  position: absolute;
  top: 28px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.timeline-progress {
  width: 0%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1.5s ease;
}

.anim--visible .timeline-progress {
  width: 100%;
}

.timeline-phase {
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.timeline-marker:hover {
  transform: scale(1.1);
}

.timeline-days {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.timeline-content h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ===== Results ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s;
}

.result-item:hover { transform: translateX(4px); }

.result-check {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.result-check svg {
  width: 100%;
  height: 100%;
}

.result-item span {
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.4;
}

.result-quote {
  text-align: center;
  padding-top: 8px;
}

.result-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== Pricing Cards ===== */
.pricing-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.pricing-card--featured {
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card--featured h3 { color: var(--white); }
.pricing-card--featured p { color: rgba(255, 255, 255, 0.7); }
.pricing-card--featured .pricing-step { color: var(--copper); }

.pricing-step {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-duration {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy) !important;
  margin-bottom: 16px !important;
}

.pricing-card--featured .pricing-duration {
  color: var(--white) !important;
}

.pricing-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card p {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ===== Team ===== */
.team-section-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 28px;
}

.team-section-title--extended {
  margin-top: 64px;
}

.team-pool-intro {
  font-size: 0.95rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.team-grid { margin-bottom: 0; }

.team-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s;
  overflow: hidden;
  letter-spacing: 0.05em;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

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

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.team-expertise {
  color: var(--gray-500) !important;
  font-size: 0.88rem;
  line-height: 1.6;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.team-linkedin:hover { color: #0A66C2; }

.team-linkedin svg { flex-shrink: 0; }


/* ===== Fit ===== */
.fit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 48px 0;
}

.fit-item {
  flex: 1 1 280px;
  max-width: 360px;
}

.fit-contrast {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: background 0.3s, border-color 0.3s;
}

.fit-contrast:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.fit-no {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.15);
}

.fit-arrow-svg {
  width: 22px;
  height: 22px;
  color: var(--copper);
  flex-shrink: 0;
}

.fit-yes {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.fit-cta {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== CTA ===== */
.section--cta {
  padding: 140px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.section--cta h2 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section--cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
  margin: 0 auto 20px;
  position: relative;
}

.cta-warning {
  font-family: var(--font-heading);
  color: var(--copper) !important;
  font-weight: 500;
  font-style: italic;
  font-size: 1.25rem !important;
  margin-bottom: 40px !important;
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: left;
}

.contact-form--hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.6;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

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

.contact-form .btn {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  text-align: center;
  min-height: 1.5em;
}

.form-status--success {
  color: #4ade80;
}

.form-status--error {
  color: var(--accent-light);
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 36px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.6;
  line-height: 1;
}

.footer-logo-sub {
  font-weight: 400;
  font-size: 0.6em;
  margin-left: 2px;
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 1024px) {
  .expertise-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .expertise-pillars {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: 1fr 1fr; }

  .nav-links { display: none; }
  .nav-cta { display: none; }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: 998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 32px;
  }

  .mobile-overlay--open {
    display: flex !important;
  }

  .mobile-overlay .nav-link {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    font-family: var(--font-heading);
  }

  .mobile-overlay .nav-link:hover {
    opacity: 1;
  }

  .mobile-overlay .nav-link--cta {
    display: inline-block !important;
    margin-top: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-body);
    opacity: 1;
    text-decoration: none;
    font-size: 1rem;
  }

  .shifts-grid { grid-template-columns: 1fr; }
  .shift-item:last-child { max-width: 100%; }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .timeline-track { display: none; }

  .expertise-pillars { grid-template-columns: 1fr 1fr; }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }

  .hero {
    min-height: auto;
    padding: 100px 0 64px;
  }

  .hero-label { margin-bottom: 20px; font-size: 0.65rem; }
  .hero h1 { font-size: 2.2rem; margin-bottom: 20px; }
  .hero-sub { font-size: 0.95rem; margin-bottom: 32px; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .hero-stat-divider { width: 40px; height: 1px; }
  .hero-stat-number { font-size: 2rem; }

  h2 { font-size: 1.7rem; margin-bottom: 14px; }
  .section-label { margin-bottom: 10px; font-size: 0.68rem; }
  .section-intro { font-size: 1rem; margin-bottom: 40px; }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; gap: 16px; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav { pointer-events: auto; }
  .nav-brand { opacity: 1; pointer-events: auto; }

  .shifts-grid { grid-template-columns: 1fr; }
  .shift-item:last-child { max-width: 100%; }

  .approach-item { padding: 28px; }
  .approach-number { font-size: 2.5rem; }

  .expertise-layout { grid-template-columns: 1fr; gap: 40px; }
  .expertise-pillars { grid-template-columns: 1fr; }

  .timeline {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: 36px;
  }
  .timeline-track { display: none; }
  .timeline-phase {
    text-align: left;
    padding: 0 0 0 36px;
  }
  .timeline-marker {
    position: absolute;
    left: -36px;
    top: 0;
    margin: 0;
    width: 40px;
    height: 40px;
  }
  .timeline-days { font-size: 0.55rem; }
  .timeline-content h3 { font-size: 1rem; }
  .timeline-content p { font-size: 0.85rem; }

  .results-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 44px; }
  .result-item { padding: 18px 22px; }
  .result-quote blockquote { font-size: 1.2rem; }

  .pricing-card { padding: 32px 24px; }
  .pricing-card h3 { font-size: 1.15rem; }
  .pricing-duration { font-size: 1.3rem; }

  .team-card { padding: 36px 20px; }
  .team-avatar { width: 84px; height: 84px; font-size: 1.1rem; }
  .team-section-title--extended { margin-top: 44px; }

  .fit-grid { flex-direction: column; align-items: center; margin: 32px 0; }
  .fit-item { max-width: 100%; }
  .fit-contrast { padding: 20px 22px; }
  .fit-cta { font-size: 0.95rem; }

  .section--cta { padding: 80px 0; }
  .section--cta h2 { font-size: 1.5rem; }
  .cta-warning { font-size: 1.05rem !important; }

  .btn { padding: 16px 36px; font-size: 0.88rem; }
  .btn--large { padding: 18px 48px; font-size: 0.9rem; }

  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .nav-cta { padding: 8px 20px; font-size: 0.8rem; }
}
