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

:root {
  --primary: #0057FF;
  --primary-dark: #0041CC;
  --accent: #ff9e24;
  --accent-light: #ffb854;
  --dark: #070B14;
  --dark2: #0D1321;
  --card: #111827;
  --border: rgba(255, 255, 255, 0.08);
  --text: #E8EDF5;
  --muted: #8B97A8;
  --gradient: linear-gradient(135deg, #0057FF 0%, #ff9e24 100%);
  --glow: 0 0 60px rgba(255, 158, 36, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 9999;
  width: 0%;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px rgba(255, 158, 36, 0.6), 0 0 30px rgba(255, 158, 36, 0.3);
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  line-height: 0;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-icons-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-icon .material-symbols-rounded {
  font-size: 20px;
  color: var(--accent);
  /* Brand color by default to "catch attention" */
  transition: transform 0.3s ease;
}

.nav-icon:hover {
  background: rgba(255, 158, 36, 0.15);
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 15px rgba(255, 158, 36, 0.2);
}

.nav-icon:hover .material-symbols-rounded {
  transform: rotate(-10deg);
}

.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 120;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.3s ease,
    background 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--accent);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--accent);
}

/* ── RESPONSIVE MOBILE MENU ── */
@media (max-width: 990px) {
  .hamburger {
    display: flex;
    position: relative;
    z-index: 120;
  }

  .nav-logo {
    position: relative;
    z-index: 120;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: linear-gradient(135deg, rgba(7, 11, 20, 0.98) 0%, rgba(13, 19, 33, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    clip-path: circle(0% at 85% 5%);
    /* Expanding circle reveal */
    transition: opacity 0.5s ease, visibility 0.5s ease, clip-path 0.7s cubic-bezier(0.8, 0, 0.2, 1);
    padding: 2rem;
    overflow-y: auto;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    clip-path: circle(150% at 85% 5%);
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    /* Slide and scale feel */
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Staggered entrance for each link */
  .nav-links.open li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.open li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.open li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.open li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.open li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.open li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links.open li:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav-links a:not(.nav-icon):not(.nav-cta) {
    position: relative;
    display: block;
    padding: 1rem 0;
    width: 100%;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Softer thin border */
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    overflow: hidden;
  }

  .nav-icons-group {
    width: 100%;
    justify-content: center;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links li .nav-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 0.5rem;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links a:hover {
    color: var(--accent);
  }

  .nav-links a:not(.nav-icon):not(.nav-cta):hover {
    letter-spacing: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 158, 36, 0.05), transparent);
    border-bottom-color: rgba(255, 158, 36, 0.2);
  }

  .nav-links li:last-child a:not(.nav-icon):not(.nav-cta) {
    border-bottom: none;
  }

  .nav-links .nav-cta {
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    width: auto;
    border-radius: 12px;
    display: inline-block;
    border-bottom: none;
    font-size: 1.15rem;
    box-shadow: 0 4px 30px rgba(255, 158, 36, 0.3);
    animation: btnMobilePulse 2.5s ease-in-out infinite;
  }

  @keyframes btnMobilePulse {

    0%,
    100% {
      box-shadow: 0 4px 30px rgba(255, 158, 36, 0.3);
    }

    50% {
      box-shadow: 0 4px 45px rgba(255, 158, 36, 0.6), 0 0 50px rgba(255, 158, 36, 0.15);
    }
  }
}


/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ── MAP SECTION ── */
.map-section {
  background: var(--dark);
  text-align: center;
}

.map-container {
  max-width: 1000px;
  margin: 3rem auto 0;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(100%) invert(90%) contrast(90%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(20%) invert(0%) contrast(100%);
  opacity: 1;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 87, 255, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(255, 158, 36, 0.1) 0%, transparent 60%);
}

/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 87, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 60px 60px;
  }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 87, 255, 0.12);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 158, 36, 0.1);
  bottom: -50px;
  right: -50px;
  animation-delay: -3s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(0, 87, 255, 0.08);
  top: 40%;
  left: 20%;
  animation-delay: -6s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  33% {
    transform: translateY(-30px) rotate(2deg) scale(1.02);
  }

  66% {
    transform: translateY(-15px) rotate(-1deg) scale(0.98);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 158, 36, 0.12);
  border: 1px solid rgba(255, 158, 36, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.8rem;
  animation: fadeDown 0.6s ease forwards;
  opacity: 0;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s ease 0.2s forwards;
  opacity: 0;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #ff9e24 0%, #ffb854 25%, #ff9e24 50%, #ffb854 75%, #ff9e24 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  animation: fadeUp 0.7s ease 0.4s forwards;
  opacity: 0;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.6s forwards;
  opacity: 0;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
  box-shadow: 0 4px 30px rgba(255, 158, 36, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 4px 30px rgba(255, 158, 36, 0.4);
  }

  50% {
    box-shadow: 0 4px 50px rgba(255, 158, 36, 0.7), 0 0 80px rgba(255, 158, 36, 0.2);
  }
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 50px rgba(255, 158, 36, 0.6), 0 0 100px rgba(255, 158, 36, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  border-color: rgba(255, 158, 36, 0.5);
  background: rgba(255, 158, 36, 0.05);
}

/* Trust bar */
.trust-bar {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  animation: fadeUp 0.7s ease 0.8s forwards;
  opacity: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.trust-item .icon {
  color: var(--accent);
  font-size: 1rem;
}

/* Stats counter row */
.stats-row {
  position: relative;
  z-index: 2;
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 158, 36, 0.03);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

/* ── SECTIONS ── */
section {
  padding: 6rem 5%;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.7;
}

/* ── SERVICES ── */
#services {
  background: var(--dark2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  cursor: default;
  perspective: 800px;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  border-color: rgba(255, 158, 36, 0.5);
  box-shadow: 0 25px 70px rgba(255, 158, 36, 0.15), 0 0 40px rgba(255, 158, 36, 0.05);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
  background: rgba(255, 158, 36, 0.25);
  box-shadow: 0 0 20px rgba(255, 158, 36, 0.3);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 158, 36, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 158, 36, 0.08);
  border: 1px solid rgba(255, 158, 36, 0.2);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
}

/* ── AI AUTOMATION (Hero section 2) ── */
#automation {
  background: var(--dark);
  overflow: hidden;
}

