/* ===== Plixo Landing - Elefore-inspired, Plixo brand ===== */

:root {
  /* Plixo brand */
  --plx-blue: #0B29B6;
  --plx-blue-2: #3840FE;
  --plx-lime: #C7F464;
  --plx-lime-dark: #A3D139;
  --plx-success: #10B981;
  --plx-navy: #0B1021;
  --plx-navy-2: #0F1530;

  /* Neutrals */
  --black: #0a0a0a;
  --white: #fafafa;
  --gray-50: #f7f8fa;
  --gray-100: #ececef;
  --gray-200: #d6d8de;
  --gray-300: #b6b9c2;
  --gray-400: #8b8f9b;
  --gray-600: #4a4e5a;
  --gray-800: #1f2330;

  --error: #ef4444;
  --warning: #f59e0b;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-wordmark: 'Poppins', system-ui, sans-serif;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --content-max: 1100px;
  --content-wide: 1280px;
  --content-padding: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.55;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Grain overlay (subtle) */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== Animated gradient text ===== */
/* Shared base */
.hero h1 em,
.hero-sub em,
.the-problem h2 em,
.the-fix h2 em,
.the-offer h2 em,
.contact-left h2 em {
  font-style: normal;
  font-weight: 700;
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 7s ease-in-out infinite;
}

/* Bright variant for dark backgrounds (hero, contact) */
.hero h1 em,
.hero-sub em,
.contact-left h2 em {
  background-image: linear-gradient(
    100deg,
    var(--plx-lime) 0%,
    #e7ff8e 20%,
    var(--plx-lime-dark) 45%,
    var(--plx-lime) 70%,
    #e7ff8e 100%
  );
}

/* Rich variant for light backgrounds (problem, mechanism, offer) */
/* Darker stops sweep through emerald and plixo blue for legible contrast */
.the-problem h2 em,
.the-fix h2 em,
.the-offer h2 em {
  background-image: linear-gradient(
    100deg,
    var(--plx-lime-dark) 0%,
    var(--plx-success) 28%,
    var(--plx-blue-2) 50%,
    var(--plx-blue) 60%,
    var(--plx-success) 78%,
    var(--plx-lime-dark) 100%
  );
}

.hero-sub em { font-weight: 600; }

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 220% center; }
}

/* ===== Navigation ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  --nav-pad-y: 18px;
  --nav-light-top: 0px;
  --nav-light-bottom: 100%;
  padding: var(--nav-pad-y) var(--content-padding);
  background: transparent;
}
.nav-inner {
  max-width: var(--content-wide); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-layer-dark {
  position: relative;
  z-index: 1;
}
.nav-layer-light {
  position: absolute;
  z-index: 2;
  top: var(--nav-pad-y);
  left: 50%;
  width: min(calc(100% - (2 * var(--content-padding))), var(--content-wide));
  margin: 0;
  pointer-events: none;
  transform: translateX(-50%);
  clip-path: inset(var(--nav-light-top) 0 var(--nav-light-bottom) 0);
}
.nav-layer-light a,
.nav-layer-light button {
  pointer-events: none;
}

.logo {
  display: inline-flex; align-items: center; gap: 12px;
}
.logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-wordmark);
  font-size: 1.05rem; font-weight: 600; letter-spacing: 0.18em;
}

/* Default + dark-section theme: blue gear, white wordmark */
.nav-layer-dark .logo-gear   { fill: var(--plx-blue); }
.nav-layer-dark .logo-letter { fill: var(--white); }
.nav-layer-dark .logo-ring   { fill: var(--plx-blue-2); }
.nav-layer-dark .logo-text   { color: var(--white); }

/* Light-section theme: lime gear, navy wordmark */
.nav-layer-light .logo-gear   { fill: var(--plx-lime-dark); }
.nav-layer-light .logo-letter { fill: var(--plx-navy); }
.nav-layer-light .logo-ring   { fill: var(--plx-success); }
.nav-layer-light .logo-text   { color: var(--plx-navy); }

