/* ============================================================
   ROOT VARIABLES  (unchanged palette — only structural tokens added)
   ============================================================ */
:root {
  --color-ink: #0A0A0F;
  --color-white: #FFFFFF;
  --color-red: #E14B3A;
  --color-red-dark: #C73A2A;
  --color-red-light: #F05A4A;
  --color-red-tint: #F3E1DE;
  --color-red-tint-2: #EECEC8;
  --color-paper: #F7F6F4;
  --color-charcoal: #3E3F44;
  --color-line: #E6E5E2;
  --color-gray: #8A8B92;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-card: 0 20px 40px -16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 40px 60px -24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 60px 80px -32px rgba(0, 0, 0, 0.16);
  --container-pad: clamp(20px, 4vw, 24px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

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

body {
  font-family: var(--font-sans);
  background: var(--color-white);
  color: var(--color-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

a {
  text-decoration: none;
  color: inherit;
}

:focus-visible {
  outline: 2.5px solid var(--color-red);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  box-sizing: border-box;
}

/* ============================================================
   TEXT GRADIENT
   ============================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-light) 50%, #F7A072 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   SECTION TAG
   ============================================================ */
.section-tag {
  margin-top:54px !important;
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
  padding: 4px 0;
  position: relative;
}

.section-tag::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-red), var(--color-red-light));
  border-radius: 2px;
}

.section-tag-light {
  color: var(--color-red-tint-2);
}

.section-tag-light::after {
  background: linear-gradient(90deg, var(--color-red-light), #F7A072);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--font-sans);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-red) 0%, var(--color-red-dark) 100%);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-red-light) 0%, var(--color-red) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 32px -8px rgba(225, 75, 58, 0.35);
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* Outline button for use on light backgrounds (new hero, etc.) */
.btn-outline-dark {
  background: transparent;
  color: var(--color-ink);
  border-color: rgba(10, 10, 15, 0.16);
}

.btn-outline-dark:hover {
  border-color: var(--color-ink);
  background: rgba(10, 10, 15, 0.045);
  transform: translateY(-2px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-ink);
  padding: 10px 0;
  border: none;
  background: none;
  transition: all 0.3s var(--ease);
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red), var(--color-red-light));
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}

.btn-link:hover::after {
  width: 100%;
}

.btn-link:hover {
  color: var(--color-red);
  gap: 12px;
}

.btn-link .arrow-icon {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.btn-link:hover .arrow-icon {
  transform: translateX(4px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 15px;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--color-white);
}

.btn-outline-light:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
  .btn {
    padding: 13px 24px;
    font-size: 13.5px;
  }
  .btn-large {
    padding: 14px 28px;
    font-size: 14px;
  }
}

/* ============================================================
   HERO — dark, modern hero, tuned lighter than a flat black scrim
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 14vw, 120px) 0 0;
  background: var(--color-ink);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 25s ease-in-out infinite alternate;
  opacity: 0.62;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.02) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-1%, -1%);
  }
}

/* Dark scrim, eased back from a flat black so the photo + color still breathe */
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0.32) 0%, rgba(10, 10, 15, 0.55) 45%, rgba(10, 10, 15, 0.76) 100%),
    radial-gradient(60rem 40rem at 18% 15%, rgba(225, 75, 58, 0.32) 0%, transparent 55%),
    radial-gradient(46rem 34rem at 88% 82%, rgba(247, 160, 114, 0.22) 0%, transparent 60%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(80% 60% at 50% 25%, #000 0%, transparent 78%);
  opacity: 0.5;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
  animation: orbFloat 8s ease-in-out infinite;
  will-change: transform;
}

.glow-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--color-red);
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--color-red-light);
  bottom: -100px;
  left: -100px;
  animation-delay: 3s;
}

.glow-orb-3 {
  width: 300px;
  height: 300px;
  background: #F7A072;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
  opacity: 0.1;
}

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

.particles-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.pulse-lines {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
}

.pl {
  fill: none;
  stroke: var(--color-red);
  stroke-width: 1.2;
  opacity: 0.14;
  stroke-dasharray: 10 12;
}

.p1 { animation: lineDash 28s linear infinite; }
.p2 { animation: lineDash 36s linear infinite reverse; opacity: 0.08; }
.p3 { animation: lineDash 32s linear infinite; opacity: 0.1; }
.p4 { animation: lineDash 40s linear infinite reverse; opacity: 0.06; }

