/* ── Diga Font (place your .woff2/.woff files in a /fonts/ folder) ── */
@font-face {
  font-family: 'Diga';
  src: url('../fonts/Diga-Bold.woff2') format('woff2'),
    url('../fonts/Diga-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Diga';
  src: url('../fonts/Diga-SemiBoldItalic.woff2') format('woff2'),
    url('../fonts/Diga-SemiBoldItalic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #E8550F;
  --orange-hover: #D04A0B;
  --orange-light: #F26B2A;
  --orange-glow: #FF6B2B;
  --dark: #1A1A1A;
  --dark-bg: #1C1C1C;
  --dark-card: #232323;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EFEFEF;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #8B8B8B;
  --gray-600: #6B6B6B;
  --gray-700: #4A4A4A;
  --gray-800: #2D2D2D;
  --gray-900: #1F1F1F;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ═══════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: clamp(10px, 2vw, 20px) clamp(16px, 4vw, 40px);
}

.nav-pill {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(38, 36, 34, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 60px;
  padding: 14px clamp(16px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

@keyframes logoShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

.logo {
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.75) 50%,
      rgba(255, 255, 255, 0) 100%);
  animation: logoShimmer 1.4s ease-in-out 1;
  pointer-events: none;
}

.logo img {
  height: clamp(28px, 4vw, 45px);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  opacity: 0.9;
  transition: opacity 0.2s;
  letter-spacing: 0.1px;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-links .dropdown-trigger svg {
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

.btn-request {
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  opacity: 1 !important;
  letter-spacing: 0.2px;
  min-height: 44px;
  min-width: 44px;
}

.btn-request:hover {
  background: var(--orange-hover);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-height: 44px;
  min-width: 44px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════ */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 900px;
  display: flex;
  align-items: center;
  background: #111;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('../images/aptli%20website%20banner_home.jpg') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(15, 12, 10, 0.65) 0%, rgba(15, 12, 10, 0.3) 40%, rgba(15, 12, 10, 0.08) 70%, rgba(15, 12, 10, 0.15) 100%),
    linear-gradient(to right, rgba(15, 12, 10, 0.5) 0%, rgba(15, 12, 10, 0.1) 55%, transparent 75%);
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 75px;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-family: 'Diga';
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-content h1 em {
  font-family: 'Diga';
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
  display: block;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 36px;
  letter-spacing: 0.2px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 6px 6px 6px 24px;
  border: 1px solid rgba(255, 255, 255, 1);
}

.hero-cta input {
  padding: 12px 16px 12px 0;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  width: 200px;
  outline: none;
}

.hero-cta input::placeholder {
  color: rgba(255, 255, 255, 1);
}

.btn-demo {
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-demo:hover {
  background: var(--orange-hover);
}

/* ═══════════════════════════════════
       STATS BAR
    ═══════════════════════════════════ */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  /* Pull it up to overlap the hero section */
  padding: 0 0 clamp(48px, 6vw, 72px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  background: rgba(28, 28, 28, 0.6);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-item .stat-number {
  font-family: 'Diga';
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--orange-glow);
  line-height: 1;
  letter-spacing: -1px;
  flex-shrink: 0;
  text-shadow: 0 0 20px rgba(232, 85, 15, 0.4);
}

.stat-item .stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  font-weight: 400;
}

/* Ambient glow for stats section */
.stats-bar .stats-sphere {
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.15;
  z-index: 1;
  filter: blur(80px);
  pointer-events: none;
}

/* ═══════════════════════════════════
       INTEGRATIONS BAR
    ═══════════════════════════════════ */
.integrations-bar {
  background: var(--dark);
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.integrations-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 25s linear infinite;
}

.integrations-scroll {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-right: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
}

.integrations-scroll span {
  white-space: nowrap;
}

.integrations-scroll .sep {
  display: inline-flex;
  align-items: center;
}

.integrations-scroll .sep img {
  width: 14px;
  height: 14px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.integrations-bar:hover .integrations-track {
  animation-play-state: paused;
}

/* ═══════════════════════════════════
       SECTION LABEL (shared)
    ═══════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

/* ═══════════════════════════════════
       OUTCOMES SECTION
    ═══════════════════════════════════ */
.outcomes {
  padding: clamp(60px, 10vw, 120px) 0 clamp(70px, 10vw, 130px);
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Decorative blurred sphere top-left */
.outcomes::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 85, 15, 0.25), rgba(232, 85, 15, 0.05) 60%, transparent 75%);
  filter: blur(30px);
  z-index: 0;
}

/* Decorative sphere right edge */
.outcomes::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #F9944E, var(--orange), #B53A00);
  box-shadow: 0 8px 32px rgba(232, 85, 15, 0.2);
  z-index: 1;
  filter: blur(20px);
}

.outcomes .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.outcomes-content h2 {
  font-family: 'Diga';
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  color: var(--dark);
}

.outcomes-content h2 em {
  font-family: 'Diga';
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
  /* text-decoration: underline; */
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.outcomes-content>p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 36px;
}

.outcomes-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-pill {
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  min-height: 44px;
}

.btn-pill--filled {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-pill--filled:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
}

.btn-pill--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--orange);
}

.btn-pill--outline:hover {
  border-color: var(--gray-700);
}

.example-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 0;
}

.example-card {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 36px) clamp(28px, 3vw, 36px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.045);
  position: relative;
  transition: box-shadow 0.25s;
  max-width: 420px;
  width: 100%;
}

