/* ==========================================================================
   Throtl — Marketing Site
   Palette: White #FDFEFE | Pacific Blue #65A8BD | Blue Slate #3E586D
            Slate Blue #855AD0 | Silver #BDC6CA
   ========================================================================== */

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

:root {
  --white:  #FDFEFE;
  --blue:   #65A8BD;
  --blue-d: #4a8fa6;
  --slate:  #3E586D;
  --purple: #855AD0;
  --silver: #BDC6CA;
  --dark:   #111b24;
  --dark-2: #172029;
  --text:   #2c3e4a;
  --text-m: #5e6e78;
  --text-l: #c8d2d8;
  --grad:   linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --radius: 12px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
p  { margin-bottom: 16px; font-size: 1rem; }

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

.text-accent { color: var(--blue); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--purple);
  margin-bottom: 14px;
}

.section-label-light { color: var(--blue); }

.section-intro {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-m);
  font-size: 1.05rem;
}

.section-header { margin-bottom: 56px; }
.section-header h2 { color: var(--slate); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--grad);
  color: #fff;
}

.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-glass {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s var(--ease);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(17, 27, 36, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 34px;
  width: auto;
  transition: opacity 0.2s;
}

.nav-logo:hover img { opacity: 0.85; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--blue) !important;
  padding: 10px 24px !important;
  border-radius: 8px;
  color: #fff !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-d) !important; transform: translateY(-1px); }

.nav-login {
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 9px 20px !important;
  border-radius: 8px;
  color: rgba(255,255,255,0.8) !important;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.nav-login::after { display: none !important; }
.nav-login:hover { border-color: #fff !important; color: #fff !important; transform: translateY(-1px); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

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

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(17, 27, 36, 0.82) 0%,
      rgba(62, 88, 109, 0.6) 50%,
      rgba(17, 27, 36, 0.85) 100%
    );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(101, 168, 189, 0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 28px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(101, 168, 189, 0.15);
  border: 1px solid rgba(101, 168, 189, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  opacity: 0.82;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero animation */
.anim-hero { opacity: 0; transform: translateY(40px); }
.anim-hero.active {
  animation: heroIn 1s var(--ease) 0.3s forwards;
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll-hint span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, rgba(101,168,189,0.7) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeIn { to { opacity: 1; } }

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background: var(--dark);
  padding: 56px 0;
  border-bottom: 1px solid rgba(101, 168, 189, 0.1);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.stat { text-align: center; flex: 1; }

.stat-number {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-l);
  opacity: 0.7;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, rgba(101,168,189,0.3), transparent);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 110px 0; }

.section-dark {
  background: var(--dark);
  color: var(--text-l);
}

.section-dark h2 { color: var(--white); }
.section-dark h3 { color: var(--white); }
.section-dark h4 { color: var(--white); }
.section-dark .section-label { color: var(--blue); }

.section-cards { background: #f5f7f8; padding-top: 0; }

/* --- Split layout --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-text h2 { color: var(--white); }

/* Image frame with accent bar */
.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

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

.img-frame-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad);
}

/* Problem callout */
.problem-callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(101, 168, 189, 0.08);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 12px;
}

.problem-callout svg {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}

.problem-callout p { margin: 0; font-size: 0.95rem; opacity: 0.9; }

/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.card {
  position: relative;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

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

.card-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(101,168,189,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.card:hover .card-glow { opacity: 1; }

.card-inner { padding: 40px 32px 36px; position: relative; }

.card-featured { box-shadow: 0 8px 40px rgba(133, 90, 208, 0.1); }
.card-featured::before { transform: scaleX(1); }

.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

.card-icon-wrap {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(101,168,189,0.1), rgba(133,90,208,0.08));
  border-radius: 14px;
  margin-bottom: 24px;
  color: var(--blue);
}

.card-icon-wrap svg { width: 30px; height: 30px; }

.card h3 { color: var(--slate); font-size: 1.2rem; }
.card p { color: var(--text-m); font-size: 0.92rem; line-height: 1.65; }

.card-features {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eef1f3;
}

.card-features li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-m);
  padding: 7px 0;
  padding-left: 24px;
  position: relative;
}

.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  background: var(--grad);
  border-radius: 50%;
  opacity: 0.25;
}

.card-features li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

/* ==========================================================================
   PARALLAX BREAK
   ========================================================================== */
.parallax-break {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.parallax-break img {
  position: absolute;
  top: -20%; left: 0;
  width: 100%; height: 140%;
  object-fit: cover;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 27, 36, 0.5) 0%,
    rgba(62, 88, 109, 0.55) 50%,
    rgba(17, 27, 36, 0.65) 100%
  );
}