/* Footer logo always uses the light treatment locally to keep brand colors */
.footer .logo-gear   { fill: var(--plx-blue); }
.footer .logo-letter { fill: var(--white); }
.footer .logo-ring   { fill: var(--plx-blue-2); }
.nav-cta {
  font-size: 0.9rem; font-weight: 700; color: var(--plx-navy);
  background: linear-gradient(135deg, var(--plx-lime) 0%, var(--plx-success) 100%);
  padding: 11px 18px; border-radius: 8px;
  box-shadow: 0 10px 28px rgba(199, 244, 100, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.nav-cta:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(199, 244, 100, 0.4);
}

/* ===== Section helpers ===== */
.section-inner { max-width: var(--content-max); margin: 0 auto; }
.section-label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--plx-blue-2); text-transform: uppercase;
  letter-spacing: 0.18em; margin-bottom: 22px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100svh;
  /* Bottom padding leaves room for absolutely positioned hero-stats */
  padding: 140px var(--content-padding) 180px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background: var(--plx-navy);
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-image {
  position: absolute; inset: 0;
  background-image: url("images/hero-bg.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  animation: hero-image-drift 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-image-drift {
  0%   { transform: scale(1.04) translateX(0); }
  100% { transform: scale(1.06) translateX(-12px); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    /* Darken the left side so the headline always sits on rich navy */
    linear-gradient(90deg, rgba(11,16,33,0.85) 0%, rgba(11,16,33,0.55) 45%, rgba(11,16,33,0.18) 75%, rgba(11,16,33,0) 100%),
    /* Top + bottom edge fade for a cinematic vignette */
    linear-gradient(180deg, rgba(11,16,33,0.45) 0%, rgba(11,16,33,0) 25%, rgba(11,16,33,0) 70%, rgba(11,16,33,0.85) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 60%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 60%);
  opacity: 0.5;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.22em;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.2vw, 5rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 980px;
}
.hero-sub {
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-top: 26px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
  margin-top: 36px;
}

.hero-stats {
  position: absolute; z-index: 2;
  left: 0; right: 0; bottom: 40px;
  margin: 0 auto;
  max-width: var(--content-max);
  padding: 0 var(--content-padding);
  display: flex; align-items: flex-end; gap: 56px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--plx-lime) 0%, #e7ff8e 50%, var(--plx-lime-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  max-width: 200px;
}
.scroll-hint {
  margin-left: auto;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

/* ===== Buttons ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 26px;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 700;
  border: 1px solid transparent; border-radius: 10px; cursor: pointer;
  text-decoration: none; line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: var(--plx-navy);
  background: linear-gradient(135deg, var(--plx-lime) 0%, var(--plx-success) 100%);
  box-shadow: 0 14px 38px rgba(199, 244, 100, 0.28);
}
.btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(199, 244, 100, 0.42);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(199, 244, 100, 0.55);
  transform: translateY(-2px);
}

/* ===== The Problem ===== */
.the-problem { background: var(--white); padding: 120px var(--content-padding); }
.problem-header { max-width: 880px; margin-bottom: 56px; }
.problem-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
}
.story-lead {
  margin-top: 22px;
  font-size: 1.1rem; line-height: 1.7;
  color: var(--gray-600);
  max-width: 760px;
}
.problem-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 56px;
}
.problem-card {
  position: relative; overflow: hidden;
  padding: 32px 28px 30px;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out-expo);
}
.problem-card:hover {
  border-color: var(--plx-blue-2);
  box-shadow: 0 14px 40px rgba(11, 41, 182, 0.08);
  transform: translateY(-3px);
}
.card-num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700;
  color: var(--plx-blue);
  opacity: 0.1; letter-spacing: -0.02em;
  line-height: 1; pointer-events: none;
}
.card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.card-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.card-icon.good    { background: rgba(199,244,100,0.16); color: var(--plx-lime-dark); }
.card-icon.warning { background: rgba(245,158,11,0.14); color: var(--warning); }
.card-icon.bad     { background: rgba(239,68,68,0.13); color: var(--error); }
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; line-height: 1.3;
  letter-spacing: -0.01em; color: var(--black);
}
.problem-card p {
  font-size: 0.95rem; line-height: 1.65;
  color: var(--gray-600); margin-top: 6px;
}
.problem-result {
  display: flex; align-items: center; gap: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(11,41,182,0.06) 0%, rgba(199,244,100,0.08) 100%);
  border: 1px solid rgba(11,41,182,0.12);
  border-radius: 16px;
}
.result-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--plx-blue) 0%, var(--plx-blue-2) 100%);
  border-radius: 14px; color: white;
}
.result-cost { font-size: 1.05rem; line-height: 1.6; color: var(--gray-800); }
.result-cost strong { color: var(--black); font-weight: 700; }

/* ===== The Fix / Mechanism ===== */
.the-fix {
  background: var(--gray-50);
  padding: 120px var(--content-padding);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.fix-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.fix-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.6vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}
.fix-description {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--gray-600); margin-top: 22px;
}