/* Curved corner bracket — top-left arc */
.example-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 80px;
  height: 80px;
  border: 2.5px solid var(--orange);
  border-radius: 20px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.example-card:first-child {
  margin-left: 60px;
}

.example-card:nth-child(2) {
  margin-left: 30px;
}

.example-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.example-card .example-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.2px;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

.example-card h4 {
  font-family: 'inter', 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.35;
  color: var(--orange);
}

.example-card h4 .icon {
  width: 40px;
  height: 40px;
  background: #FFF3EB;
  border-radius: 10px;
  border: 1px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.example-card h4 .icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.example-card p {
  font-size: 14.5px;
  color: #0F172A;
  line-height: 1.75;
}

/* Alternate float animation */
.example-card:first-child {
  animation: floatLeft 4s ease-in-out infinite;
}

.example-card:nth-child(2) {
  animation: floatRight 4s ease-in-out infinite;
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-12px);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(12px);
  }
}

/* ═══════════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════════ */
.how-it-works {
  padding: clamp(60px, 8vw, 90px) 0 clamp(60px, 8vw, 100px);
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/How-it-works-bg.png') center bottom / cover no-repeat;
  background-size: 100% 100%;
  opacity: 0.45;
  z-index: 0;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works .section-label {
  justify-content: center;
}

.how-it-works .section-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.how-it-works h2 {
  font-family: 'Diga';
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  color: var(--dark);
}

.how-it-works h2 em {
  font-family: 'Diga';
  color: var(--orange);
  font-style: italic;
  font-weight: 600;
}

.how-it-works>.container>p {
  font-size: 16px;
  color: #111827;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* Steps pipeline connector */
.steps-pipeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 146px;
}

.pipe-col {
  position: absolute;
  top: 0;
}

.pipe-col img {
  display: block;
  width: 100%;
  height: 100%;
}

.pipe-left {
  left: 15.28%;
  width: 35.26%;
  height: 145px;
}

.pipe-center {
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 146px;
}

.pipe-right {
  left: 49.46%;
  width: 35.26%;
  height: 145px;
}

.steps-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  align-items: start;
}

.step-card {
  background: var(--dark-card);
  border-radius: 20px;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px) clamp(28px, 3vw, 38px);
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-card:nth-child(2) {
  padding-bottom: 66px;
}

.step-card::after {
  content: '';
  position: absolute;
  top: -45px;
  right: 8px;
  width: 50px;
  height: 152px;
  border-radius: 40px;
  background: linear-gradient(170deg, var(--orange) 0%, #C84A0D 40%, #6B2700 72%, transparent 100%);
  transform: rotate(-145deg);
  opacity: 0.85;
}

.step-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.step-card-icon svg {
  width: 28px;
  height: 28px;
}

.step-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.step-card p {
  font-size: 15px;
  color: #E5E7EB;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════
       MISSION & VALUES
    ═══════════════════════════════════ */
.mission {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #f8fafc;
}

.mission .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.mission-content h2 {
  font-family: 'Diga';
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  color: var(--dark);
}

.mission-content h2 em {
  font-family: 'Diga';
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
}

.mission-content>p {
  font-size: 16px;
  color: #111827;
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: Poppins;
  font-weight: 400;
}

.mission-content ul {
  list-style: none;
  padding: 0;
}

.mission-content ul li {
  font-size: 14px;
  color: #111827;
  padding: 6px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.mission-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 5px 5px 12px 0px lightgrey;
  display: flex;
  flex-direction: column;
  min-height: 180px;
}

.value-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.value-card .value-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card .value-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
}

.value-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  font-family: Poppins;

}

