/* THE PURGE — Premium Landing (full rebuild) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --bg-card: #0d0d0d;
  --bg-card-hover: #111111;
  --red: #b00000;
  --red-bright: #e10600;
  --red-glow: rgba(225, 6, 0, 0.35);
  --white: #ffffff;
  --gray: #b5b5b5;
  --gray-muted: #707070;
  --border: rgba(255, 255, 255, 0.12);
  --border-red: rgba(225, 6, 0, 0.4);
  --container: 1200px;
  --header-h: 108px;
  --logo-bg: #000000;
  --hero-image: url('../images/hero.png');
  --ease: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-reveal: 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  --dur-short: 0.75s;
  --dur-base: 0.9s;
  --dur-long: 1.1s;
  --dur-line: 1.85s;
  --stagger: 0.13s;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* Global texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── UTILS ─── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(176, 0, 0, 0.14);
  border: 1px solid var(--border-red);
  padding: 8px 16px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  animation: eyebrowPulse 3s ease-in-out infinite;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center { text-align: center; }

.section-head .eyebrow { margin-bottom: 14px; }

.section-head.center .eyebrow {
  display: inline-block;
}

.h2 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  font-style: normal;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--ease-bounce), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background: linear-gradient(180deg, #e10600 0%, #b00000 100%);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(176, 0, 0, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(225, 6, 0, 0.5);
}

.btn-primary .sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  opacity: 0.9;
  margin-top: 2px;
}

.btn-outline {
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--border-red);
  background: rgba(176, 0, 0, 0.08);
}

.btn-col { flex-direction: column; }

.btn-lg { padding: 20px 36px; font-size: 13px; }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--logo-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1px 0 rgba(176, 0, 0, 0.2);
  animation: headerDrop 0.9s var(--ease) both;
}

.header .container {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

.logo-wrap {
  display: flex;
  align-items: center;
  background: var(--logo-bg);
  padding: 4px 10px;
  border-radius: var(--radius-md);
  animation: logoEnter 1.15s var(--ease-bounce) both, logoFloat 6s ease-in-out 1s infinite;
}

.logo-img {
  height: 84px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
  transition: transform 0.5s var(--ease-bounce), filter 0.4s ease;
}

.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(225, 6, 0, 0.45));
}

.logo-wrap-footer {
  display: inline-flex;
  margin-bottom: 20px;
  animation: logoEnter 1.15s var(--ease-bounce) both;
}

.logo-img-footer {
  height: 80px;
  max-width: 260px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--ease);
  position: relative;
}

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

.header-btn { padding: 12px 22px; font-size: 10px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: transform var(--ease), opacity var(--ease);
}

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

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--logo-bg);
  padding: 24px;
  flex-direction: column;
  z-index: 999;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease);
  pointer-events: none;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-nav.open a {
  animation: navSlideIn 0.65s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 0.09s + 0.08s);
}

.mobile-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav .btn-primary { margin-top: 24px; width: 100%; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
  background: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  filter: brightness(0.78) contrast(1.06) saturate(0.95);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.75) 18%,
      rgba(5, 5, 5, 0.35) 32%,
      rgba(5, 5, 5, 0.08) 48%,
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0.3) 0%,
      transparent 45%,
      rgba(5, 5, 5, 0.4) 100%
    );
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* Subtle red accent light — overlay only, no boxes */
.hero-accent {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 78% 38%, rgba(225, 6, 0, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 35% 25% at 92% 62%, rgba(176, 0, 0, 0.1) 0%, transparent 55%);
  transition: transform 0.15s ease-out;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-1 {
  width: 280px;
  height: 280px;
  top: 15%;
  right: 10%;
  background: rgba(225, 6, 0, 0.18);
  animation-duration: 14s;
}

.orb-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  right: 25%;
  background: rgba(176, 0, 0, 0.12);
  animation-duration: 10s;
  animation-delay: -3s;
}

.orb-3 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 5%;
  background: rgba(225, 6, 0, 0.1);
  animation-duration: 8s;
  animation-delay: -5s;
}