/* Timeline */
.timeline {
  position: relative; padding-left: 56px;
  max-width: 760px; margin: 0 auto;
}
.timeline-line {
  position: absolute; left: 17px; top: 4px; bottom: 4px;
  width: 2px;
  background: linear-gradient(180deg, var(--plx-blue-2), var(--plx-lime));
  border-radius: 2px;
}
.timeline-step { position: relative; margin-bottom: 44px; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-circle {
  position: absolute; left: -56px; top: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem;
  color: white;
  background: linear-gradient(135deg, var(--plx-blue) 0%, var(--plx-blue-2) 100%);
  box-shadow: 0 6px 18px rgba(11,41,182,0.25);
  z-index: 1;
}
.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--black); margin-bottom: 6px;
}
.timeline-content p {
  color: var(--gray-600); font-size: 0.97rem; line-height: 1.7;
}
.timeline-badge {
  display: inline-block;
  background: rgba(11,41,182,0.08); color: var(--plx-blue);
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* ===== The Offer ===== */
.the-offer { background: var(--white); padding: 120px var(--content-padding); }
.offer-header { text-align: center; max-width: 820px; margin: 0 auto 48px; }
.offer-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.02em;
}
.offer-description {
  font-size: 1.1rem; color: var(--gray-600); line-height: 1.7;
  margin-top: 20px;
}
.offer-card {
  max-width: 820px; margin: 0 auto;
  padding: 48px 48px 44px;
  background: var(--plx-navy);
  color: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(11,16,33,0.28);
  position: relative; overflow: hidden;
}
.offer-card::before {
  content: ""; position: absolute; pointer-events: none;
  top: -120px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(199,244,100,0.22) 0%, rgba(199,244,100,0) 70%);
}
.offer-card-header { margin-bottom: 28px; position: relative; }
.offer-tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--plx-lime);
  background: rgba(199,244,100,0.1);
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid rgba(199,244,100,0.25);
  margin-bottom: 16px;
}
.offer-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.offer-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 18px;
  margin: 0 0 28px;
}
.offer-list li {
  position: relative; padding-left: 30px;
  line-height: 1.55;
}
.offer-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 16px;
  background: var(--plx-lime);
  border-radius: 4px;
  box-shadow: 0 0 0 4px rgba(199,244,100,0.18);
}
.offer-list strong {
  display: block; font-weight: 600;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin-bottom: 2px;
}
.offer-list span {
  display: block; color: rgba(255,255,255,0.7); font-size: 0.95rem;
}
.offer-guarantee {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: rgba(199,244,100,0.06);
  border: 1px solid rgba(199,244,100,0.2);
  border-radius: 14px;
  margin-bottom: 28px;
}
.guarantee-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(199,244,100,0.18);
  border-radius: 10px; color: var(--plx-lime);
}
.offer-guarantee p { font-size: 0.97rem; line-height: 1.6; color: rgba(255,255,255,0.82); }
.offer-guarantee strong { color: var(--plx-lime); font-weight: 600; }
.offer-cta { width: 100%; }

/* ===== Trust ===== */
.trust {
  background: var(--gray-50);
  padding: 120px var(--content-padding);
  border-top: 1px solid var(--gray-100);
}
.trust-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px; align-items: center;
}
.trust-portrait { position: relative; justify-self: center; }
.trust-portrait img {
  width: 280px; height: 280px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 24px 60px rgba(11,16,33,0.18);
}
.trust-portrait::before {
  content: ""; position: absolute;
  inset: -10px -10px auto auto;
  width: 84px; height: 84px;
  background: linear-gradient(135deg, var(--plx-lime), var(--plx-blue-2));
  border-radius: 50%;
  z-index: -1;
  filter: blur(18px); opacity: 0.65;
}
.trust-linkedin {
  position: absolute; bottom: -14px; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--plx-blue);
  color: white;
  border-radius: 12px;
  font-family: var(--font-wordmark);
  font-weight: 700; font-size: 1.1rem;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 24px rgba(11,41,182,0.35);
  transition: transform 0.2s ease;
}
.trust-linkedin:hover { transform: translateX(-50%) translateY(-2px); }
.trust-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 700; line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.trust-lead {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--gray-800);
  margin-bottom: 16px;
}
.trust-lead strong { color: var(--black); }
.trust-copy > p {
  color: var(--gray-600); line-height: 1.7;
  margin-bottom: 24px;
}
.trust-stats {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 0;
}
.trust-stats li {
  padding: 18px 18px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
}
.trust-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--plx-blue) 0%, var(--plx-blue-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust-stat-label {
  display: block;
  font-size: 0.85rem; color: var(--gray-600);
  margin-top: 4px;
}

/* ===== Fit ===== */
.fit { background: var(--white); padding: 120px var(--content-padding); }
.fit-header { max-width: 760px; margin-bottom: 48px; }
.fit-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em;
}
.fit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.fit-card {
  padding: 32px 30px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.fit-card:hover {
  border-color: var(--plx-blue-2);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(11,41,182,0.08);
}
.fit-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  color: var(--black); margin-bottom: 10px;
  line-height: 1.35;
}
.fit-card p {
  font-size: 0.95rem; line-height: 1.6;
  color: var(--gray-600);
}