.value-card p {
  font-size: 16px;
  color: #000;
  line-height: 1.65;
}

/* --- AAHOACON Card (inside Mission) --- */
.aahoacon-card {
  grid-column: 1 / -1;
  background: var(--orange);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}

.aahoacon-card::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  top: -80px;
  right: -60px;
  pointer-events: none;
}

.aahoacon-left .section-label {
  color: #fff;
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 0;

}

.aahoacon-left .section-label::before {
  background: #fff;
}

.aahoacon-left h2 {
  font-family: 'Diga';
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.aahoacon-left>p {
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  line-height: 1.65;
  font-family: Poppins;
  font-weight: 400;

}

.offer-box {
  /* background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); */
  border-radius: 14px;
  /* padding: 24px 24px; */
  position: relative;
  /* overflow: hidden; */
  z-index: 1;
}

.offer-details {
  background: rgba(232, 85, 15, 0.12);
  border-radius: 10px;
  padding: 14px 18px;
  position: relative;
  overflow: hidden;
}

.offer-details::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 18px;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--orange), #2d2d2d);
  top: 6px;
  right: 20px;
  opacity: 1;
  transform: rotate(-35deg);
  pointer-events: none;
}

.offer-details::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 18px;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--orange), #2d2d2d);
  bottom: 12px;
  right: 10px;
  opacity: 1;
  transform: rotate(-35deg);
  pointer-events: none;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
}

.offer-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}

.offer-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  font-family: Poppins;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.aahoacon-inline-logo {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.offer-box>p {
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-family: Poppins, sans-serif;
  margin-bottom: 14px;
}

.offer-details {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 10px;
  padding: 14px 18px;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.offer-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
}

.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--orange);
}

.offer-exclusive {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 1);
  margin: 0;
}

/* ═══════════════════════════════════
       FAQ SECTION
    ═══════════════════════════════════ */
.faq {
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 14vw, 180px);
  background: var(--dark) url('../images/faq-bg.png') no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}

/* Decorative orange capsule top center */
/* .faq::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 52%;
      width: 50px;
      height: 140px;
      border-radius: 40px;
      background: linear-gradient(170deg, var(--orange) 0%, #C84A0D 50%, transparent 100%);
      transform: rotate(-20deg);
      opacity: 0.9;
      z-index: 1;
    } */

/* Decorative orange sphere bottom right */
/* .faq::after {
      content: '';
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle at 32% 32%, #F9944E, var(--orange), #B53A00);
      box-shadow: 0 8px 32px rgba(232, 85, 15, 0.3);
      filter: blur(10px);
      z-index: 1;
    } */

.faq .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.faq-header h2 {
  font-family: 'Diga';
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
  color: var(--white);
}

.faq-header h2 em {
  font-family: 'Diga';
  font-style: italic;
  font-weight: 700;
  color: #fb923c;
  display: block;
}

.faq-header>p {
  font-size: 22px;
  font-weight: 600;
  color: #F8FAFC;
  line-height: 1.5;
  margin-bottom: 4px;
  font-family: Poppins;
}

.faq-header .faq-note {
  font-size: 16px;
  color: #F8FAFC;
  margin-top: 4px;
  line-height: 1.6;
  font-family: Poppins;
  font-weight: 400;

}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 22px;
  transition: border-color 0.25s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.45;
  gap: 16px;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 1px;
  transition: transform 0.25s;
}

.faq-icon::before {
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon {
  border-color: var(--orange);
}

.faq-item.active .faq-icon::before {
  background: var(--orange);
}

.faq-item.active .faq-icon::after {
  background: var(--orange);
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  padding: 0 28px 20px;
}

/* ═══════════════════════════════════
       CTA / CONTACT SECTION
    ═══════════════════════════════════ */
.cta-section {
  position: relative;
  z-index: 10;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ── The floating white card ── */
.cta-card {
  max-width: 1200px;
  margin: -50px auto -50px;
  background: var(--white);
  border-radius: 2rem;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

/* ── Orange sphere – top right ── */
.cta-card::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 35%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #F9944E, var(--orange), #B53A00);
  box-shadow: 0 8px 32px rgba(232, 85, 15, 0.35);
  z-index: 2;
}

/* ── Orange sphere – bottom left ── */
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 30%, #F9944E, var(--orange), #B53A00);
  box-shadow: 0 12px 48px rgba(232, 85, 15, 0.4);
  z-index: 2;
}

/* ── Left column: text content ── */
.cta-left {
  padding: clamp(28px, 5vw, 60px) clamp(24px, 4vw, 48px) clamp(28px, 5vw, 60px) clamp(28px, 4.5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.cta-left .section-label {
  color: var(--orange);
  margin-bottom: 18px;
}

.cta-left .section-label::before {
  background: var(--orange);
}

.cta-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.cta-left h2 em {
  font-family: 'Playfair Display', serif;
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}

.cta-left>p {
  font-size: 16px;
  color: #0F172A;
  line-height: 1.7;
  max-width: 400px;
  font-family: Poppins;
  font-weight: 400;

}

/* ── Right column: dark form card ── */
.cta-form-wrapper {
  background: var(--dark-bg);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 36px);
  position: relative;
  z-index: 3;
  border-radius: 20px;
}

.cta-form-wrapper h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-form-wrapper>p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--dark-card);
  color: var(--white);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  min-height: 44px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--orange);
}