@keyframes lineDash {
  to { stroke-dashoffset: -500; }
}

.hero-inner {
  position: relative;
  z-index: 3;
  padding: 12px 0 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: clamp(24px, 3.4vw, 36px);
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-family: var(--font-mono);
  color: #D1D3D8;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.status-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  background-size: 200% 100%;
  animation: shimmer 4s ease-in-out infinite;
}

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

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2FB86B;
  box-shadow: 0 0 0 3px rgba(47, 184, 107, 0.18);
  animation: dotPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(47, 184, 107, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(47, 184, 107, 0.08); }
}

.status-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.status-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: pulseRing 2.5s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0; }
}

/* --- Slider: transform-based track, works at any viewport --- */
.hero-track {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 40px 100px -50px rgba(0, 0, 0, 0.7);
  padding: clamp(28px, 4.5vw, 52px) 0;
}

.hero-track:focus-within .hero-slides,
.hero-track[data-paused="true"] .hero-slides {
  transition-duration: 0.5s;
}

.hero-slides {
  display: flex;
  width: 100%;
  transition: transform 0.7s var(--ease);
  will-change: transform;
  touch-action: pan-y;
}

.slide {
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4px clamp(2px, 2vw, 24px) 4px;
  opacity: 0.35;
  transition: opacity 0.6s var(--ease);
}

.slide.is-active {
  opacity: 1;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-red-tint-2);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.slide-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 8px 1px rgba(225, 75, 58, 0.7);
  flex-shrink: 0;
}

.slide-copy h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  margin: 10px 0 20px;
  color: var(--color-white);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-wrap: balance;
}

.slide-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: #C7C9D1;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.slide-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.metric-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(225, 75, 58, 0.4);
}

.metric-value {
  font-family: var(--font-mono);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--color-white);
  white-space: nowrap;
}

.metric-label {
  font-size: 12px;
  color: #9799A1;
  letter-spacing: 0.02em;
}

.metric-divider {
  display: none;
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px 0 8px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.hero-arrow:hover {
  border-color: var(--color-red);
  color: var(--color-red);
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 30px rgba(225, 75, 58, 0.16);
}

.hero-arrow:active {
  transform: scale(0.96);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease);
}

.hero-dots .dot.is-active {
  background: var(--color-red);
  width: 28px;
  border-radius: 4px;
}

.hero-dots .dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-dots .dot.is-active:hover {
  background: var(--color-red);
}

/* Trust Strip */
.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 18px 0;
  backdrop-filter: blur(8px);
  margin-top: clamp(28px, 5vw, 44px);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B8D96;
  white-space: nowrap;
  font-weight: 500;
}

.trust-list {
  display: flex;
  gap: clamp(16px, 2.6vw, 30px);
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(12px, 1vw, 13.5px);
  color: #C7C9D1;
  font-family: var(--font-mono);
}

.trust-list li {
  position: relative;
  transition: color 0.3s var(--ease);
  cursor: default;
}

.trust-list li:hover {
  color: var(--color-white);
}

.trust-list li::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-red);
  transition: width 0.3s var(--ease);
}

.trust-list li:hover::after {
  width: 100%;
}

/* ============================================================
   RESPONSIVE HERO
   ============================================================ */
@media (max-width: 1024px) {
  .hero { min-height: 88vh; }
}

@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding-top: 88px;
  }
  .slide { padding-top: 0; }
  .hero-track {
    padding: clamp(22px, 6vw, 32px) 0;
    border-radius: 20px;
  }
  .slide-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 420px;
  }
  .metric-item {
    padding: 14px 14px;
  }
  .metric-item:last-child {
    grid-column: 1 / -1;
  }
  .glow-orb-1, .glow-orb-2, .glow-orb-3 {
    width: 220px;
    height: 220px;
    filter: blur(70px);
  }
  .status-chip {
    font-size: 11.5px;
    padding: 9px 18px;
  }
  .hero-controls { padding-top: 24px; }
}