.parallax-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 28px;
}

.parallax-content h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  text-align: center;
  max-width: 600px;
}

/* ==========================================================================
   VALUES
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #edf0f2;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--blue);
}

.value-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(101,168,189,0.12), rgba(133,90,208,0.08));
  border-radius: 10px;
  margin-bottom: 18px;
  color: var(--blue);
}

.value-icon svg { width: 22px; height: 22px; }
.value-card h4 { color: var(--slate); }
.value-card p { color: var(--text-m); font-size: 0.92rem; margin-bottom: 0; }

/* Center last row of 5 in a 3-col grid */
@supports (display: grid) {
  .values-grid {
    justify-items: center;
  }
  /* Push items 4 & 5 to center */
  .values-grid .value-card:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
    margin-right: 16px;
  }
  .values-grid .value-card:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: start;
    margin-left: 16px;
  }
}

/* ==========================================================================
   WHO WE SERVE
   ========================================================================== */
.serve-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 8px;
}

.serve-highlight-line {
  flex-shrink: 0;
  width: 3px;
  min-height: 48px;
  background: var(--grad);
  border-radius: 2px;
  margin-top: 4px;
}

.serve-highlight p {
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin: 0;
}

/* ==========================================================================
   VISION
   ========================================================================== */
.section-vision {
  background: linear-gradient(145deg, var(--dark) 0%, #1a2d3d 50%, var(--slate) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-vision::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(101,168,189,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.vision-wrapper { max-width: 780px; margin: 0 auto; text-align: center; }

.vision-quote {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.85;
  font-style: italic;
  font-weight: 400;
  opacity: 0.88;
  margin-bottom: 32px;
  border: none;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -20px; left: -10px;
  font-size: 4rem;
  font-style: normal;
  font-weight: 900;
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
}

.vision-quote em {
  font-style: normal;
  color: var(--blue);
  font-weight: 600;
}

.vision-divider {
  width: 60px; height: 3px;
  background: var(--grad);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.vision-tag {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
}

.vision-tag strong { color: var(--blue); }

/* ==========================================================================
   CTA
   ========================================================================== */
.section-cta {
  background:
    radial-gradient(ellipse at 30% 80%, rgba(101,168,189,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(133,90,208,0.06) 0%, transparent 50%),
    var(--white);
  padding: 100px 0;
}

.section-cta h2 { color: var(--slate); }
.section-cta .section-intro { margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-l); opacity: 0.75; }

.contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, border-color 0.2s;
}

.contact-item:hover {
  background: rgba(101, 168, 189, 0.06);
  border-color: rgba(101, 168, 189, 0.15);
}

.contact-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(101, 168, 189, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-icon svg { width: 18px; height: 18px; color: var(--blue); }

.contact-item-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 4px;
}

.contact-item-value {
  display: block;
  font-size: 0.95rem;
  color: var(--text-l);
  line-height: 1.5;
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
}

.map-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,27,36,0.3) 0%, rgba(101,168,189,0.1) 100%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--dark);
  color: var(--text-l);
  padding: 56px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo { height: 28px; opacity: 0.8; margin-bottom: 12px; }

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-l);
  opacity: 0.5;
  margin: 0;
  max-width: 260px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-l);
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover { opacity: 1; color: var(--blue); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
}

.footer-bottom p { font-size: 0.8rem; opacity: 0.35; margin: 0; }

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Staggered delays via data-delay */
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { gap: 32px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-grid .value-card:nth-child(4),
  .values-grid .value-card:nth-child(5) {
    grid-column: auto;
    margin: 0;
    justify-self: auto;
  }
  .values-grid .value-card:nth-child(5) { grid-column: 1 / -1; max-width: 400px; justify-self: center; }
  .section { padding: 80px 0; }
  .parallax-break { height: 320px; }
  .footer-inner { flex-direction: column; gap: 28px; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: rgba(17, 27, 36, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 100px 36px 36px;
    gap: 28px;
    transition: right 0.35s var(--ease);
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
  }

  .nav-links a::after { display: none; }

  .hero { min-height: 92vh; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-scroll-hint { display: none; }

  .stats-grid { flex-direction: column; gap: 28px; }
  .stat-divider { width: 48px; height: 1px; }

  .values-grid { grid-template-columns: 1fr; }
  .values-grid .value-card:nth-child(5) { max-width: none; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .parallax-break { height: 240px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
}
