@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --cream: #F1FAEE;
  --navy: #1D3557;
  --navy-light: #264d7a;
  --navy-dark: #12223a;
  --cream-dark: #d8eade;
  --accent: #457B9D;
  --accent2: #A8DADC;
  --text-dark: #0d1f31;
  --text-muted: #5a7a8a;
  --shadow: 0 4px 32px rgba(29,53,87,0.10);
  --shadow-lg: 0 16px 64px rgba(29,53,87,0.18);
  --radius: 14px;
  --radius-lg: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ── SELECTION ── */
::selection { background: var(--navy); color: var(--cream); }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(29, 53, 87, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(241,250,238,0.08);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 40px rgba(29,53,87,0.28); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

/* SVG LOGO */
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.nav-brand span { color: var(--accent2); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(241,250,238,0.8);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent2);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--cream) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent2) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 120px 5vw 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,250,238,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,250,238,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(69,123,157,0.35) 0%, transparent 70%);
  top: -120px; right: -100px;
}
.hero-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(168,218,220,0.2) 0%, transparent 70%);
  bottom: -80px; left: 10%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { max-width: 680px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(168,218,220,0.15);
  border: 1px solid rgba(168,218,220,0.3);
  color: var(--accent2);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 1rem; border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s 0.15s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent2);
  position: relative;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(241,250,238,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeSlideUp 0.8s 0.3s ease both;
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.45s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(241,250,238,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(241,250,238,0.3); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--cream);
  font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(241,250,238,0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--cream); background: rgba(241,250,238,0.08); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(241,250,238,0.1);
  animation: fadeSlideUp 0.8s 0.6s ease both;
}

.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--cream);
  line-height: 1;
}
.stat-num span { color: var(--accent2); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(241,250,238,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════════ */
section { padding: 96px 5vw; }

.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}

.section-title.light { color: var(--cream); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
}
.section-sub.light { color: rgba(241,250,238,0.65); }

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

.services-header { margin-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid rgba(29,53,87,0.08);
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

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

.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-section { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-content { }

.why-points { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.8rem; }

.why-point { display: flex; gap: 1.2rem; align-items: flex-start; }

.why-point-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem; font-weight: 800;
  color: var(--accent2);
  background: rgba(168,218,220,0.12);
  border: 1px solid rgba(168,218,220,0.2);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.why-point-text h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.why-point-text p {
  font-size: 0.9rem;
  color: rgba(241,250,238,0.6);
  line-height: 1.6;
}

.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.metric-card {
  background: rgba(241,250,238,0.05);
  border: 1px solid rgba(241,250,238,0.1);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}
.metric-card:hover {
  background: rgba(241,250,238,0.09);
  border-color: rgba(168,218,220,0.3);
}
.metric-card:nth-child(2) { margin-top: 2rem; }
.metric-card:nth-child(4) { margin-top: 2rem; }

.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric-value span { color: var(--accent2); }
.metric-label {
  font-size: 0.8rem;
  color: rgba(241,250,238,0.5);
  margin-top: 0.5rem;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */
.process-section { background: var(--cream); }

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 14%; right: 14%;
  height: 1px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--accent) 50%, var(--navy) 100%);
  opacity: 0.25;
}

.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 1.5rem;
  position: relative;
}

.process-step-num {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative; z-index: 2;
  transition: background 0.3s, transform 0.3s;
}
.process-step:hover .process-step-num {
  background: var(--accent);
  transform: scale(1.1);
}

.process-step h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  padding: 80px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(69,123,157,0.25) 0%, transparent 70%);
}
.cta-band .section-title.light { margin-bottom: 1rem; position: relative; }
.cta-band .section-sub.light { margin: 0 auto 2.5rem; position: relative; }
.cta-band .btn-primary { position: relative; font-size: 1rem; padding: 1rem 2.5rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--navy-dark);
  color: rgba(241,250,238,0.55);
  padding: 60px 5vw 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-brand { color: var(--cream); display: block; margin-top: 0.8rem; font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; margin-top: 1rem; line-height: 1.7; max-width: 260px; }

.footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  color: var(--cream);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(241,250,238,0.55);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent2); }

.footer-bottom {
  border-top: 1px solid rgba(241,250,238,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}

/* ══════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════ */
.inner-hero {
  background: var(--navy);
  padding: 140px 5vw 80px;
  position: relative; overflow: hidden;
}
.inner-hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(241,250,238,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241,250,238,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.inner-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
  position: relative;
}
.inner-hero p {
  color: rgba(241,250,238,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  font-weight: 300;
  position: relative;
}
.inner-hero .breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(241,250,238,0.4);
  margin-bottom: 1.2rem;
  position: relative;
}
.inner-hero .breadcrumb a { color: var(--accent2); text-decoration: none; }
.inner-hero .breadcrumb span { color: rgba(241,250,238,0.25); }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 96px 5vw;
}

.about-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-num-card {
  background: rgba(241,250,238,0.07);
  border: 1px solid rgba(241,250,238,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.about-num-card:nth-child(2) { margin-top: 1.5rem; }
.about-num-card:nth-child(4) { margin-top: 1.5rem; }

.about-num-card .num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--accent2);
}
.about-num-card .label { font-size: 0.78rem; color: rgba(241,250,238,0.5); margin-top: 4px; }

.about-values {
  background: var(--navy);
  padding: 80px 5vw;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: rgba(241,250,238,0.05);
  border: 1px solid rgba(241,250,238,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.3s, border-color 0.3s;
}
.value-card:hover { background: rgba(241,250,238,0.09); border-color: rgba(168,218,220,0.25); }
.value-card .icon { font-size: 1.8rem; margin-bottom: 1rem; }
.value-card h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--cream); margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.88rem; color: rgba(241,250,238,0.55); line-height: 1.65; }

.team-section { background: var(--cream); padding: 80px 5vw; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(29,53,87,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.team-info { padding: 1.5rem; }
.team-info h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  color: var(--navy); margin-bottom: 0.2rem;
}
.team-info .role { font-size: 0.82rem; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section {
  padding: 80px 5vw;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--navy); margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.contact-info p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }

.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.8rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail-text h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  color: var(--navy); margin-bottom: 0.2rem;
}
.contact-detail-text p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(29,53,87,0.08);
  box-shadow: var(--shadow);
}

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

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em; text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(29,53,87,0.15);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(29,53,87,0.1);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem;
  border: none; border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(29,53,87,0.25); }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success .success-icon {
  font-size: 3rem; margin-bottom: 1rem;
}
.form-success h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: var(--navy); margin-bottom: 0.5rem;
}
.form-success p { color: var(--text-muted); font-size: 0.95rem; }

/* ══════════════════════════════════════
   LEGAL PAGES (Privacy, T&C)
══════════════════════════════════════ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 5vw;
}

.legal-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 0.8rem;
  letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 0.95rem; color: #4a6070; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { font-size: 0.95rem; color: #4a6070; line-height: 1.8; margin-bottom: 0.4rem; }
.legal-date {
  display: inline-block;
  background: rgba(29,53,87,0.07);
  color: var(--navy); font-size: 0.8rem; font-weight: 600;
  padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--navy-dark);
    padding: 1rem 0 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s, opacity 0.35s;
    pointer-events: none;
    z-index: 999;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .mobile-menu a {
    padding: 1rem 5vw;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem; font-weight: 500;
    color: rgba(241,250,238,0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(241,250,238,0.06);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu a:hover { color: var(--cream); padding-left: calc(5vw + 8px); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .why-visual .metric-card:nth-child(2), .why-visual .metric-card:nth-child(4) { margin-top: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
}

/* ══════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Alert messages */
.alert {
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  display: none;
}
.alert.error { background: #fce4e4; border: 1px solid #e88; color: #c00; display: block; }
.alert.success { background: #e4f5e4; border: 1px solid #8d8; color: #060; display: block; }