/* ── Custom Select Dropdown ── */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--dark-card);
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s;
  user-select: none;
  min-height: 44px;
}

.custom-select-trigger.has-value {
  color: var(--white);
}

.custom-select.open .custom-select-trigger {
  border-color: var(--orange);
  border-radius: 10px 10px 0 0;
}

.custom-select-trigger svg {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.custom-select.open .custom-select-trigger svg {
  transform: rotate(180deg);
}

.custom-select-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #2a2a2a;
  border: 1px solid var(--orange);
  border-top: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  z-index: 50;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
}

.custom-select-option:hover {
  background: rgba(232, 85, 15, 0.15);
  color: var(--white);
}

.custom-select-option.selected {
  background: rgba(232, 85, 15, 0.2);
  color: var(--orange);
  font-weight: 600;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-field textarea {
  height: 100px;
  resize: vertical;
}

.cta-form-buttons {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.cta-form-buttons .btn-get-access {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  min-height: 44px;
}

.cta-form-buttons .btn-get-access:hover {
  background: var(--orange);
  color: var(--white);
}

.cta-form-buttons .btn-contact-us {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  min-height: 44px;
}

.cta-form-buttons .btn-contact-us:hover {
  background: var(--orange);
  color: var(--white);
}

.cta-email-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.cta-email-note a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.cta-email-note a:hover {
  text-decoration: underline;
}

/* Small decorative capsule near form bottom-right */
.cta-form-wrapper::after {
  content: '';
  position: absolute;
  bottom: 66px;
  right: 35px;
  width: 24px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(170deg, var(--orange) 0%, #C84A0D 50%, transparent 100%);
  transform: rotate(-150deg);
  opacity: 1;
}

/* ═══════════════════════════════════
       FOOTER
    ═══════════════════════════════════ */
footer {
  background: var(--dark-bg);
  padding: clamp(80px, 10vw, 140px) 0 0;
  border-top: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 48px;
}

/* ── Col 1: Branding ── */
.footer-brand .footer-logo {
  margin-bottom: 20px;
}

.footer-brand .footer-logo img {
  height: 70px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  font-family: 'Poppins';
  color: rgba(255, 255, 255, 1);
  line-height: 1.75;
  max-width: 360px;
  text-align: justify;
}

.footer-brand p strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.footer-brand p em {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-weight: 600;
}

/* ── Col 2: Contact info ── */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 4px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.footer-contact-text a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-text a:hover {
  color: var(--orange);
}

/* ── Col 3: Nav links + socials ── */
.footer-col3 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 4px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  padding-top: 4px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--white);
}

/* ── Social icons (inside col 3) ── */
.footer-socials {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 4px;
}

.footer-socials a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--orange);
}

.footer-socials a svg,
.footer-socials a img {
  width: 32px;
  height: 32px;
  fill: currentColor;
  object-fit: contain;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ═══════════════════════════════════
       DECORATIVE SPHERES
    ═══════════════════════════════════ */
.sphere {
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
}

.sphere--orange {
  background: radial-gradient(circle at 32% 32%, #F9944E, var(--orange), #B53A00);
  box-shadow: 0 8px 32px rgba(232, 85, 15, 0.25);
}

/* ═══════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════ */

/* ── Ultra-wide: constrain layout on very large monitors ── */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }

  .nav-pill {
    max-width: 1320px;
  }

  .cta-card {
    max-width: 1320px;
  }

  .steps-cards,
  .steps-pipeline {
    max-width: 1200px;
  }
}