@media (max-width: 480px) {
  .hero { padding-top: 76px; }
  .slide-copy h1 { font-size: 2.1rem; }
  .slide-desc { margin-bottom: 26px; }
  .slide-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
  }
  .slide-actions .btn {
    width: 100%;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
  }
  .slide-metrics {
    gap: 8px;
    max-width: 340px;
  }
  .metric-item {
    padding: 12px 10px;
  }
  .metric-value { font-size: 16px; }
  .metric-label { font-size: 10.5px; }
  .status-text { font-size: 11px; }
  .trust-strip-inner { gap: 16px; }
}

@media (max-width: 360px) {
  .slide-copy h1 { font-size: 1.85rem; }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: clamp(72px, 10vw, 100px) 0 clamp(80px, 11vw, 120px);
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 60px);
  width: 100%;
}

.about-visual {
  position: relative;
  min-width: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-visual:hover .about-image-wrapper img {
  transform: scale(1.03);
}

.about-image-border {
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-light), #F7A072) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
}

.about-visual:hover .about-image-border {
  opacity: 1;
}

.about-float-card:empty {
  display: none;
}

.about-content {
  min-width: 0;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 12px 0 20px;
  line-height: 1.15;
}

.about-content p {
  color: var(--color-charcoal);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--color-charcoal);
  transition: transform 0.3s var(--ease);
}

.feature-list li:hover {
  transform: translateX(4px);
}

.feature-check {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-red-tint);
  position: relative;
  margin-top: 2px;
  transition: background 0.3s var(--ease);
}

.feature-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--color-red);
  border-bottom: 2px solid var(--color-red);
  transition: border-color 0.3s var(--ease);
}

.feature-list li:hover .feature-check {
  background: var(--color-red);
}

.feature-list li:hover .feature-check::after {
  border-color: var(--color-white);
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 44px;
  }
  .about-content p, .feature-list {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-list li {
    text-align: left;
    justify-content: flex-start;
  }
  .about-actions { justify-content: center; }
  .about-image-wrapper img { height: 360px; }
}

@media (max-width: 620px) {
  .about-grid { gap: 36px; }
  .about-content h2 { font-size: 2rem; }
  .about-image-wrapper img { height: 300px; }
}

@media (max-width: 480px) {
  .about-image-wrapper img { height: 240px; }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 0 0 clamp(80px, 11vw, 120px);
  background: var(--color-paper);
}

.services-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.services-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-white);
  border: 1px solid rgba(230, 229, 226, 0.85);
  border-radius: calc(var(--radius) + 4px);
  padding: 26px 24px 22px;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  min-width: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-red-light), #F7A072);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.service-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 75, 58, 0.02), rgba(247, 160, 114, 0.02));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  border-radius: var(--radius);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-red-tint);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px 0;
  transition: all 0.28s var(--ease);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 8px 24px -8px rgba(225, 75, 58, 0.3);
}

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 14px;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card-wide { grid-column: span 2; }
}

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }
  .service-card { padding: 22px 20px 20px; min-height: auto; }
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  padding: clamp(56px, 8vw, 60px) 0 clamp(80px, 11vw, 120px);
  background: var(--color-white);
}

.why-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.why-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 12px; }

.why-subtitle {
  font-size: 17px;
  color: var(--color-charcoal);
  max-width: 480px;
  margin: 16px auto 0;
  opacity: 0.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  min-width: 0;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-red-light), #F7A072);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

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

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}

.why-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-red-tint);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s var(--ease);
}

.why-card:hover .why-card-icon {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
  transform: scale(1.05);
  box-shadow: 0 8px 24px -8px rgba(225, 75, 58, 0.25);
}

.why-card-icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--color-charcoal); line-height: 1.7; }

.why-card-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red), var(--color-red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.why-card:hover .why-card-line { transform: scaleX(1); }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 24px; }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding: 0 0 clamp(80px, 11vw, 120px);
  background: var(--color-paper);
}

.process-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.process-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 12px; }

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.timeline-line {
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red), var(--color-red-light), #F7A072);
  opacity: 0.2;
}

.process-step {
  position: relative;
  transition: transform 0.3s var(--ease);
  min-width: 0;
}

.process-step:hover { transform: translateY(-4px); }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease);
  box-shadow: 0 8px 24px -8px rgba(225, 75, 58, 0.3);
}