.hero-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(225, 6, 0, 0.04) 48%,
    transparent 52%
  );
  background-size: 100% 220%;
  animation: scanLine 10s linear infinite;
  mix-blend-mode: screen;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

.hero:hover .hero-glow,
.hero.is-active .hero-glow {
  opacity: 1;
}

.line-reveal {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.line-reveal span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.15s var(--ease-reveal);
}

.hero-content.is-loaded .line-reveal span {
  transform: translateY(0);
}

.hero-content.is-loaded .line-reveal:nth-child(2) span {
  transition-delay: 0.16s;
}

.hero-title {
  animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 15px) scale(1.05); }
  66% { transform: translate(15px, -10px) scale(0.95); }
}

@keyframes scanLine {
  0% { background-position: 0 -100%; }
  100% { background-position: 0 200%; }
}

@keyframes titleGlow {
  from { text-shadow: 0 0 0 transparent; }
  to { text-shadow: 0 0 40px rgba(225, 6, 0, 0.15); }
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hero-shell .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 560px;
  padding: 56px 0 48px;
  text-align: left;
}

.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin-bottom: 22px;
  text-transform: none;
  color: var(--white);
}

.hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-meta {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-meta-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  min-height: 88px;
  position: relative;
  transition: background 0.35s ease;
  opacity: 0;
  transform: translateY(12px);
}

.hero-stat:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat:hover {
  background: rgba(176, 0, 0, 0.06);
}

.hero-stat-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(176, 0, 0, 0.12);
  border: 1px solid rgba(225, 6, 0, 0.25);
  color: var(--red-bright);
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.3s ease;
}

.hero-stat-icon svg {
  width: 18px;
  height: 18px;
}

.hero-stat:hover .hero-stat-icon {
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(225, 6, 0, 0.2);
}

.hero-stat-body {
  min-width: 0;
}

.hero-stat-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 5px;
  line-height: 1.2;
}

.hero-stat-value {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.hero-stat-value-accent {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-bright);
  transition: color 0.3s ease;
}

.hero-stat-value-accent:hover {
  color: var(--white);
}

/* ─── TRUST STRIP ─── */
.trust {
  background: var(--bg-elevated);
  border-top: none;
  border-bottom: 1px solid var(--border);
}

.trust .container {
  padding-left: 0;
  padding-right: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--ease), transform 0.4s ease;
}

.trust-item:last-child { border-right: none; }

.trust-item:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-3px);
}

.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(176, 0, 0, 0.25), rgba(176, 0, 0, 0.08));
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  color: var(--red-bright);
  transition: transform 0.5s var(--ease-bounce), box-shadow 0.4s ease;
}

.trust-icon svg { width: 20px; height: 20px; }

.trust-item h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── SERVICES ─── */
.services {
  padding: 72px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% -10%, rgba(176, 0, 0, 0.07), transparent 60%);
  animation: sectionPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

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

.card {
  background: linear-gradient(160deg, #101010 0%, #080808 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.45s var(--ease-bounce), border-color var(--ease), box-shadow var(--ease);
  position: relative;
  overflow: hidden;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.06) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.card:hover::after {
  transform: translateX(120%);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-red);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(176, 0, 0, 0.1);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(176, 0, 0, 0.35);
  transition: transform 0.5s var(--ease-bounce), box-shadow 0.4s ease;
}

.card:hover .card-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 28px rgba(176, 0, 0, 0.5);
}

.card-icon svg { width: 22px; height: 22px; color: white; }

.card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-bright);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease), transform 0.35s var(--ease-bounce), color var(--ease);
}

.card:hover .card-link {
  gap: 12px;
  transform: translateX(4px);
}

/* ─── PROCESS ─── */
.process {
  padding: 72px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 600px;
  height: 300px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(176, 0, 0, 0.06), transparent 70%);
  animation: sectionPulse 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  padding-top: 8px;
}

.process-line {
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  z-index: 0;
}

.process-line-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-line) cubic-bezier(0.22, 1, 0.36, 1);
}

.process-row.is-visible .process-line-fill {
  transform: scaleX(1);
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
}