/* ── Tablet landscape / small desktop ── */
@media (max-width: 1024px) {

  .hero .container,
  .outcomes .container,
  .mission .container,
  .faq .container {
    gap: 24px;
  }

  .cta-card {
    gap: 0;
  }

  .example-card:first-child {
    margin-left: 0;
    animation: none;
  }

  .example-card:nth-child(2) {
    margin-left: 0;
    animation: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col3 {
    grid-column: 1 / -1;
  }
}

/* ── Nav collapse – kicks in before layout stacks ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(38, 36, 34, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 200;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links .btn-request {
    margin: 8px 16px;
    display: block;
    text-align: center;
    border-radius: 30px;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ── Tablet portrait ── */
@media (max-width: 768px) {

  .hero .container,
  .outcomes .container,
  .mission .container,
  .faq .container {
    grid-template-columns: 1fr;
  }

  .aahoacon-card {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-item:not(:last-child)::after {
    right: 15%;
    top: auto;
    bottom: 0;
    height: 1px;
    width: 70%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  .hero {
    height: auto;
    min-height: 80vh;
    align-items: flex-end;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    border-radius: 12px;
    padding: 12px;
  }

  .hero-cta input {
    width: 100%;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-pipeline {
    display: none;
  }

  .steps-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-card {
    grid-template-columns: 1fr;
    margin: -60px 0 -60px;
  }

  .cta-left {
    padding: 28px 24px 20px;
  }



  .cta-card::before {
    width: 60px;
    height: 60px;
    top: -20px;
    right: 20%;
  }

  .cta-card::after {
    width: 100px;
    height: 100px;
    bottom: auto;
    top: 40%;
    left: -30px;
  }

  footer {
    padding-top: 80px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .footer-brand p {
    max-width: 100%;
    text-align: left;
  }

  .footer-brand .footer-logo {
    display: flex;
    justify-content: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }

  .footer-col3 {
    grid-column: auto;
  }

  .footer-nav {
    justify-items: flex-start;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .cta-form-buttons {
    flex-wrap: wrap;
  }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-buttons {
    flex-direction: column;
  }

  .outcomes-buttons .btn-pill {
    width: 100%;
    justify-content: center;
  }

  .cta-form-buttons {
    flex-direction: column;
  }

  .cta-form-buttons .btn-get-access,
  .cta-form-buttons .btn-contact-us {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }

  .stat-item {
    justify-content: center;
    text-align: left;
  }
}

/* ── Landscape on phones: limit hero height, compact nav ── */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    height: auto;
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .hero .container {
    padding-top: 20px;
  }

  .hero-content h1 {
    margin-bottom: 12px;
  }

  .hero-tagline {
    margin-bottom: 2px;
  }

  .hero-sub {
    margin-bottom: 16px;
  }

  nav {
    padding: 6px 16px;
  }

  .nav-pill {
    padding: 8px 16px;
  }

  .faq-question {
    padding: 14px 20px;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
  }
}

/* ═══════════════════════════════════
       SCROLL REVEAL ANIMATIONS
    ═══════════════════════════════════ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left {
  transform: translateX(-30px);
}

.reveal.from-right {
  transform: translateX(30px);
}

.reveal.scale-up {
  transform: scale(0.92);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Hover enhancements */
.step-card,
.value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.faq-item {
  transition: transform 0.2s ease, border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.footer-socials a {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .step-card,
  .value-card,
  .stat-item,
  .faq-item {
    transition: none;
  }

  .footer-socials a {
    transition: none;
  }
}

/* ═══════════════════════════════════
       LEGAL MODALS
    ═══════════════════════════════════ */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.legal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.legal-modal {
  background: var(--dark-bg);
  border-radius: 20px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.legal-modal-overlay.active .legal-modal {
  transform: translateY(0);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.legal-modal-header h2 {
  font-family: 'Diga';
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.legal-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  min-height: 44px;
  min-width: 44px;
  flex-shrink: 0;
}

.legal-modal-close:hover {
  border-color: var(--orange);
  background: rgba(232, 85, 15, 0.15);
}

.legal-modal-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.legal-modal-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--orange);
  margin: 24px 0 8px;
}

.legal-modal-body h3:first-child {
  margin-top: 0;
}

.legal-modal-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  margin-bottom: 6px;
}

.legal-modal-body ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 12px;
}

.legal-modal-body ul li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.65;
}

.legal-modal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

@media (max-width: 480px) {
  .legal-modal {
    max-height: 90vh;
    border-radius: 16px;
  }

  .legal-modal-header {
    padding: 20px 20px 16px;
  }

  .legal-modal-body {
    padding: 20px;
  }
}


@media (max-width: 768px) {
  .hero-bg {
    background-position: 75% center;
  }
}