.process-step:hover .step-number { transform: scale(1.08); }
.process-step h3 { font-size: 17px; margin-bottom: 10px; }
.process-step p { font-size: 14.5px; color: var(--color-charcoal); line-height: 1.7; max-width: 260px; }

@media (max-width: 860px) {
  .process-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .timeline-line { display: none; }
  .process-step p { max-width: 100%; }
}

@media (max-width: 560px) {
  .process-timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--color-ink);
  padding: clamp(56px, 8vw, 80px) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 75, 58, 0.07) 0%, transparent 70%);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 75, 58, 0.05) 0%, transparent 70%);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.stat-block { text-align: center; transition: transform 0.3s var(--ease); min-width: 0; }
.stat-block:hover { transform: scale(1.05); }

.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
}

.stat-number::after {
  content: '+';
  background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9799A1;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

@media (max-width: 700px) {
  .stats-grid { gap: 32px; row-gap: 40px; justify-content: center; }
  .stat-block { width: min(150px, 42%); }
  .stat-divider { display: none; }
}

@media (max-width: 420px) {
  .stat-block { width: min(140px, 45%); }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
  padding: clamp(80px, 11vw, 120px) 0;
  background: var(--color-white);
}

.testimonials-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.testimonials-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 12px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 21, 29, 0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px 28px;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(10px);
  min-width: 0;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(15, 18, 28, 0.12);
  border-color: rgba(18, 21, 29, 0.1);
}

.testimonial-quote {
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.8;
  display: block;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 15.2px;
  line-height: 1.85;
  color: var(--color-ink);
  margin: 0 0 22px;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(225, 75, 58, 0.18);
  display: grid;
  place-items: center;
  background: var(--color-red-tint);
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.testimonial-card footer strong { display: block; font-size: 14px; }
.testimonial-card footer span { display: block; font-size: 12px; color: var(--color-charcoal); opacity: 0.7; }

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

@media (max-width: 620px) {
  .testimonial-card { padding: 26px 22px; }
  .testimonial-quote { font-size: 42px; }
}

/* ============================================================
   TECH SECTION
   ============================================================ */
.tech-section { padding: 0 0 clamp(80px, 11vw, 120px); background: var(--color-white); }

.tech-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.tech-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 12px; }

.tech-marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tech-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: techScroll 30s linear infinite;
}

@keyframes techScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tech-track span {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-ink);
  opacity: 0.6;
  white-space: nowrap;
  padding: 8px 22px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  cursor: default;
}

.tech-track span:hover {
  opacity: 1;
  border-color: var(--color-red);
  background: var(--color-red-tint);
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .tech-track { animation: none; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 0 0 clamp(80px, 11vw, 120px); background: var(--color-paper); }

.faq-container {
  margin-top: 34px;
  display: grid;
  align-items: start;
  justify-items: stretch;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  width: 100%;
}

.faq-header h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-top: 12px; }
.faq-header p { font-size: 15px; color: var(--color-charcoal); margin-top: 16px; }

.faq-header p a {
  color: var(--color-red);
  font-weight: 600;
  position: relative;
}

.faq-header p a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--color-red);
  transition: width 0.3s var(--ease);
}

.faq-header p a:hover::after { width: 100%; }

.faq-header {
  position: sticky;
  top: 100px;
  max-width: 460px;
  width: 100%;
  min-width: 0;
}

.faq-list {
  margin-top:54px !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.faq-item {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 20px 24px;
  background: var(--color-white);
  transition: all 0.3s var(--ease);
}

.faq-item:hover { border-color: var(--color-red-tint-2); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s var(--ease);
}

.faq-item summary:hover { color: var(--color-red); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex: none;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--color-red);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--color-charcoal);
}

@media (max-width: 900px) {
  .faq-container { grid-template-columns: 1fr; gap: 32px; }
  .faq-header { position: static; max-width: 100%; text-align: center; }
}

@media (max-width: 620px) {
  .faq-header h2 { font-size: 1.9rem; }
  .faq-item { padding: 18px 18px; }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { position: relative; padding: clamp(80px, 11vw, 120px) 0; overflow: hidden; }

.cta-background { position: absolute; inset: 0; z-index: 0; }
.cta-background img { width: 100%; height: 100%; object-fit: cover; }

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 15, 0.82) 0%, rgba(10, 10, 15, 0.94) 100%),
    radial-gradient(40rem 24rem at 85% 20%, rgba(225, 75, 58, 0.22) 0%, transparent 60%);
}

.cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-content { max-width: 560px; }
.cta-content h2 { color: var(--color-white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 12px 0 14px; line-height: 1.15; }
.cta-content p { color: #B8BAC2; font-size: 16px; line-height: 1.7; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 760px) {
  .cta-container { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; width: 100%; }
  .cta-actions .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .cta-actions { flex-direction: column; }
}

/* ============================================================
   CURRENT HOME.BLADE.PHP COMPATIBILITY
   The Blade template uses newer semantic class names while much
   of this stylesheet still uses the earlier component names.
   These rules complete the shared styling without hiding sections.
   ============================================================ */
.eyebrow {
    margin-top:54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-red), var(--color-red-light));
}

.eyebrow-light {
  color: var(--color-red-tint-2);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.section-head h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-subtitle {
  margin: 16px auto 0;
  max-width: 580px;
  color: var(--color-charcoal);
  font-size: 16px;
  line-height: 1.75;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-glow:hover {
  box-shadow: 0 16px 34px -10px rgba(225, 75, 58, 0.42);
}

/* About visual used by the current Blade markup */
.about-image-wrapper {
  overflow: visible;
}

.about-image-wrapper > img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-float-card {
  position: absolute;
  left: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(270px, calc(100% - 28px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px -18px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.afc-num {
  flex: none;
  color: var(--color-red);
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.afc-label {
  color: var(--color-ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.about-shape {
  position: absolute;
  z-index: -1;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 42%;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-red-tint), var(--color-red-tint-2));
}

.feature-check {
  color: transparent;
  font-size: 0;
}

/* Make the intentionally wide service card span two columns. */
.service-card-wide {
  grid-column: span 2;
}

/* Initials are used instead of avatar images in the current template. */
.testimonial-card footer .testimonial-avatar {
  display: grid;
  place-items: center;
  color: var(--color-red);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* Current CTA aliases use the same visual system as the old component. */
.cta-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 620px) {
  .service-card-wide {
    grid-column: span 1;
  }

  .about-shape {
    right: -10px;
    bottom: -10px;
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   Only elements explicitly marked with .animate-on-scroll are
   hidden. Section wrappers stay in normal flow and can never leave
   large blank areas when JavaScript or a selector changes.
   ============================================================ */
.home-animations-ready .animate-on-scroll {
  opacity: 0;
  translate: 0 36px;
  transition:
    opacity 0.75s var(--ease),
    translate 0.75s var(--ease);
  will-change: opacity, translate;
}

.home-animations-ready .animate-on-scroll.is-visible {
  opacity: 1;
  translate: 0 0;
}

.service-card.animate-on-scroll:nth-child(2),
.why-card.animate-on-scroll:nth-child(2),
.process-step.animate-on-scroll:nth-child(2),
.stat-block.animate-on-scroll:nth-child(2),
.testimonial-card.animate-on-scroll:nth-child(2),
.faq-item.animate-on-scroll:nth-child(2) {
  transition-delay: 0.08s;
}

.service-card.animate-on-scroll:nth-child(3),
.why-card.animate-on-scroll:nth-child(3),
.process-step.animate-on-scroll:nth-child(3),
.stat-block.animate-on-scroll:nth-child(3),
.testimonial-card.animate-on-scroll:nth-child(3),
.faq-item.animate-on-scroll:nth-child(3) {
  transition-delay: 0.16s;
}

.service-card.animate-on-scroll:nth-child(4),
.why-card.animate-on-scroll:nth-child(4),
.process-step.animate-on-scroll:nth-child(4),
.stat-block.animate-on-scroll:nth-child(4),
.faq-item.animate-on-scroll:nth-child(4) {
  transition-delay: 0.24s;
}

.service-card.animate-on-scroll:nth-child(5),
.why-card.animate-on-scroll:nth-child(5) {
  transition-delay: 0.32s;
}

.service-card.animate-on-scroll:nth-child(6),
.why-card.animate-on-scroll:nth-child(6) {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .home-animations-ready .animate-on-scroll {
    opacity: 1;
    translate: none;
    transition: none;
  }
}
.tech-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tech-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
}