.step-marker {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--red-bright);
  background: var(--bg-elevated);
  border: 2px solid var(--border-red);
  box-shadow: 0 0 20px rgba(176, 0, 0, 0.15);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.step-body {
  padding: 0 8px;
  transition: transform 0.4s var(--ease);
}

.step-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0;
}

.step-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
  opacity: 0;
}

.step:hover .step-num {
  transform: scale(1.06);
  border-color: var(--red-bright);
  box-shadow: 0 0 28px rgba(225, 6, 0, 0.35);
}

.step:hover .step-body {
  transform: translateY(-3px);
}

.process-row.is-visible .step {
  animation: stepSlideIn var(--dur-short) var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.18s + 0.45s);
}

.process-row.is-visible .step-num {
  animation: stepPop 0.65s var(--ease-bounce) forwards;
  animation-delay: calc(var(--i, 0) * 0.18s + 0.58s);
}

.process-row.is-visible .step-body h3 {
  animation: stepTextIn 0.58s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.18s + 0.75s);
}

.process-row.is-visible .step-body p {
  animation: stepTextIn 0.58s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.18s + 0.92s);
}

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

@keyframes stepPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ─── ABOUT ─── */
.about {
  padding: 72px 0;
  background: var(--bg);
}

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

.about-image {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  transition: transform 0.5s var(--ease-bounce), box-shadow 0.5s ease;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.05);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.85) 0%, transparent 45%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(225, 6, 0, 0.2), transparent 50%);
}

.about-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.about-tag strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.about-tag span {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
  display: block;
}

.about-content .h2 { margin-bottom: 20px; }

.about-text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ─── CERTIFICATE SECTION ─── */
.cert {
  padding: 72px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cert-content .h2 {
  margin-bottom: 20px;
}

.cert-lead {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.cert-lead strong {
  color: var(--white);
  font-weight: 700;
}

.cert-list {
  list-style: none;
}

.cert-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
}

.cert-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 10px var(--red-glow);
}

.cert-visual {
  text-align: center;
}

.cert-frame {
  position: relative;
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 0 32px rgba(176, 0, 0, 0.08);
  transition: transform 0.45s var(--ease-bounce), box-shadow 0.4s ease;
  max-width: 340px;
  margin: 0 auto;
}

.cert-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.14) 50%, transparent 62%);
  transform: translateX(-120%);
}

.cert-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.cert-visual:hover .cert-frame {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5), 0 0 40px rgba(176, 0, 0, 0.12);
}

.cert-caption {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-muted);
}

/* ─── ABOUT & CERT REVEALS ─── */
.about .about-image {
  opacity: 0;
  transform: translateX(-48px) scale(0.94);
}

.about .about-content .eyebrow,
.about .about-content .h2,
.about .about-text,
.about .trust-point {
  opacity: 0;
}

.about .about-content .eyebrow,
.about .about-content .h2,
.about .about-text {
  transform: translateY(24px);
}

.about .trust-point {
  transform: translateX(-20px);
}

.about .trust-point-icon {
  opacity: 0;
}

.about .about-tag {
  opacity: 0;
  transform: translateY(16px);
}

.about.is-visible .about-image {
  animation: aboutImageIn var(--dur-long) var(--ease-bounce) forwards;
}

.about.is-visible .about-content .eyebrow {
  animation: aboutItemIn var(--dur-short) var(--ease) forwards;
  animation-delay: 0.2s;
}

.about.is-visible .about-content .h2 {
  animation: aboutItemIn 0.85s var(--ease) forwards;
  animation-delay: 0.38s;
}

.about.is-visible .about-text {
  animation: aboutItemIn var(--dur-short) var(--ease) forwards;
  animation-delay: 0.56s;
}

.about.is-visible .trust-point {
  animation: aboutTrustIn 0.7s var(--ease-bounce) forwards;
  animation-delay: calc(var(--i, 0) * 0.15s + 0.72s);
}

.about.is-visible .trust-point-icon {
  animation: aboutIconPop 0.65s var(--ease-bounce) forwards;
  animation-delay: calc(var(--i, 0) * 0.15s + 0.85s);
}