/* ===== Contact ===== */
.contact {
  background: var(--plx-navy);
  color: var(--white);
  padding: 120px var(--content-padding);
  position: relative; overflow: hidden;
}
.contact::before {
  content: ""; position: absolute; pointer-events: none;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(56,64,254,0.35) 0%, rgba(11,16,33,0) 70%);
  filter: blur(40px);
}
.contact::after {
  content: ""; position: absolute; pointer-events: none;
  bottom: -200px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(199,244,100,0.25) 0%, rgba(11,16,33,0) 70%);
  filter: blur(40px);
}
.contact-container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.contact-left .section-label { color: var(--plx-lime); }
.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.contact-left > p {
  font-size: 1.08rem; line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 22px;
}
.contact-model {
  font-weight: 500; color: var(--plx-lime);
  margin-bottom: 36px !important;
  font-size: 1rem !important;
}
.contact-direct {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.contact-direct span {
  display: block; font-size: 0.82rem;
  color: rgba(255,255,255,0.55); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.contact-direct a {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600; color: var(--white);
  transition: color 0.2s;
}
.contact-direct a:hover { color: var(--plx-lime); }

.contact-right {
  padding: 36px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact-right form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-right input,
.contact-right select,
.contact-right textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit; font-size: 0.97rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-right textarea { resize: vertical; min-height: 90px; }
.contact-right input::placeholder,
.contact-right textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact-right input:focus,
.contact-right select:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: var(--plx-lime);
  background: rgba(255,255,255,0.08);
}
.contact-right select { color: rgba(255,255,255,0.95); }
.contact-right select option { color: var(--black); }
.contact-right button { margin-top: 6px; width: 100%; }
.form-status { font-size: 0.85rem; color: var(--plx-lime); min-height: 1em; }
.form-status.error { color: #ffb4b4; }

/* ===== Footer ===== */
.footer {
  background: var(--gray-50);
  padding: 60px var(--content-padding) 40px;
  border-top: 1px solid var(--gray-100);
}
.footer-container {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand links"
    "copy copy";
  gap: 28px 40px;
  align-items: center;
}
.footer-brand { grid-area: brand; }
.footer-brand .logo { color: var(--black); margin-bottom: 8px; }
.footer-brand .logo-text { color: var(--black); }
.footer-brand p { font-size: 0.9rem; color: var(--gray-600); }
.footer-links { grid-area: links; display: flex; gap: 24px; }
.footer-links a { font-size: 0.9rem; color: var(--gray-600); transition: color 0.2s; }
.footer-links a:hover { color: var(--plx-blue); }
.footer-copy {
  grid-area: copy;
  font-size: 0.85rem; color: var(--gray-400);
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
}

/* ===== Animations ===== */
[data-animate] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
[data-animate].visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-animate] { opacity: 1; transform: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .problem-cards { grid-template-columns: 1fr 1fr; }
  .problem-cards .problem-card:nth-child(3) { grid-column: span 2; }
  .trust-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .trust-portrait { justify-self: center; }
  .trust-stats { max-width: 520px; margin: 0 auto; }
  .contact-container { grid-template-columns: 1fr; gap: 48px; }
  .fit-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 36px 56px; }
  .scroll-hint { display: none; }
}

@media (max-width: 768px) {
  :root { --content-padding: 20px; }
  .nav {
    --nav-pad-y: 14px;
    padding: var(--nav-pad-y) var(--content-padding);
  }

  .hero {
    /* Keep 100svh on mobile so stats hug the visible bottom edge */
    padding: 110px var(--content-padding) 160px;
    min-height: 100svh;
  }
  .hero h1 { font-size: 2.4rem; line-height: 1.1; }
  .hero-sub { font-size: 1.02rem; }
  .hero-stats {
    bottom: 24px;
    gap: 18px 28px;
  }
  .stat-num { font-size: 1.3rem; }

  .hero-image {
    /* Show the dark negative-space side of the image on narrow widths */
    background-position: 15% center;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11,16,33,0.55) 0%, rgba(11,16,33,0.25) 30%, rgba(11,16,33,0.6) 70%, rgba(11,16,33,0.92) 100%);
  }

  .the-problem,
  .the-fix,
  .the-offer,
  .trust,
  .fit,
  .contact { padding: 80px var(--content-padding); }

  .problem-cards { grid-template-columns: 1fr; }
  .problem-cards .problem-card:nth-child(3) { grid-column: span 1; }

  .problem-result { flex-direction: column; align-items: flex-start; gap: 16px; }

  .offer-card { padding: 32px 24px; }

  .trust-stats { grid-template-columns: 1fr; }
  .trust-portrait img { width: 220px; height: 220px; }

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

  .footer-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "links"
      "copy";
  }
  .footer-links { flex-wrap: wrap; gap: 16px 24px; }

  .timeline { padding-left: 48px; }
  .timeline-line { left: 13px; }
  .timeline-circle { left: -48px; width: 30px; height: 30px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary { width: 100%; }
  .nav-cta { padding: 9px 14px; font-size: 0.85rem; }
}