.automation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .automation-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.automation-visual {
  position: relative;
  height: 380px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipeline {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 85%;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.5s ease forwards;
}

.pipeline-step:nth-child(1) {
  animation-delay: 0.3s;
}

.pipeline-step:nth-child(2) {
  animation-delay: 0.6s;
  border-color: rgba(255, 158, 36, 0.4);
  background: rgba(255, 158, 36, 0.06);
}

.pipeline-step:nth-child(3) {
  animation-delay: 0.9s;
}

.pipeline-step:nth-child(4) {
  animation-delay: 1.2s;
  border-color: rgba(255, 158, 36, 0.3);
  background:
    rgba(255, 158, 36, 0.04);
}

.pipeline-step:nth-child(5) {
  animation-delay: 1.5s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-blue {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
}

.dot-cyan {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.dot-green {
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
}

.dot-gray {
  background: var(--muted);
}

.step-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.step-time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.feature-list li.visible {
  opacity: 1;
  transform: translateX(0);
}

.feature-list li .check {
  width: 22px;
  height: 22px;
  background: rgba(255, 158, 36, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── PROCESS ── */
#process {
  background: var(--dark2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 16px;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.process-step:hover .step-number {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 12px 40px rgba(255, 158, 36, 0.5);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 30px rgba(255, 158, 36, 0.35);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 158, 36, 0.3);
  box-shadow: 0 20px 50px rgba(255, 158, 36, 0.12), 0 0 30px rgba(255, 158, 36, 0.05);
}

.stars {
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom:
    1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-biz {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── CTA FINAL ── */
#contact {
  background: var(--dark2);
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 158, 36, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
}

/* Form */
.audit-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-input::placeholder {
  color: var(--muted);
}

.form-input:focus {
  border-color: var(--primary);
  background: rgba(255, 158, 36, 0.05);
}

.form-submit {
  background: var(--gradient);
  color: #fff;
  padding: 1.1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 30px rgba(255, 158, 36, 0.4);
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 158, 36, 0.5);
}

.form-submit:active {
  transform: translateY(0);
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 80px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-contact {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-contact .icon {
  color: var(--accent);
  margin-right: 4px;
}

.footer-address {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

.footer-address a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-address a:hover {
  color: var(--text);
}

.footer-copy {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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



/* ── RESPONSIVE (general) ── */
@media (max-width: 990px) {
  .hero h1 {
    letter-spacing: -1px;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  footer {
    padding: 2.5rem 5%;
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Scroll reveal base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── ABOUT FOUNDER ── */
#about {
  background: var(--dark);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  display: flex;
  /* Para quitar cualquier espacio residual inferior */
}

.founder-img {
  width: 100%;
  height: auto;
  /* Permite que crezca conservando su propoción real */
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(20, 24, 34, 0.85);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 158, 36, 0.3);
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

/* ── KOMMO CHAT VISIBILITY FIX ── */
.amo-button-holder {
  z-index: 99999 !important;
  bottom: 40px !important;
  right: 40px !important;
}

/* ── HELPERS & UTILITIES ── */
.text-left { text-align: left; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.max-w-600 { max-width: 600px; }

.section-accent-subtle {
  background: rgba(255, 158, 36, 0.02);
}

.sub-title-small {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.faq-question {
  color: var(--text);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-align-center {
  display: flex;
  align-items: center;
}

.gap-1 {
  gap: 1rem;
}

/* ── DECORATIVE IMAGES & ILLUSTRATIONS ── */
.img-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.2);
}

.img-box::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 158, 36, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.img-box-hero {
  max-width: 600px;
  margin: 2rem auto;
}

.img-box svg, .img-box img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 40px rgba(255, 158, 36, 0.2));
  animation: float 6s ease-in-out infinite;
}

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