.about.is-visible .about-tag {
  animation: aboutTagIn var(--dur-short) var(--ease-bounce) forwards;
  animation-delay: 0.88s;
}

.cert .cert-content .eyebrow,
.cert .cert-content .h2,
.cert .cert-lead {
  opacity: 0;
  transform: translateX(-32px);
}

.cert .cert-list li {
  opacity: 0;
  transform: translateX(-20px);
}

.cert .cert-visual {
  opacity: 0;
  transform: translateX(48px) scale(0.92);
}

.cert .cert-caption {
  opacity: 0;
  transform: translateY(12px);
}

.cert.is-visible .cert-content .eyebrow {
  animation: certItemIn 0.7s var(--ease) forwards;
  animation-delay: 0.13s;
}

.cert.is-visible .cert-content .h2 {
  animation: certItemIn var(--dur-short) var(--ease) forwards;
  animation-delay: 0.3s;
}

.cert.is-visible .cert-lead {
  animation: certItemIn var(--dur-short) var(--ease) forwards;
  animation-delay: 0.48s;
}

.cert.is-visible .cert-list li {
  animation: certListIn 0.65s var(--ease-bounce) forwards;
  animation-delay: calc(var(--i, 0) * 0.13s + 0.65s);
}

.cert.is-visible .cert-list li::before {
  animation: dotPulse 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.25s + 1s);
}

.cert.is-visible .cert-visual {
  animation: certVisualIn var(--dur-long) var(--ease-bounce) forwards;
  animation-delay: 0.26s;
}

.cert.is-visible .cert-caption {
  animation: certItemIn 0.65s var(--ease) forwards;
  animation-delay: 1.12s;
}

.cert.is-visible .cert-shine {
  animation: certShine 1.75s ease forwards 1.08s;
}

@keyframes aboutImageIn {
  from { opacity: 0; transform: translateX(-48px) scale(0.94); }
  to { opacity: 1; transform: none; }
}

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

@keyframes aboutTrustIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: none; }
}

@keyframes aboutTagIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes aboutIconPop {
  from { transform: scale(0.55) rotate(-10deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes certItemIn {
  from { opacity: 0; transform: translateX(-32px); }
  to { opacity: 1; transform: none; }
}

@keyframes certListIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: none; }
}

@keyframes certVisualIn {
  from { opacity: 0; transform: translateX(48px) scale(0.92); }
  to { opacity: 1; transform: none; }
}

@keyframes certShine {
  to { transform: translateX(120%); }
}

.section-anim.is-visible .cert-content .h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  animation: lineExpand 1s var(--ease-bounce) both;
  animation-delay: 0.56s;
}

.trust-points { border-top: 1px solid var(--border); }

.trust-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.trust-point-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-red);
  color: var(--red-bright);
  background: rgba(176, 0, 0, 0.1);
  transition: transform 0.5s var(--ease-bounce), background 0.3s ease;
}

.trust-point:hover .trust-point-icon {
  transform: scale(1.12) rotate(8deg);
  background: rgba(176, 0, 0, 0.2);
}

.trust-point-icon svg { width: 18px; height: 18px; }

.trust-point h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.trust-point p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── CTA ─── */
.cta {
  padding: 64px 0;
  background: var(--bg-elevated);
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  background:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 120% 80% at 50% 120%, rgba(176, 0, 0, 0.65) 0%, transparent 55%),
    linear-gradient(135deg, #160000 0%, #0c0000 40%, #080808 100%);
  border: 1px solid var(--border-red);
  box-shadow: 0 0 60px rgba(176, 0, 0, 0.15);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.cta-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-16px);
}

.cta-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-glow);
  transition: transform 0.3s var(--ease-bounce);
}

.cta-box.is-visible .cta-list li {
  animation: listSlide 0.7s var(--ease-bounce) both;
  animation-delay: calc(var(--i, 0) * 0.15s + 0.45s);
}

.cta-box.is-visible .cta-list li::before {
  animation: dotPulse 2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.3s);
}

/* ─── FOOTER ─── */
.footer {
  padding: 64px 0 28px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-wrap-footer { margin-bottom: 20px; }

.footer-quote {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-quote em {
  font-style: normal;
  color: var(--red-bright);
  font-weight: 600;
}

.footer-contact p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 6px;
}

.footer-contact a:hover { color: var(--red-bright); }

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
  transition: color var(--ease), transform 0.35s var(--ease-bounce);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--gray-muted);
  text-align: center;
}

/* ─── ANIMATIONS ─── */
@keyframes headerDrop {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes logoEnter {
  from { transform: scale(0.82) translateY(-16px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes eyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(225, 6, 0, 0); border-color: var(--border-red); }
  50% { box-shadow: 0 0 22px rgba(225, 6, 0, 0.28); border-color: var(--red-bright); }
}

@keyframes navSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: none; }
}

@keyframes metaPop {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes cardIconSpin {
  from { transform: scale(0.5) rotate(-20deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes shimmerLine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes sectionPulse {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.05); }
}

@keyframes listSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: none; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px var(--red-glow); }
  50% { transform: scale(1.4); box-shadow: 0 0 16px var(--red-glow); }
}

@keyframes lineExpand {
  from { width: 0; opacity: 0; }
  to { width: 64px; opacity: 1; }
}

@keyframes stepTextIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes navFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@keyframes rippleOut {
  from { transform: scale(0); opacity: 0.5; }
  to { transform: scale(4); opacity: 0; }
}

@keyframes cardReveal {
  from { opacity: 0; transform: translateY(36px) scale(0.94) rotateX(8deg); }
  to { opacity: 1; transform: none; }
}

@keyframes trustPointIn {
  from { opacity: 0; transform: translateX(-28px); }
  to { opacity: 1; transform: none; }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  background: linear-gradient(90deg, var(--red), var(--red-bright), var(--red));
  background-size: 200% 100%;
  animation: shimmerLine 3.2s linear infinite;
  z-index: 1001;
  box-shadow: 0 0 16px var(--red-glow);
  transition: width 0.08s linear;
}

.header {
  transition: background var(--ease), box-shadow var(--ease), transform 0.4s ease;
}

.header.is-scrolled {
  background: var(--logo-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(176, 0, 0, 0.3);
}

.nav a {
  opacity: 0;
  animation: navFadeIn 0.7s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 0.1s + 0.58s);
}

.header-btn {
  animation: btnPulse 4s ease-in-out 1.5s infinite, navFadeIn 0.7s var(--ease) 1.08s forwards;
  opacity: 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: var(--radius-full);
  background: var(--red-bright);
  transition: width 0.35s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.75s ease;
}

.btn-primary:hover::before {
  transform: translateX(120%);
}

.btn-outline {
  transition: transform var(--ease-bounce), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(176, 0, 0, 0.45); }
  50% { box-shadow: 0 4px 36px rgba(225, 6, 0, 0.65); }
}

.hero-actions .btn-primary {
  animation: btnPulse 3s ease-in-out infinite;
}

.anim-item {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(4px);
  transition:
    opacity var(--ease-reveal),
    transform var(--ease-reveal),
    filter var(--ease-reveal);
  transition-delay: calc(var(--i, 0) * var(--stagger));
}

.anim-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-content.is-loaded .hero-stat {
  animation: metaPop var(--dur-short) var(--ease-bounce) both;
  animation-delay: calc(var(--i, 0) * var(--stagger) + 0.65s);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 0.11s);
}

.fade-up.show {
  opacity: 1;
  transform: none;
}

.card.fade-up {
  transition: none;
}

.card.fade-up.show {
  animation: cardReveal var(--dur-base) var(--ease-bounce) both;
  animation-delay: calc(var(--i, 0) * 0.11s);
}

.trust-point.fade-up {
  transform: translateX(-24px);
}

.trust-point.fade-up.show {
  animation: trustPointIn 0.85s var(--ease-bounce) both;
  animation-delay: calc(var(--i, 0) * var(--stagger) + 0.26s);
}

.section-anim .section-head {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--dur-long) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--dur-long) cubic-bezier(0.22, 1, 0.36, 1);
}

.section-anim.is-visible .section-head {
  opacity: 1;
  transform: none;
}

.section-anim.is-visible .section-head.center .h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  animation: lineExpand 1s var(--ease-bounce) both;
  animation-delay: 0.32s;
}

.section-anim.is-visible .about-content .h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  animation: lineExpand 1s var(--ease-bounce) both;
  animation-delay: 0.62s;
}

.trust-item {
  transition: background 0.4s ease, transform 0.45s var(--ease-bounce);
}

.trust-item:hover {
  transform: translateY(-3px);
  background: rgba(176, 0, 0, 0.04);
}

.trust-icon {
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease, border-color var(--ease);
}

.trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.28);
  border-color: var(--red-bright);
}

.card.is-visible .card-icon {
  animation: cardIconSpin 0.9s var(--ease-bounce) both;
  animation-delay: calc(var(--i, 0) * 0.11s + 0.26s);
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rippleOut 0.6s ease-out forwards;
  pointer-events: none;
}

.about-image {
  transition: transform 0.5s var(--ease-bounce), box-shadow 0.5s ease;
}

.about-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.about-image img {
  transition: transform 8s ease;
}

.about-image:hover img {
  transform: scale(1.06);
}

.about-tag {
  transition: transform 0.4s var(--ease-bounce), border-color 0.3s ease;
}

.about-image:hover .about-tag {
  transform: translateY(-4px);
  border-color: var(--border-red);
}

.cta-box {
  animation: ctaGlow 4s ease-in-out infinite alternate;
  transition: transform 0.5s var(--ease-bounce);
}

.cta-box.is-visible {
  animation: ctaGlow 4s ease-in-out infinite alternate, ctaRise var(--dur-long) var(--ease-bounce) both;
}

@keyframes ctaRise {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@keyframes ctaGlow {
  from { box-shadow: 0 0 40px rgba(176, 0, 0, 0.12); }
  to { box-shadow: 0 0 70px rgba(225, 6, 0, 0.22); }
}

.hero-accent {
  animation: accentPulse 6s ease-in-out infinite alternate;
}

@keyframes accentPulse {
  from { opacity: 0.85; }
  to { opacity: 1; }
}

.footer-brand,
.footer-col {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * var(--stagger));
}

.footer.is-visible .footer-brand,
.footer.is-visible .footer-col {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .anim-item, .fade-up, .section-anim .section-head,
  .footer-brand, .footer-col, .nav a, .header-btn {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .cta-list li {
    opacity: 1;
    transform: none;
  }

  .hero-bg-img { animation: none; }

  .hero-content.is-loaded .hero-stat {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .process-line-fill { transform: scaleX(1); }
  .process-row.is-visible .step {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .process-row.is-visible .step-num,
  .process-row.is-visible .step-body h3,
  .process-row.is-visible .step-body p {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .about.is-visible .about-image,
  .about.is-visible .about-content .eyebrow,
  .about.is-visible .about-content .h2,
  .about.is-visible .about-text,
  .about.is-visible .trust-point,
  .about.is-visible .about-tag,
  .about.is-visible .trust-point-icon,
  .cert.is-visible .cert-content .eyebrow,
  .cert.is-visible .cert-content .h2,
  .cert.is-visible .cert-lead,
  .cert.is-visible .cert-list li,
  .cert.is-visible .cert-visual,
  .cert.is-visible .cert-caption {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .about.is-visible .about-image img {
    animation: none;
  }

  .cert.is-visible .cert-shine {
    display: none;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }

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

  .cert-frame {
    max-width: 300px;
  }
}

@media (max-width: 900px) {
  .nav, .header-btn { display: none; }
  .burger { display: flex; }
  .header .container { grid-template-columns: 1fr auto; }

  .hero { min-height: 640px; }
  .hero-content { max-width: 100%; padding: 40px 0 32px; }

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

  .hero-stat {
    min-height: auto;
    padding: 16px 18px;
  }

  .hero-stat:not(:first-child)::before {
    left: 18px;
    right: 18px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--border); }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-line { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 360px; aspect-ratio: 16/10; }

  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-list { display: inline-block; text-align: left; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-box { padding: 40px 24px; }
}
