/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #334155;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 12px 4%; pointer-events: none;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1240px; margin: 0 auto; padding: 0 12px 0 18px;
  border: 1px solid rgba(15,23,42,.09); border-radius: 17px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 16px 45px rgba(15,23,42,.12);
  pointer-events: auto;
}
.logo,
.mobile-logo {
  display: inline-flex;
  align-items: center;
}
.logo { flex: 0 0 auto; padding-right: 16px; }
.logo img {
  width: auto; height: 34px;
  filter: drop-shadow(0 2px 7px rgba(15,23,42,.12));
}
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a,
.nav-dropdown-trigger {
  position: relative; display: inline-flex; min-height: 38px; padding: 0 11px;
  align-items: center; border: 0; border-radius: 9px; background: transparent; color: #667085;
  font-family: 'Epilogue', sans-serif; font-size: 13px; font-weight: 600;
  transition: color .22s ease, background .22s ease;
}
.main-nav > a:hover, .main-nav > a.active,
.nav-dropdown:hover > .nav-dropdown-trigger,
.nav-dropdown:focus-within > .nav-dropdown-trigger,
.nav-dropdown.open > .nav-dropdown-trigger,
.nav-dropdown > .nav-dropdown-trigger.active { color: #0b1026; background: #f1f3ff; }
.main-nav > a.active::before,
.nav-dropdown > .nav-dropdown-trigger.active::before {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 2px; height: 2px;
  border-radius: 2px; background: #5267ff;
}
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { cursor: default; }
.nav-dropdown-trigger::after {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; margin-left: 7px; vertical-align: middle;
  opacity: .55; transition: transform .25s ease;
}
.nav-products .nav-dropdown-trigger { gap: 6px; }
.nav-beta-badge {
  display: inline-flex; min-height: 17px; padding: 0 6px; align-items: center; justify-content: center;
  border: 1px solid rgba(82,103,255,.2); border-radius: 99px; background: #eef0ff; color: #5267ff;
  font: 800 7.5px/1 'Inter',sans-serif; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.header-dark .nav-beta-badge { border-color: rgba(100,230,211,.26); background: rgba(100,230,211,.12); color: #64e6d3; }
.nav-dropdown:hover > .nav-dropdown-trigger::after,
.nav-dropdown:focus-within > .nav-dropdown-trigger::after,
.nav-dropdown.open > .nav-dropdown-trigger::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: 100%; left: 0; z-index: 1100;
  min-width: 265px; padding: 18px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 15px;
  background: rgba(11,16,38,.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 28px 70px rgba(11,16,38,.28);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(9px) scale(.98); transform-origin: top left; will-change: transform, opacity;
}
.nav-services .dropdown-menu { width: 520px; }
.nav-services .dropdown-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 3px 8px; }
.nav-products .dropdown-menu { width: 290px; }
.dropdown-label {
  display: block; margin: 0 8px 11px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1); color: #64e6d3;
  font: 700 9.5px/1 'Inter',sans-serif; letter-spacing: .14em; text-transform: uppercase;
}
.nav-dropdown::before {
  content: ''; position: absolute; top: 100%; left: -18px; width: calc(100% + 36px); height: 24px;
  z-index: 99; display: block;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(13px) scale(1);
}
.dropdown-menu a {
  display: flex; min-height: 41px; padding: 0 11px; align-items: center; gap: 10px;
  border-radius: 8px; color: rgba(232,237,255,.72); white-space: nowrap;
  font: 600 13px/1.25 'Epilogue',sans-serif;
  transition: background .25s ease, color .25s ease, transform .25s ease, opacity .3s ease;
  opacity: 0; transform: translateX(-8px);
}
.dropdown-menu a::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(100,230,211,.42); flex-shrink: 0; transition: background .25s ease, transform .25s ease;
}
.nav-dropdown:hover .dropdown-menu a,
.nav-dropdown:focus-within .dropdown-menu a,
.nav-dropdown.open .dropdown-menu a { opacity: 1; transform: translateX(0); }
.dropdown-menu a:nth-child(1) { transition-delay: .03s; }
.dropdown-menu a:nth-child(2) { transition-delay: .06s; }
.dropdown-menu a:nth-child(3) { transition-delay: .09s; }
.dropdown-menu a:nth-child(4) { transition-delay: .12s; }
.dropdown-menu a:nth-child(5) { transition-delay: .15s; }
.dropdown-menu a:nth-child(6) { transition-delay: .18s; }
.dropdown-menu a:nth-child(7) { transition-delay: .21s; }
.dropdown-menu a:nth-child(8) { transition-delay: .24s; }
.dropdown-menu a:nth-child(9) { transition-delay: .27s; }
.dropdown-menu a:hover, .dropdown-menu a.active {
  background: rgba(255,255,255,.08); color: #fff; transform: translateX(3px);
}
.dropdown-menu a:hover::before, .dropdown-menu a.active::before {
  background: #64e6d3; transform: scale(1.35);
}
.header-cta-wrap { display: flex; align-items: center; gap: 8px; margin-left: 12px; padding-left: 13px; border-left: 1px solid rgba(15,23,42,.09); }
.header-login {
  display: inline-flex; min-height: 40px; padding: 0 15px; align-items: center; justify-content: center;
  border-radius: 9px; background: #0b1026; color: #fff; white-space: nowrap;
  font: 700 10.5px/1 'Epilogue',sans-serif;
  transition: transform .22s ease,background .22s ease;
}
.header-login:hover { transform: translateY(-2px); background: #5267ff; }
.header-whatsapp {
  display: inline-flex; min-width: 40px; height: 40px; padding: 0 14px;
  align-items: center; justify-content: center; gap: 8px; border-radius: 9px;
  background: #25d366; color: #fff;
  font: 700 10.5px/1 'Epilogue',sans-serif;
  transition: transform .22s ease,box-shadow .22s ease;
}
.header-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 9px 20px rgba(37,211,102,.28); }
.mobile-toggle {
  display: none; width: 40px; height: 40px; padding: 10px 8px;
  flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(15,23,42,.08); border-radius: 9px;
  background: #f4f6ff; color: #0f172a; cursor: pointer;
}
.mobile-toggle span {
  display: block; width: 100%; height: 2px; border-radius: 2px;
  background: #0f172a; transition: all .3s cubic-bezier(.68,-.6,.32,1.6);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.header-dark .header-inner {
  border-color: rgba(255,255,255,.12);
  background: rgba(11,16,38,.72);
  box-shadow: 0 16px 45px rgba(3,7,18,.28);
}
.header-dark .main-nav a,
.header-dark .nav-dropdown-trigger { color: rgba(232,237,255,.64); }
.header-dark .main-nav > a:hover,
.header-dark .main-nav > a.active,
.header-dark .nav-dropdown:hover > .nav-dropdown-trigger,
.header-dark .nav-dropdown:focus-within > .nav-dropdown-trigger,
.header-dark .nav-dropdown.open > .nav-dropdown-trigger,
.header-dark .nav-dropdown > .nav-dropdown-trigger.active { color: #fff; background: rgba(255,255,255,.08); }
.header-dark .main-nav > a.active::before,
.header-dark .nav-dropdown > .nav-dropdown-trigger.active::before { background: #64e6d3; }
.header-dark .header-cta-wrap { border-left-color: rgba(255,255,255,.13); }
.header-dark .header-login { background: #fff; color: #0b1026; }
.header-dark .header-login:hover { background: #64e6d3; }
.header-dark .logo img { filter: drop-shadow(0 2px 8px rgba(100,230,211,.18)); }
.header-dark .mobile-toggle { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.08); }
.header-dark .mobile-toggle span { background: #fff; }

@media (max-width: 1120px) {
  .main-nav, .header-cta-wrap { display: none !important; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 680px) {
  .site-header { padding: 10px 12px; }
  .header-inner { height: 60px; padding: 0 9px 0 14px; border-radius: 14px; }
  .logo img { height: 30px; }
}

/* ===== HERO ===== */
.hero {
  padding: 80px 5% 60px;
  background: #ffffff;
  position: relative; overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(56,87,246,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 80%, rgba(56,87,246,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(99,102,241,.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,87,246,.2), transparent);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #ffffff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  opacity: 1; transition: opacity .5s ease;
}
#preloader.preloader-hide { opacity: 0; pointer-events: none; }
.preloader-shadow {
  position: absolute; top: 0; left: 0; width: 220px; height: 40px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(56,87,246,.35) 0%, rgba(56,87,246,.12) 55%, rgba(56,87,246,0) 78%);
  opacity: 0; will-change: transform, opacity;
}

/* ===== SCROLL PROGRESS BAR (driven by Motion.dev) ===== */
#scrollProgress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 10000;
  background: linear-gradient(90deg, #3857f6, #6366f1, #a259ff);
  transform: scaleX(0); transform-origin: 0 50%;
}
/* ===== HERO CURSOR GLOW ===== */
.hero-glow {
  position: absolute; top: 0; left: 0; width: 480px; height: 480px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(56,87,246,.14) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity .4s ease;
}
.hero:hover .hero-glow { opacity: 1; }

/* ===== HERO TRUST STATS ===== */
.hero-trust-stats { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-trust-stat strong {
  font-family: 'Epilogue', sans-serif; font-size: 26px; font-weight: 800; color: #0f172a; letter-spacing: -.5px;
}
.hero-trust-stat span { font-size: 12.5px; color: #64748b; font-weight: 500; }

/* ===== TILT CARDS (service / result cards get a subtle 3D hover tilt via JS) ===== */
.services-grid, .results-grid { perspective: 1200px; }
.service-card, .result-card { transform-style: preserve-3d; will-change: transform; }

/* ===== MAGNETIC BUTTONS ===== */
.magnetic { will-change: transform; }

/* ===== OVERSIZED STATEMENT SECTION ===== */
.statement-section { padding: 120px 5%; text-align: center; }
.statement-text {
  font-family: 'Epilogue', sans-serif;
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 700; line-height: 1.15; letter-spacing: -1.5px;
  color: #0f172a; max-width: 1000px; margin: 0 auto;
}
.statement-text em { font-style: italic; color: #3857f6; }
.statement-text .letter { display: inline-block; }

/* ===== GRAIN TEXTURE OVERLAY ===== */
#grainOverlay {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== CUSTOM CURSOR (accent ring — the real OS cursor stays visible too) ===== */
#cursorRing {
  position: fixed; top: 0; left: 0; width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border: 1.5px solid rgba(56,87,246,.55); border-radius: 50%;
  pointer-events: none; z-index: 9997; opacity: 0;
  transition: opacity .3s ease, border-color .3s ease, background-color .3s ease;
}
#cursorRing.is-active { opacity: 1; }
#cursorRing.is-hovering {
  width: 54px; height: 54px; margin: -27px 0 0 -27px;
  background: rgba(56,87,246,.08); border-color: rgba(56,87,246,.35);
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow { display: none; }
}
@media (hover: none), (pointer: coarse) {
  #cursorRing { display: none; }
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(56,87,246,.06);
  border: 1px solid rgba(56,87,246,.18);
  padding: 7px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: #3b82f6;
  margin-bottom: 24px; width: fit-content;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: #3b82f6; border-radius: 50%;
  box-shadow: 0 0 8px rgba(59,130,246,.8);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 6px rgba(59,130,246,.6); }
  50% { box-shadow: 0 0 14px rgba(59,130,246,1); }
}
.hero h1 {
  font-family: 'Epilogue', sans-serif;
  font-size: clamp(32px, 2.7vw, 44px);
  font-weight: 700; line-height: 1.22;
  color: #0f172a; margin-bottom: 22px; letter-spacing: -1px;
}
.gradient-text {
  font-weight: inherit;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  display: inline;
}
.hero-desc {
  font-size: 16px; color: #475569; margin-bottom: 36px;
  max-width: 460px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #3857f6, #6366f1);
  color: #fff; padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56,87,246,.4);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #0f172a; padding: 14px 28px;
  border-radius: 10px; font-weight: 600; font-size: 15px;
  border: 1px solid rgba(15,23,42,.15); cursor: pointer;
  transition: all .3s;
}
.btn-outline:hover {
  border-color: rgba(56,87,246,.6); background: rgba(56,87,246,.08);
}

.hero-visual-mobile { display: none; margin: 40px 0; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-mockup-wrap {
  position: relative; width: 100%; max-width: 560px;
  animation: hero-float 6s ease-in-out infinite;
}
.hero-3d-wrap {
  position: relative; width: 100%; max-width: 560px; aspect-ratio: 1 / 1;
}
.hero-3d-wrap canvas { width: 100% !important; height: 100% !important; display: block; }
.hero-laptop {
  width: 100%; border-radius: 12px;
  filter: drop-shadow(0 30px 60px rgba(15,23,42,.14));
}
.hero-phone {
  position: absolute; bottom: -30px; right: -40px;
  width: 35%; border-radius: 16px;
  filter: drop-shadow(0 20px 40px rgba(15,23,42,.16));
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero Stats Redesign */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 54px;
  max-width: 700px;
}
.hero-stat {
  background: rgba(15,23,42,.035);
  border: 1px solid rgba(15,23,42,.05);
  backdrop-filter: blur(10px);
  padding: 24px 20px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(15,23,42,.07);
  border-color: rgba(56, 87, 246, 0.3);
  box-shadow: 0 20px 40px rgba(15,23,42,.09);
}
.hero-stat h4 {
  font-family: 'Epilogue', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 0;
  background: linear-gradient(135deg, #3857f6, #a259ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
}
.hero-stat span {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== SECTION COMMON ===== */
.section { padding: 100px 5%; }
.section-dark { background: #ffffff; }
.section-darker { background: #f5f6fb; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #4f46e5; margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Epilogue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; color: #0f172a; letter-spacing: -1px;
}
.section-desc {
  font-size: 16px; color: #64748b; max-width: 950px; 
  margin: 16px auto 0; line-height: 1.6;
}

/* ===== SERVICES GRID (ENTERPRISE PROFESSIONAL) ===== */
.services-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 30px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  width: calc(33.333% - 20px); min-width: 320px; max-width: 380px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 12px; padding: 40px; text-align: left;
  transition: all .4s ease;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
}
/* Subtle top glow line for enterprise feel */
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(56,87,246,0.8), transparent);
  opacity: 0; transition: opacity .4s ease;
}
.service-card:hover {
  background: #f8faff;
  border-color: rgba(56,87,246,.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15,23,42,.12);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 50px; height: 50px; margin: 0 0 24px 0;
  background: rgba(56,87,246,.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #4f46e5;
  transition: all .4s ease;
}
.service-card:hover .service-icon {
  background: #3857f6; color: #fff;
}
.service-card h3 { font-size: 19px; font-weight: 600; color: #0f172a; margin-bottom: 12px; letter-spacing: -0.3px; }
.service-card p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: auto; }

/* ===== REELS SLIDER ===== */
.reels-experience { padding: 80px 5%; text-align: center; max-width: 1200px; margin: 0 auto; }
.reels-slider-wrap { display: flex; align-items: center; justify-content: center; gap: 60px; margin-top: 50px; }
.reel-nav-btn { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(15,23,42,.10); background: rgba(15,23,42,.035); color: #0f172a; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; }
.reel-nav-btn:hover { background: #3857f6; border-color: #3857f6; color: #fff; transform: scale(1.1); box-shadow: 0 10px 20px rgba(56,87,246,.3); }
.reel-display { width: 360px; height: 640px; position: relative; }
.reel-img-wrap { width: 100%; height: 100%; border-radius: 36px; overflow: hidden; box-shadow: 0 30px 60px rgba(15,23,42,.14), 0 0 40px rgba(56,87,246,0.15); border: 1px solid rgba(15,23,42,.05); position: relative; }
.reel-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s ease; }

/* ===== WHY FALFOX ===== */
.why-section {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.why-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(56,87,246,.06);
  border: 1px solid rgba(56,87,246,.18);
  padding: 7px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: #3b82f6;
  margin-bottom: 20px; width: fit-content;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.why-badge-dot {
  width: 8px; height: 8px; background: #3b82f6; border-radius: 50%;
  box-shadow: 0 0 8px rgba(59,130,246,.8);
  animation: pulse-dot 2s infinite;
}
.why-title {
  font-family: 'Epilogue', sans-serif;
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 700; color: #0f172a; margin-bottom: 20px; letter-spacing: -1px;
  line-height: 1.22;
}
.why-section h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #3857f6, #4f46e5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.why-desc { color: #475569; font-size: 16px; margin-bottom: 32px; line-height: 1.7; max-width: 460px; }
.why-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.why-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: #475569;
  background: rgba(15,23,42,.035);
  border: 1px solid rgba(15,23,42,.07);
  padding: 12px 16px; border-radius: 12px;
  transition: all .3s ease;
}
.why-feature:hover {
  background: rgba(15,23,42,.07);
  border-color: rgba(56,87,246,.3);
  transform: translateY(-2px);
}
.why-feature .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(56,87,246,.15); color: #4f46e5;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.why-visual-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.why-mockup-wrap {
  position: relative; width: 100%;
  animation: hero-float 6s ease-in-out infinite;
}
.why-main-img {
  width: 100%; border-radius: 16px; display: block;
  border: 1px solid rgba(15,23,42,.09);
  filter: drop-shadow(0 30px 60px rgba(15,23,42,.14)) drop-shadow(0 0 40px rgba(56,87,246,.1));
}

/* ===== INFLUENCER MARKETING ===== */
.influencer-inner {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.influencer-visual { position: relative; }
.influencer-collage-img {
  width: 100%; max-width: 440px; display: block; border-radius: 24px;
  filter: drop-shadow(0 30px 60px rgba(56,87,246,.14));
}
.influencer-content { padding-top: 24px; }
.influencer-content .section-label,
.influencer-content h2,
.influencer-content .section-desc { text-align: left; }
.influencer-content .section-desc { margin-left: 0; margin-right: 0; }
.influencer-content h2::after { margin-left: 0; }
.influencer-content .btn-primary { margin-top: 28px; }
@media (max-width: 900px) {
  .influencer-inner { grid-template-columns: 1fr; gap: 36px; }
  .influencer-visual { max-width: 380px; margin: 0 auto; }
  .influencer-content .section-label, .influencer-content h2, .influencer-content .section-desc { text-align: center; }
}

/* ===== RESULTS ===== */
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1280px; margin: 0 auto;
}
.result-card {
  background: rgba(15,23,42,.035);
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 16px; overflow: hidden;
  transition: all .4s;
}
.result-card:hover {
  border-color: rgba(56,87,246,.3); transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(56,87,246,.1);
}
.result-img {
  width: 100%; height: 180px; object-fit: cover;
  border-bottom: 1px solid rgba(15,23,42,.07);
}
.result-body { padding: 24px; }
.result-info h4 { font-size: 16px; color: #0f172a; font-weight: 600; margin-bottom: 4px; }
.result-info span { font-size: 12px; color: #4f46e5; font-weight: 500; }
.result-desc {
  font-size: 13px; color: #64748b; margin-top: 12px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.view-more-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #64748b; font-size: 14px; font-weight: 500;
  margin-top: 32px; transition: color .3s;
}
.view-more-link:hover { color: #4f46e5; }

/* ===== PROCESS ===== */
.process-steps {
  display: flex; justify-content: center; gap: 30px;
  max-width: 1200px; margin: 0 auto; position: relative;
  perspective: 1400px;
}
.process-step {
  flex: 1; text-align: center; position: relative; max-width: 260px;
}
/* Per-step connector: spans only the gap between this step's circle and the
   next one's (same geometry the old decorative ::after/::before used), so
   it can never visually pass under/overlap a circle the way a single line
   spanning the whole row would. Sits behind the circle (z-index) too, as a
   second layer of insurance. */
.step-connector {
  position: absolute; top: 30px; left: calc(50% + 35px); right: calc(-50% + 35px);
  height: 3px; z-index: 1;
  background: linear-gradient(90deg, #3857f6, #6366f1, #3857f6);
  background-size: 200% 100%;
  animation: process-line-shimmer 2.4s linear infinite;
  transform: scaleX(0); transform-origin: 0% 50%;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(56,87,246,.55), 0 0 4px rgba(99,102,241,.5);
}
.process-step:last-child .step-connector { display: none; }
@keyframes process-line-shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.step-icon-wrap { position: relative; margin-bottom: 16px; z-index: 5; }
.step-circle {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto;
  /* Opaque (not translucent) so it fully covers the progress line and its
     glow passing behind it — a see-through circle let the line show
     through and read as overlapping the icon. */
  background: #eef1ff;
  border: 2px solid rgba(56,87,246,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #4f46e5;
  transition: all .3s;
  animation: step-pulse 2s infinite;
  position: relative;
}
@keyframes step-pulse {
  0% { box-shadow: 0 0 0 0 rgba(56,87,246, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(56,87,246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56,87,246, 0); }
}
.process-step:hover .step-circle {
  background: linear-gradient(135deg, #3857f6, #6366f1);
  color: #fff; border-color: transparent;
  box-shadow: 0 10px 25px rgba(56,87,246,.4);
  animation: none;
}
.process-step:not(:last-child)::after {
  content: ''; position: absolute; top: 32px; left: calc(50% + 35px); right: calc(-50% + 35px);
  height: 2px; background: rgba(15,23,42,.05); z-index: -1;
}
.process-step:nth-child(1) .step-circle { animation-delay: 0s; }
.process-step:nth-child(2) .step-circle { animation-delay: 0.5s; }
.process-step:nth-child(3) .step-circle { animation-delay: 1.0s; }
.process-step:nth-child(4) .step-circle { animation-delay: 1.5s; }
.process-step:nth-child(5) .step-circle { animation-delay: 2.0s; }

.step-num {
  position: absolute; top: -4px; right: calc(50% - 40px);
  font-size: 12px; font-weight: 700; color: #4f46e5;
  background: #eef1ff; padding: 2px 8px; border-radius: 10px;
  border: 1px solid rgba(56,87,246,.3);
}
.process-step h4 { font-size: 17px; color: #0f172a; font-weight: 600; margin-bottom: 6px; }
.process-step p { font-size: 14px; color: #64748b; line-height: 1.6; }

/* ===== BUSINESS AUDIT & GROWTH STRATEGY ===== */
.audit-strategy-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  max-width: 1000px; margin: 0 auto;
}
.audit-strategy-card {
  display: block; background: #fff; border: 1px solid rgba(15,23,42,.07);
  border-radius: 20px; padding: 36px 32px; text-decoration: none;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.audit-strategy-card:hover {
  border-color: rgba(56,87,246,.3); transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(56,87,246,.12);
}
.audit-strategy-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 20px;
  background: linear-gradient(135deg, #3857f6, #6366f1);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 10px 24px rgba(56,87,246,.35);
}
.audit-strategy-card h3 { font-size: 20px; color: #0f172a; font-weight: 700; margin-bottom: 10px; }
.audit-strategy-card p { font-size: 14px; color: #64748b; line-height: 1.65; margin-bottom: 18px; }
.audit-strategy-link { font-size: 14px; font-weight: 600; color: #4f46e5; }
@media (max-width: 768px) {
  .audit-strategy-grid { grid-template-columns: 1fr; }
}

/* ===== SHARED PRODUCTION FOOTER + READABILITY PASS ===== */
.header-login,
.header-whatsapp { font-size: 12px; }

.site-footer { padding: 0 5%; }
.footer-shell { width: min(1240px,100%); margin: 0 auto; }
.footer-cta {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 48px;
  align-items: end; padding: 70px 0 54px; border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-cta span {
  display: block; margin-bottom: 15px; color: #64e6d3;
  font: 700 12px/1 'Inter',sans-serif; letter-spacing: .13em; text-transform: uppercase;
}
.footer-cta h2 {
  max-width: 780px; margin: 0; color: #fff;
  font: 700 clamp(31px,3.5vw,51px)/1.08 'Epilogue',sans-serif; letter-spacing: -.045em;
}
.footer-cta > a {
  display: inline-flex; min-height: 52px; padding: 0 21px; align-items: center; gap: 12px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 9px; background: #fff; color: #0b1026;
  font: 700 13px/1 'Epilogue',sans-serif; white-space: nowrap;
  transition: background .22s ease,border-color .22s ease,transform .22s ease;
}
.footer-cta > a:hover { border-color: #64e6d3; background: #64e6d3; transform: translateY(-2px); }
.footer-grid {
  grid-template-columns: minmax(290px,1.5fr) repeat(3,minmax(150px,1fr));
  padding: 58px 0 52px; align-items: start;
}
.footer-brand { padding-right: clamp(32px,5vw,70px); }
.footer-brand::before { font-size: 11px; }
.footer-brand img { width: auto; height: 34px; }
.footer-brand p { max-width: 420px; color: rgba(232,237,255,.68); font-size: 14px; line-height: 1.75; }
.footer-social { align-items: center; flex-wrap: wrap; }
.footer-social a {
  width: auto; height: 38px; padding: 0 13px; color: rgba(232,237,255,.7);
  font: 600 12px/1 'Inter',sans-serif;
}
.footer-col { padding: 4px clamp(18px,2.3vw,30px) 0; }
.footer-col h3 {
  margin: 0 0 20px; color: #fff;
  font: 700 12px/1 'Epilogue',sans-serif; letter-spacing: .09em; text-transform: uppercase;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col ul a { min-height: 34px; color: rgba(232,237,255,.65); font-size: 13px; line-height: 1.45; }
.footer-contact > a,
.footer-contact > span {
  display: block; margin-bottom: 14px; color: rgba(232,237,255,.68);
  font: 500 13px/1.5 'Inter',sans-serif; overflow-wrap: anywhere;
}
.footer-contact > a:hover { color: #fff; }
.footer-contact .footer-whatsapp {
  display: inline-flex; width: fit-content; min-height: 40px; margin-top: 7px; padding: 0 14px;
  align-items: center; border: 1px solid rgba(37,211,102,.42); border-radius: 8px;
  background: rgba(37,211,102,.1); color: #71e69d; font-weight: 700;
}
.footer-bottom-bar p { color: rgba(232,237,255,.56); font-size: 12px; line-height: 1.5; }
.footer-bottom-bar > div { display: flex; gap: 20px; }
.footer-bottom-bar a { color: rgba(232,237,255,.58); font: 600 12px/1 'Inter',sans-serif; }
.footer-bottom-bar a:hover { color: #fff; }

/* Body copy is intentionally kept at a readable floor outside compact app UIs. */
.section-desc,
.service-card p,
.feature-card p,
.solution-box p,
.client-card p,
.audit-strategy-card p,
.automation-item p,
.process-step p { font-size: 14px; line-height: 1.7; }
.section-label,
.cta-sub { font-size: 11px; }
.btn-primary,
.btn-outline,
.cta-btn-primary,
.cta-btn-outline { font-size: 12px; }

@media (max-width: 1024px) {
  .footer-cta { align-items: center; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-brand { grid-column: span 2; padding: 0 0 38px; }
  .footer-col { padding: 30px 24px 8px; }
  .footer-col:nth-child(even) { border-left: 0; }
}

@media (max-width: 768px) {
  .site-footer { padding: 0 20px; }
  .footer-cta { grid-template-columns: 1fr; gap: 28px; padding: 58px 0 44px; }
  .footer-cta h2 { font-size: 34px; }
  .footer-cta > a { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; padding: 44px 0 34px; }
  .footer-brand { grid-column: auto; padding-bottom: 34px; }
  .footer-col { padding: 27px 0 18px; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .footer-bottom-bar { min-height: 104px; align-items: flex-start; gap: 17px; padding: 22px 0; }
  .footer-bottom-bar > div { gap: 17px; flex-wrap: wrap; }
}

/* ===== AUTOMATION ===== */
.automation-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto 40px; position: relative;
}
/* A pipeline running behind the row with a glowing dot continuously
   traveling along it — "data flowing through an automation" reads
   instantly even before anything scrolls into view or gets hovered. */
.automation-pipeline {
  position: absolute; top: 49px; left: 5%; right: 5%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(56,87,246,.3) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.automation-pulse {
  position: absolute; top: 50%; left: 0; width: 10px; height: 10px; margin-top: -5px;
  border-radius: 50%; background: #3857f6;
  box-shadow: 0 0 12px 3px rgba(56,87,246,.7);
  animation: automation-travel 3.2s linear infinite;
}
@keyframes automation-travel {
  0% { left: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.automation-item {
  position: relative; z-index: 1;
  background: rgba(15,23,42,.03); border: 1px solid rgba(15,23,42,.07);
  border-radius: 16px; padding: 26px 22px; transition: border-color .3s, box-shadow .3s;
}
.automation-item:hover {
  border-color: rgba(56,87,246,.3); box-shadow: 0 16px 32px rgba(56,87,246,.1);
}
.automation-icon {
  position: relative; width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
  background: rgba(56,87,246,.1); border: 1px solid rgba(56,87,246,.25);
  display: flex; align-items: center; justify-content: center; color: #4f46e5;
  transition: background .3s, color .3s, border-color .3s;
}
/* A continuous, subtle signal-pulse ring on each icon — like a beacon
   emitting on repeat, independent of hover state. */
.automation-icon::after {
  content: ''; position: absolute; inset: 0; border-radius: 12px;
  border: 1.5px solid rgba(56,87,246,.5);
  animation: automation-signal 2.6s ease-out infinite;
}
.automation-item:nth-child(2) .automation-icon::after { animation-delay: .5s; }
.automation-item:nth-child(3) .automation-icon::after { animation-delay: 1s; }
.automation-item:nth-child(4) .automation-icon::after { animation-delay: 1.5s; }
@keyframes automation-signal {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.automation-item:hover .automation-icon {
  background: linear-gradient(135deg, #3857f6, #6366f1); color: #fff; border-color: transparent;
}
.automation-item h4 { font-size: 15px; color: #0f172a; font-weight: 600; margin-bottom: 8px; }
.automation-item p { font-size: 13px; color: #64748b; line-height: 1.6; }
@media (max-width: 768px) {
  .automation-grid { grid-template-columns: repeat(2, 1fr); }
  .automation-pipeline { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .automation-pulse, .automation-icon::after { animation: none; display: none; }
}

/* ===== TESTIMONIALS ===== */
.review-dots, .review-nav-btn { display: none; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.review-card {
  display: flex; flex-direction: column;
  background: rgba(15,23,42,.035);
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 16px; padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  height: 100%;
}
.review-card::before {
  content: '”'; position: absolute; top: 10px; right: 24px;
  font-family: Georgia, serif; font-size: 80px; color: rgba(15,23,42,.035);
  line-height: 1; z-index: 0; pointer-events: none;
}
.review-card:hover {
  border-color: rgba(56,87,246,.3); transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(56,87,246,.1);
}
.review-stars {
  color: #fbbf24; font-size: 18px; letter-spacing: 2px; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.review-text {
  flex: 1;
  font-size: 15px; color: #475569; line-height: 1.6;
  margin-bottom: 30px; font-style: italic; position: relative; z-index: 1;
}
.review-author { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #3857f6, #6366f1);
  color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.author-info strong { display: block; font-size: 16px; color: #0f172a; margin-bottom: 2px; }
.author-info span { font-size: 13px; color: #64748b; }

.review-letter-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 24px; padding: 11px 16px;
  background: rgba(15,23,42,.035); color: #64748b;
  border: 1px solid rgba(15,23,42,.09); border-radius: 10px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: .2px; cursor: pointer; position: relative; z-index: 1;
  transition: all .3s ease;
}
.review-letter-btn:hover {
  background: rgba(56,87,246,.08); border-color: rgba(56,87,246,.3); color: #1e3a8a;
}

/* ===== LETTERHEAD FEEDBACK MODAL ===== */
.letter-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 5%;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.letter-modal.active { opacity: 1; visibility: visible; }
.letter-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(5,5,16,.85); backdrop-filter: blur(6px);
}
.letter-modal-content {
  position: relative; z-index: 1;
  max-width: 560px; width: 100%; max-height: 85vh;
  background: #ffffff; border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px; padding: 20px;
  box-shadow: 0 30px 60px rgba(15,23,42,.14);
  transform: scale(.94); transition: transform .3s ease;
  display: flex; flex-direction: column; gap: 14px;
}
.letter-modal.active .letter-modal-content { transform: scale(1); }
.letter-modal-img {
  width: 100%; max-height: 65vh; object-fit: contain;
  border-radius: 10px; background: #fff;
}
.letter-modal-caption { text-align: center; font-size: 13px; color: #64748b; }
.letter-modal-close {
  position: absolute; top: -14px; right: -14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #3857f6; color: #fff; border: 3px solid #050510;
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.letter-modal-close:hover { transform: scale(1.1); }

/* ===== CTA BANNER REDESIGN ===== */
.cta-banner {
  background: linear-gradient(135deg, #3857f6 0%, #6366f1 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px; padding: 80px 40px;
  text-align: center; max-width: 1100px; margin: 0 auto;
  position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(56,87,246,.30);
}
.cta-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.cta-glow-1 {
  top: -50%; left: -20%;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, transparent 70%);
  animation: cta-pulse-1 9s ease-in-out infinite alternate;
}
.cta-glow-2 {
  bottom: -55%; right: -15%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(246,184,60,.16) 0%, transparent 70%);
  animation: cta-pulse-2 11s ease-in-out infinite alternate;
}
@keyframes cta-pulse-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(90px, 50px) scale(1.2); }
}
@keyframes cta-pulse-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-70px, -40px) scale(1.15); }
}
.cta-grid-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
.cta-banner h2 {
  font-family: 'Epilogue', sans-serif;
  color: #fff; margin-bottom: 20px;
  position: relative; z-index: 1;
  line-height: 1.1;
}
.cta-sub {
    font-size: 16px; font-weight: 700; color: rgba(255, 255, 255, 0.78);
    letter-spacing: 2.5px; text-transform: uppercase;
    display: block; margin-bottom: 12px;
}
.cta-main {
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800; display: block;
    letter-spacing: -1.5px;
}
.cta-highlight {
  background: linear-gradient(120deg, #ffe9b3, #f6b83c 55%, #ffe9b3);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: cta-highlight-shimmer 4s linear infinite;
}
@keyframes cta-highlight-shimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.88); font-size: 18px; margin: 0 auto 36px;
  max-width: 600px; position: relative; z-index: 1; line-height: 1.6;
}
.cta-buttons {
  display: flex; justify-content: center; gap: 20px;
  position: relative; z-index: 1; flex-wrap: wrap;
}
.cta-btn-primary {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}
.cta-btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #000000;
  box-shadow: 0 10px 30px rgba(255,255,255,.22);
}
.cta-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: #ffffff;
}
.cta-trust-row {
  position: relative; z-index: 1; display: flex; justify-content: center;
  gap: 28px; flex-wrap: wrap; margin-top: 32px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75);
}
@media (max-width: 640px) {
  .cta-trust-row { gap: 12px 20px; }
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; padding: 14px 28px;
  border-radius: 10px; font-weight: 600; font-size: 15px;
  border: 1px solid rgba(15,23,42,.16); cursor: pointer;
  transition: all .3s;
}
.btn-whatsapp:hover { border-color: #25d366; color: #25d366; }

/* ===== FOOTER ===== */
.site-footer {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 0 5%; border-top: 0;
  background:
    radial-gradient(circle at 10% 10%,rgba(82,103,255,.17),transparent 26%),
    linear-gradient(135deg,#101938 0%,#0b1026 70%);
  color: #fff;
}
.site-footer::before {
  content: ''; position: absolute; z-index: -1; inset: 0; opacity: .13;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right,black,transparent 76%);
}
.site-footer::after {
  content: ''; position: absolute; top: 0; left: 5%; width: 150px; height: 3px;
  background: linear-gradient(90deg,#64e6d3,#5267ff);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(300px,1.65fr) repeat(auto-fit,minmax(145px,1fr));
  gap: 0; max-width: 1240px; margin: 0 auto; padding: 78px 0 62px;
  align-items: stretch; border-bottom: 1px solid rgba(255,255,255,.11);
}
.footer-brand {
  width: 100%; padding: 0 64px 0 0;
}
.footer-col {
  width: 100%; padding: 4px 28px 0; border-left: 1px solid rgba(255,255,255,.1);
}
.footer-brand::before {
  content: 'FALFOX / DIGITAL ENGINES'; display: block; margin-bottom: 23px;
  color: #64e6d3; font: 700 8px/1 'Inter',sans-serif;
  letter-spacing: .16em; text-transform: uppercase;
}
.footer-brand img { width: auto; height: 34px; margin-bottom: 24px; }
.footer-brand p { max-width: 430px; margin-bottom: 26px; color: rgba(232,237,255,.56); font: 400 13px/1.75 'Inter',sans-serif; }
.footer-col h5 {
  margin-bottom: 22px; color: #fff;
  font: 700 10px/1 'Epilogue',sans-serif; letter-spacing: .1em; text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 4px; }
.footer-col ul a {
  position: relative; display: inline-flex; min-height: 31px; align-items: center; gap: 8px;
  color: rgba(232,237,255,.54); font: 500 11.5px/1.35 'Inter',sans-serif;
  transition: color .22s ease,transform .22s ease;
}
.footer-col ul a::before {
  content: ''; width: 0; height: 1px; background: #64e6d3;
  transition: width .22s ease;
}
.footer-col ul a:hover { color: #fff; transform: translateX(3px); }
.footer-col ul a:hover::before { width: 12px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(232,237,255,.56); margin-bottom: 10px;
}
.footer-contact-item svg { flex-shrink: 0; color: #64e6d3; }
.footer-bottom-bar {
  display: flex; max-width: 1240px; min-height: 74px; margin: 0 auto;
  padding: 0; align-items: center; justify-content: space-between;
  border-top: 0; text-align: left;
}
.footer-bottom-bar p { color: rgba(232,237,255,.38); font: 500 10px/1 'Inter',sans-serif; letter-spacing: .04em; }
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px;
  background: rgba(255,255,255,.045); color: rgba(232,237,255,.62);
  display: flex; align-items: center; justify-content: center;
  transition: color .22s ease,border-color .22s ease,background .22s ease,transform .22s ease;
}
.footer-social a:hover { transform: translateY(-2px); border-color: #64e6d3; background: rgba(100,230,211,.1); color: #64e6d3; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s, transform .7s; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; max-width: 600px; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-badge { margin: 0 auto 28px; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-stat { padding: 0 20px; }
  .hero-visual { display: none; }
  .hero-visual-mobile { display: block; max-width: 460px; margin: 40px auto; }
  .hero-phone { right: -20px; width: 32%; }
  .why-section { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; padding: 68px 0 52px; }
  .footer-brand { grid-column: span 2; margin: 0; padding: 0 0 44px; border-bottom: 1px solid rgba(255,255,255,.1); text-align: left; }
  .footer-brand p { max-width: 620px; margin: 0 0 24px; }
  .footer-col { padding: 32px 26px 10px; border-top: 1px solid rgba(255,255,255,.1); }
  .footer-col:nth-child(even) { border-left: 0; }
}
@media (max-width: 768px) {
  .section { padding: 50px 10px; }
  .container { padding: 0 !important; }
  .reviews-section { padding-bottom: 20px !important; }
  .cta-section { padding: 50px 10px !important; }
  .main-nav, .header-cta-wrap { display: none !important; }
  .mobile-toggle { display: flex; z-index: 10001; }
  .hero { padding: 75px 10px 40px; min-height: auto; }
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-stat { padding: 0; text-align: center; }
  .hero-stat:not(:last-child)::after { display: none; }
  .hero-stat h4 { font-size: 22px; }
  .services-grid { flex-direction: column; gap: 16px; }
  .service-card { min-width: 100%; padding: 32px 24px; }
  .reels-slider-wrap { gap: 24px; flex-wrap: wrap; }
  .reel-display { width: 100%; max-width: 320px; height: auto; aspect-ratio: 9/16; order: -1; margin: 0 auto; }
  .reel-nav-btn { width: 44px; height: 44px; font-size: 18px; }
  .results-grid { grid-template-columns: 1fr; }
  .reviews-grid { 
    display: flex; gap: 24px; overflow-x: auto; 
    scroll-snap-type: x mandatory; padding: 20px 0 40px;
    margin: 0 -5%; padding-left: 9%; padding-right: 9%;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card { 
    flex: 0 0 82%; scroll-snap-align: center;
    max-width: none; height: auto;
    padding: 30px 24px;
  }
  .author-avatar { width: 44px; height: 44px; font-size: 14px; }
  .author-info strong { font-size: 15px; }
  .author-info span { font-size: 12px; }
  .review-dots { 
    display: flex; justify-content: center; gap: 8px; margin-top: 10px; 
  }
  .review-dot { 
    width: 8px; height: 8px; border-radius: 50%; background: rgba(15,23,42,.14); 
    transition: all 0.4s; 
  }
  .review-dot.active { 
    width: 24px; border-radius: 10px; background: #3857f6; 
  }
  .why-section-centered { text-align: center; }
  .why-section { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 40px; }
  .why-content { width: 100%; max-width: 100%; }
  .why-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 0 auto; }
  .why-feature { background: rgba(15,23,42,.035); padding: 8px 16px; border-radius: 30px; border: 1px solid rgba(15,23,42,.07); }
  .why-visual-wrap { width: 100%; max-width: 500px; margin: 0 auto; }
  .process-steps { 
    flex-direction: column; align-items: flex-start; gap: 40px; 
    padding-left: 45px; border-left: 2px dashed rgba(56,87,246,0.15);
    margin: 40px 0 0 25px; text-align: left;
  }
  .process-section .section-header { text-align: center; align-items: center; }
  .process-title { 
    font-size: 32px; 
    line-height: 1.2;
    margin-top: 8px;
  }
  .hide-mobile { display: none; }
  .process-step { 
    position: relative; min-width: 100%; max-width: 100%; text-align: left; 
    background: rgba(15,23,42,.035);
    border: 1px solid rgba(15,23,42,.07);
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(15,23,42,.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .process-step.active {
    background: rgba(56,87,246,0.08);
    border-color: rgba(56,87,246,0.4);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(15,23,42,.07);
  }
  .process-step.active .step-circle {
    background: linear-gradient(135deg, #3857f6, #6366f1);
    color: #fff; border-color: transparent;
    box-shadow: 0 0 20px rgba(56,87,246,0.4);
    transform: scale(1.1);
  }
  .process-step:not(:last-child)::after { display: none; }
  .step-connector { display: none; }
  .step-icon-wrap { position: absolute; left: -68px; top: 50%; transform: translateY(-50%); margin: 0; }
  .step-circle { 
    width: 44px; height: 44px; font-size: 18px; 
    background: #ffffff; border: 1px solid rgba(56,87,246,0.4);
  }
  .step-num { 
    position: absolute; top: -6px; right: -8px; 
    font-size: 10px; padding: 2px 6px;
  }
  .process-step h4 { font-size: 17px; margin-bottom: 6px; }
  .process-step p { font-size: 14px; line-height: 1.5; }
  .cta-banner { 
    padding: 50px 20px; 
    border-radius: 24px; 
    background: radial-gradient(circle at top left, rgba(56,87,246,0.2), transparent 70%), linear-gradient(135deg, #0a0a2e 0%, #050510 100%);
    border: 1px solid rgba(56,87,246,0.3);
    margin: 0;
    width: 100%;
  }
  .cta-banner h2 { line-height: 1.1; }
  .cta-sub { font-size: 14px; letter-spacing: 0.5px; opacity: 0.9; }
  .cta-main { font-size: 28px; margin-top: 4px; color: #fff; }
  .cta-buttons { flex-direction: column; gap: 12px; width: 100%; max-width: 340px; margin: 0 auto; }
  .btn-whatsapp { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; align-items: flex-start; gap: 0; padding: 62px 0 38px; text-align: left; }
  .footer-brand { grid-column: span 1; margin: 0; padding: 0 0 34px; }
  .footer-brand img { margin: 0 0 20px; }
  .footer-col { width: 100%; padding: 26px 0 20px; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .footer-col h5::after { content: none; }
  .footer-bottom-bar { min-height: 66px; flex-direction: column; justify-content: center; gap: 8px; text-align: left; }
  .why-features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-phone { right: 0; width: 30%; bottom: -15px; }

  /* Global Service Page Fixes */
  .page-hero { padding: 80px 5% 60px !important; text-align: center !important; }
  .page-hero h1 { font-size: 34px !important; letter-spacing: -1px !important; line-height: 1.2 !important; }
  .page-hero p { font-size: 16px !important; margin: 0 auto !important; }
  .page-hero .reveal[style*="display: flex"] { flex-direction: column; gap: 12px !important; align-items: center; }
  .page-hero .btn-primary, .page-hero .btn-outline { width: 100%; max-width: 320px; justify-content: center; }

  .features-grid, .solutions-grid, .clients-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .feature-card, .solution-box, .client-card { padding: 30px 24px !important; text-align: center !important; align-items: center !important; }
  .solution-box { flex-direction: column !important; text-align: center !important; }
  .solution-number { margin-bottom: 10px; font-size: 40px !important; }
  .solution-list { text-align: left; display: inline-block; width: fit-content; margin: 0 auto; }

  .cta-banner { 
    padding: 50px 24px !important; text-align: center !important; 
    flex-direction: column !important; gap: 40px !important;
  }
  .cta-banner > div { flex: none !important; width: 100% !important; min-width: 0 !important; }
  .cta-banner h2 { font-size: 32px !important; margin-bottom: 20px !important; }
  .cta-banner p { font-size: 16px !important; }
  .cta-banner [style*="flex-direction: column"] { align-items: center !important; }

  .founder-section { flex-direction: column !important; text-align: center !important; gap: 40px !important; }
  .founder-info h2 { font-size: 32px !important; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* Mobile Nav Drawer Premium */
.mobile-nav {
  position: fixed; inset: 0; background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); z-index: 9999;
  left: auto; width: min(100%, 480px);
  padding: 100px 8% 60px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  opacity: 0; visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  overflow-y: auto;
  box-shadow: -30px 0 80px rgba(15,23,42,.16);
}
.mobile-nav-header {
  position: absolute; top: 0; left: 0; width: 100%;
  padding: 24px 8%; display: flex; justify-content: space-between; align-items: center;
  z-index: 10003;
}
.mobile-nav-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(15,23,42,0.05); border: 1px solid rgba(15,23,42,0.1);
  color: #0f172a; font-size: 20px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.mobile-nav-close:hover { background: rgba(15,23,42,.10); transform: rotate(90deg); }
.mobile-logo img { width: auto; height: 30px; }
.mobile-nav.open { 
  opacity: 1; visibility: visible; 
  transform: translateX(0);
}

.mobile-nav a, .mobile-dropdown-btn {
  font-size: 24px; color: #0f172a; padding: 20px 0;
  border-bottom: 1px solid rgba(15,23,42,.06);
  transition: all 0.4s;
  display: block; width: 100%; text-align: left;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'Epilogue', sans-serif; font-weight: 700; cursor: pointer;
  opacity: 0; transform: translateX(30px);
}

.mobile-nav.open a, .mobile-nav.open .mobile-dropdown-btn {
  opacity: 1; transform: translateX(0);
}

/* Staggered entry */
.mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open .mobile-dropdown { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav.open a:nth-child(8) { transition-delay: 0.4s; }
.mobile-nav.open .mobile-nav-cta { transition-delay: 0.45s; }

.mobile-nav a:hover, .mobile-dropdown-btn:hover { color: #3857f6; padding-left: 12px; }

.mobile-dropdown-btn {
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateX(30px);
}
.mobile-menu-title { display: inline-flex; align-items: center; gap: 9px; }
.mobile-menu-title .nav-beta-badge { min-height: 20px; padding: 0 7px; font-size: 8px; }
.mobile-dropdown-btn .arrow {
  font-size: 14px; transition: transform 0.3s; color: rgba(15,23,42,0.35);
}
.mobile-dropdown.active .mobile-dropdown-btn .arrow { transform: rotate(180deg); color: #3857f6; }

.mobile-dropdown-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(15,23,42,0.02);
  margin-top: -1px;
}
.mobile-dropdown.active .mobile-dropdown-content { max-height: 600px; border-bottom: 1px solid rgba(15,23,42,.06); }
.mobile-dropdown-content a {
  font-size: 17px; padding: 16px 28px; border: none; color: #64748b; font-weight: 500;
  opacity: 1 !important; transform: none !important;
}
.mobile-dropdown-content a:hover, .mobile-nav a.active { 
  background: rgba(56,87,246,0.12); 
  color: #3857f6; 
  padding-left: 36px; 
  border-left: 4px solid #3857f6; 
}
.mobile-nav a.active { border-bottom: 1px solid rgba(56,87,246,0.2); }

.mobile-nav-cta {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px;
  padding: 0;
  opacity: 0; transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.open .mobile-nav-cta { opacity: 1; transform: translateY(0); }
.mobile-nav-cta .btn-primary,
.mobile-nav-cta .btn-outline {
  display: flex !important; min-height: 50px; margin: 0 !important; padding: 0 14px !important;
  align-items: center; justify-content: center; border-radius: 10px; opacity: 1 !important;
  transform: none !important; font: 700 11px/1 'Epilogue',sans-serif !important;
}
.mobile-nav-cta .btn-primary { border: 1px solid #0b1026 !important; background: #0b1026 !important; color: #fff !important; }
.mobile-nav-cta .btn-outline { border: 1px solid rgba(15,23,42,.14) !important; background: #fff !important; color: #0b1026 !important; }

.mobile-nav::before {
  content: ''; position: absolute; top: -100px; right: -100px; 
  width: 300px; height: 300px; background: rgba(56,87,246,0.1);
  filter: blur(80px); border-radius: 50%; pointer-events: none;
}
.mobile-nav::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 150px;
    background: linear-gradient(to top, rgba(56,87,246,0.15), transparent);
    pointer-events: none; z-index: -1;
}


.hero-badge-crm {
  background: linear-gradient(135deg, #3857f6, #6366f1);
  border: none; color: #fff;
  box-shadow: 0 6px 20px rgba(56,87,246,.35);
}
.hero-home .hero-inner { grid-template-columns: 1.2fr 0.9fr; }
.hero-home h1 { font-size: clamp(28px, 2.35vw, 38px); }
.hero-home .hero-mockup-wrap { max-width: 480px; }

/* ===== HOMEPAGE EDITORIAL REDESIGN ===== */
#preloader { background: #0b1026; }
#scrollProgress { background: linear-gradient(90deg,#64e6d3,#5267ff,#ffd166); }

.hero-home {
  display: flex; min-height: max(760px,100svh); padding: 132px 5% 72px;
  align-items: center; color: #fff;
  background:
    radial-gradient(circle at 80% 20%,rgba(82,103,255,.32),transparent 27%),
    radial-gradient(circle at 12% 88%,rgba(100,230,211,.12),transparent 26%),
    linear-gradient(130deg,#101d39 0%,#0b1026 58%,#101938 100%);
}
.hero-home::before {
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right,black,transparent 78%);
}
.hero-home::after { height: 1px; background: linear-gradient(90deg,transparent,rgba(100,230,211,.5),transparent); }
.hero-home .hero-inner {
  max-width: 1160px; grid-template-columns: minmax(0,1.08fr) minmax(420px,.82fr);
  gap: clamp(50px,7vw,100px); text-align: left;
}
.hero-home .hero-text { position: relative; z-index: 2; }
.hero-home .hero-badge-crm {
  gap: 9px; margin: 0 0 27px; padding: 0;
  border: 0; border-radius: 0; background: transparent; box-shadow: none;
  color: #64e6d3; font: 700 9px/1 'Inter',sans-serif; letter-spacing: .14em;
}
.hero-home .hero-badge-crm::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.hero-home .hero-badge-crm svg { display: none; }
.hero-home h1 {
  max-width: 680px; margin: 0; color: #fff;
  font: 700 clamp(50px,5.4vw,76px)/1 'Epilogue',sans-serif; letter-spacing: -.064em;
}
.hero-home .gradient-text {
  color: transparent; background: linear-gradient(90deg,#64e6d3 0%,#b4f8ea 52%,#ffd166 100%);
  background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-home .hero-desc { max-width: 610px; margin: 28px 0 0; color: rgba(232,237,255,.64); font: 400 15px/1.78 'Inter',sans-serif; }
.hero-home .hero-buttons { gap: 12px; margin-top: 34px; }
.hero-home .btn-primary,
.hero-home .btn-outline { min-height: 50px; padding: 0 21px; border-radius: 9px; font: 700 11px/1 'Epilogue',sans-serif; }
.hero-home .btn-primary { border: 1px solid #fff; background: #fff; color: #0b1026; }
.hero-home .btn-primary:hover { background: #64e6d3; border-color: #64e6d3; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.hero-home .btn-outline { border-color: rgba(255,255,255,.18); color: #fff; }
.hero-home .btn-outline:hover { border-color: #64e6d3; background: rgba(100,230,211,.08); color: #64e6d3; }
.hero-home .hero-trust-stats {
  display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); max-width: 610px;
  gap: 0; margin-top: 48px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.11);
}
.hero-home .hero-trust-stat { gap: 5px; padding-right: 20px; }
.hero-home .hero-trust-stat strong { color: #fff; font: 700 25px/1 'Epilogue',sans-serif; }
.hero-home .hero-trust-stat:nth-child(1) strong { color: #64e6d3; }
.hero-home .hero-trust-stat:nth-child(2) strong { color: #ffd166; }
.hero-home .hero-trust-stat:nth-child(3) strong { color: #ff8b6a; }
.hero-home .hero-trust-stat span { color: rgba(232,237,255,.42); font: 600 9px/1.4 'Inter',sans-serif; letter-spacing: .04em; text-transform: uppercase; }
.hero-home .hero-visual { min-height: 520px; }
.hero-home .hero-3d-wrap { width: min(43vw,540px); height: min(43vw,540px); }
.hero-home .hero-glow { background: radial-gradient(circle,rgba(82,103,255,.2),transparent 70%); }

.home-services { padding: 112px 5%; background: #f2f5ff; }
.home-services .container,
.influencer-section .container,
.process-section .container,
.home-strategy .container,
.automation-section .container { max-width: 1160px; padding: 0; }
.home-services .section-header,
.home-strategy .section-header,
.automation-section .section-header {
  display: grid; grid-template-columns: minmax(0,.95fr) minmax(300px,.5fr);
  grid-template-rows: auto auto; align-items: end; gap: 12px 70px;
  margin-bottom: 52px; text-align: left;
}
.home-services .section-label,
.home-strategy .section-label,
.automation-section .section-label { grid-column: 1; grid-row: 1; margin: 0; }
.home-services .section-header h2,
.home-strategy .section-header h2,
.automation-section .section-header h2 {
  grid-column: 1; grid-row: 2; margin: 0; color: #0b1026;
  font: 700 clamp(39px,4.2vw,57px)/1.03 'Epilogue',sans-serif; letter-spacing: -.055em;
}
.home-services .section-desc,
.home-strategy .section-desc,
.automation-section .section-desc {
  grid-column: 2; grid-row: 1 / span 2; margin: 0; color: #667085; font: 400 13px/1.75 'Inter',sans-serif;
}
.home-services .section-label,
.influencer-section .section-label,
.process-section .section-label,
.automation-section .section-label { color: #5267ff; font: 700 9px/1 'Inter',sans-serif; letter-spacing: .15em; }
.home-services .services-grid {
  display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); max-width: none;
  gap: 0; border-top: 1px solid rgba(16,24,40,.12); border-bottom: 1px solid rgba(16,24,40,.12);
}
.home-services .service-card {
  width: auto; min-width: 0; max-width: none; min-height: 320px; padding: 32px 28px;
  border: 0; border-left: 1px solid rgba(16,24,40,.12); border-radius: 0;
  background: rgba(255,255,255,.7); box-shadow: none;
}
.home-services .service-card:first-child { border-left: 0; }
.home-services .service-card:nth-child(2) { background: rgba(100,230,211,.16); }
.home-services .service-card:nth-child(3) { background: rgba(255,209,102,.16); }
.home-services .service-card::before { top: auto; bottom: 0; height: 3px; background: #5267ff; }
.home-services .service-card:hover { border-color: rgba(16,24,40,.12); background: #fff; box-shadow: none; }
.home-services .service-icon {
  width: auto; height: auto; margin: 0 0 76px; border-radius: 0; background: transparent;
  color: #5267ff; font: 700 10px/1 'Inter',sans-serif; letter-spacing: .12em;
}
.home-services .service-card:hover .service-icon { background: transparent; color: #5267ff; }
.home-services .service-card h3 { margin-bottom: 12px; color: #0b1026; font: 700 21px/1.2 'Epilogue',sans-serif; }
.home-services .service-card p { color: #667085; font: 400 12px/1.7 'Inter',sans-serif; }

.statement-section {
  position: relative; padding: 132px 5%; overflow: hidden; background: #0b1026; text-align: left;
}
.statement-section::after {
  content: ''; position: absolute; width: 420px; height: 420px; right: -180px; top: -230px;
  border: 1px solid rgba(100,230,211,.15); border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(100,230,211,.025),0 0 0 120px rgba(100,230,211,.018);
}
.statement-section .container { max-width: 1160px; padding: 0; }
.statement-text { max-width: 1060px; margin: 0; color: #fff; font: 700 clamp(42px,5.8vw,78px)/1.07 'Epilogue',sans-serif; letter-spacing: -.06em; }
.statement-text em { color: #64e6d3; font-style: normal; }

.influencer-section { padding: 112px 5%; background: #fff; }
.influencer-inner { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 88px; align-items: center; max-width: none; }
.influencer-visual { padding: 18px; background: #101938; }
.influencer-collage-img { display: block; width: 100%; max-width: none; border: 1px solid rgba(100,230,211,.2); border-radius: 0; filter: none; }
.influencer-content { padding: 0; }
.influencer-content h2 { color: #0b1026; font: 700 clamp(38px,4.2vw,56px)/1.04 'Epilogue',sans-serif; letter-spacing: -.055em; }
.influencer-content .section-desc { max-width: 560px; color: #667085; font: 400 13px/1.75 'Inter',sans-serif; }
.influencer-content .btn-primary,
.automation-section .btn-primary { min-height: 49px; padding: 0 20px; border-radius: 8px; background: #0b1026; font: 700 11px/1 'Epilogue',sans-serif; }
.influencer-content .btn-primary:hover,
.automation-section .btn-primary:hover { background: #5267ff; box-shadow: none; }

.process-section { padding: 112px 5%; background: #f2f5ff; }
.process-section .section-header { max-width: 760px; margin: 0 0 66px; text-align: left; }
.process-section .section-header h2 { color: #0b1026; font: 700 clamp(39px,4.2vw,57px)/1.03 'Epilogue',sans-serif; letter-spacing: -.055em; }
.process-section .process-steps { max-width: none; gap: 0; }
.process-section .process-step { max-width: none; min-width: 0; padding: 0 16px; }
.process-section .process-step:first-child { padding-left: 0; }
.process-section .process-step:last-child { padding-right: 0; }
.process-section .step-circle { background: #fff; border-color: rgba(82,103,255,.25); color: #5267ff; }
.process-section .step-connector { background: linear-gradient(90deg,#5267ff,#64e6d3); box-shadow: 0 0 10px rgba(82,103,255,.3); }
.process-section .step-num { border-color: rgba(82,103,255,.25); background: #fff; color: #5267ff; }
.process-section .process-step h4 { color: #0b1026; font: 700 14px/1.3 'Epilogue',sans-serif; }
.process-section .process-step p { color: #667085; font: 400 11px/1.6 'Inter',sans-serif; }

.home-strategy { padding: 112px 5%; background: #101938; }
.home-strategy .section-label { color: #64e6d3; }
.home-strategy .section-header h2 { color: #fff; }
.home-strategy .section-desc { color: rgba(232,237,255,.58); }
.home-strategy .audit-strategy-grid { max-width: none; gap: 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.home-strategy .audit-strategy-card { min-height: 300px; padding: 34px; border: 0; border-left: 1px solid rgba(255,255,255,.12); border-radius: 0; box-shadow: none; }
.home-strategy .audit-strategy-card:first-child { border-left: 0; background: #64e6d3; }
.home-strategy .audit-strategy-card:last-child { background: rgba(255,255,255,.06); }
.home-strategy .audit-strategy-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: none; }
.home-strategy .audit-strategy-icon { width: 48px; height: 48px; margin-bottom: 70px; border-radius: 10px; background: #0b1026; box-shadow: none; }
.home-strategy .audit-strategy-card h3 { color: #0b1026; font: 700 22px/1.2 'Epilogue',sans-serif; }
.home-strategy .audit-strategy-card p { max-width: 520px; color: rgba(11,16,38,.65); font: 400 12px/1.7 'Inter',sans-serif; }
.home-strategy .audit-strategy-link { color: #0b1026; font: 700 10px/1 'Epilogue',sans-serif; }
.home-strategy .audit-strategy-card:last-child h3,
.home-strategy .audit-strategy-card:last-child .audit-strategy-link { color: #fff; }
.home-strategy .audit-strategy-card:last-child p { color: rgba(232,237,255,.58); }
.home-strategy .audit-strategy-card:last-child .audit-strategy-icon { background: #5267ff; }

.automation-section { padding: 112px 5%; background: #fff; }
.automation-section .automation-grid { max-width: none; gap: 0; margin-bottom: 44px; border-top: 1px solid rgba(16,24,40,.12); border-bottom: 1px solid rgba(16,24,40,.12); }
.automation-section .automation-pipeline { top: 54px; background: repeating-linear-gradient(90deg,rgba(82,103,255,.28) 0 8px,transparent 8px 16px); }
.automation-section .automation-pulse { background: #64e6d3; box-shadow: 0 0 12px 3px rgba(100,230,211,.65); }
.automation-section .automation-item { min-height: 250px; padding: 27px 22px; border: 0; border-left: 1px solid rgba(16,24,40,.12); border-radius: 0; background: transparent; box-shadow: none; }
.automation-section .automation-item:nth-child(2) { border-left: 0; }
.automation-section .automation-item:hover { border-color: rgba(16,24,40,.12); background: #f8f9fc; box-shadow: none; }
.automation-section .automation-icon { margin-bottom: 56px; border-radius: 10px; background: #f1f3ff; color: #5267ff; }
.automation-section .automation-item h4 { color: #0b1026; font: 700 15px/1.3 'Epilogue',sans-serif; }
.automation-section .automation-item p { color: #667085; font: 400 11px/1.65 'Inter',sans-serif; }

.cta-section { padding: 100px 5%; background: #f2f5ff; }
.cta-section .container { max-width: 1160px; padding: 0; }
.cta-section .cta-banner {
  max-width: none; padding: 86px 42px; border: 0; border-radius: 0;
  background: linear-gradient(135deg,#101938,#0b1026); box-shadow: none;
}
.cta-section .cta-grid-pattern { opacity: .4; background-size: 48px 48px; }
.cta-section .cta-sub { color: #64e6d3; font-size: 9px; letter-spacing: .16em; }
.cta-section .cta-main { max-width: 850px; margin: 0 auto; font-size: clamp(38px,5vw,66px); letter-spacing: -.055em; }
.cta-section .cta-highlight { color: #ffd166; background: none; -webkit-text-fill-color: currentColor; animation: none; }
.cta-section .cta-banner p { color: rgba(232,237,255,.6); font-size: 14px; }
.cta-section .cta-btn-primary { border-color: #fff; background: #fff; color: #0b1026; }
.cta-section .cta-btn-outline { border-color: rgba(255,255,255,.18); color: #fff; }
.cta-section .cta-trust-row { color: rgba(232,237,255,.45); }

@media (max-width: 980px) {
  .hero-home { min-height: auto; padding: 128px 5% 90px; }
  .hero-home .hero-inner { grid-template-columns: 1fr; gap: 55px; }
  .hero-home .hero-text { max-width: 760px; }
  .hero-home .hero-visual { min-height: 470px; }
  .hero-home .hero-3d-wrap { width: min(72vw,520px); height: min(72vw,520px); }
  .home-services .section-header,
  .home-strategy .section-header,
  .automation-section .section-header { grid-template-columns: 1fr; grid-template-rows: auto; gap: 14px; }
  .home-services .section-label,
  .home-services .section-header h2,
  .home-services .section-desc,
  .home-strategy .section-label,
  .home-strategy .section-header h2,
  .home-strategy .section-desc,
  .automation-section .section-label,
  .automation-section .section-header h2,
  .automation-section .section-desc { grid-column: 1; grid-row: auto; }
  .home-services .section-desc,
  .home-strategy .section-desc,
  .automation-section .section-desc { max-width: 680px; }
  .influencer-inner { gap: 52px; }
  .process-section .process-steps { display: grid; grid-template-columns: repeat(5,minmax(145px,1fr)); overflow-x: auto; justify-content: start; padding-bottom: 18px; }
}

@media (max-width: 768px) {
  .hero-home { min-height: auto; padding: 112px 20px 82px; }
  .hero-home .hero-inner { text-align: left; }
  .hero-home .hero-badge-crm { margin: 0 0 24px; }
  .hero-home h1 { font-size: clamp(42px,12.5vw,58px); }
  .hero-home .hero-desc { margin: 24px 0 0; font-size: 14px; }
  .hero-home .hero-buttons { justify-content: flex-start; }
  .hero-home .hero-buttons > * { width: 100%; justify-content: center; }
  .hero-home .hero-trust-stats { grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 38px; }
  .hero-home .hero-trust-stat { padding: 0 8px 0 0; text-align: left; }
  .hero-home .hero-trust-stat strong { font-size: 21px; }
  .hero-home .hero-trust-stat span { font-size: 7px; }
  .hero-home .hero-visual-mobile { display: block; margin: 34px 0 0; }
  .hero-home .hero-mockup-wrap { max-width: none; animation: none; }
  .hero-home .hero-laptop { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 0; filter: none; }
  .home-services,
  .influencer-section,
  .process-section,
  .home-strategy,
  .automation-section { padding: 78px 20px; }
  .home-services .section-header,
  .home-strategy .section-header,
  .automation-section .section-header { margin-bottom: 36px; }
  .home-services .section-header h2,
  .home-strategy .section-header h2,
  .automation-section .section-header h2,
  .process-section .section-header h2,
  .influencer-content h2 { font-size: 38px; }
  .home-services .services-grid { grid-template-columns: 1fr; }
  .home-services .service-card { min-height: 270px; padding: 28px 22px; border-left: 0; border-top: 1px solid rgba(16,24,40,.12); }
  .home-services .service-card:first-child { border-top: 0; }
  .home-services .service-icon { margin-bottom: 54px; }
  .statement-section { padding: 92px 20px; }
  .statement-text { font-size: 43px; }
  .influencer-inner { grid-template-columns: 1fr; gap: 40px; }
  .influencer-visual { padding: 18px; }
  .influencer-content .section-label,
  .influencer-content h2,
  .influencer-content .section-desc { text-align: left; }
  .influencer-content .btn-primary { width: 100%; justify-content: center; }
  .process-section .section-header { margin-bottom: 38px; }
  .process-section .process-steps { display: grid; grid-template-columns: 1fr; overflow: visible; padding: 0; }
  .process-section .process-step {
    display: grid; grid-template-columns: 58px minmax(0,1fr); max-width: none; min-width: 0;
    padding: 26px 0; text-align: left; border-top: 1px solid rgba(16,24,40,.12);
  }
  .process-section .process-step:first-child { padding-top: 0; border-top: 0; }
  .process-section .step-icon-wrap { position: relative; grid-column: 1; grid-row: 1 / span 2; left: auto; top: auto; margin: 0; transform: none; }
  .process-section .step-circle { width: 46px; height: 46px; margin: 0; }
  .process-section .step-num { top: -7px; right: 4px; font-size: 8px; padding: 2px 5px; }
  .process-section .process-step h4 { grid-column: 2; margin: 1px 0 6px; font-size: 15px; }
  .process-section .process-step p { grid-column: 2; font-size: 11px; }
  .process-section .step-connector,
  .process-section .process-step::after { display: none; }
  .home-strategy .audit-strategy-grid { grid-template-columns: 1fr; }
  .home-strategy .audit-strategy-card { min-height: 280px; padding: 28px 24px; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .home-strategy .audit-strategy-card:first-child { border-top: 0; }
  .automation-section .automation-grid { grid-template-columns: 1fr; }
  .automation-section .automation-item { min-height: 220px; padding: 27px 4px; border-left: 0; border-top: 1px solid rgba(16,24,40,.12); }
  .automation-section .automation-item:nth-child(2) { border-top: 0; }
  .automation-section .automation-icon { margin-bottom: 42px; }
  .automation-section .btn-primary { width: 100%; justify-content: center; }
  .cta-section { padding: 72px 20px; }
  .cta-section .cta-banner { padding: 64px 22px !important; }
  .cta-section .cta-main { font-size: 38px; }
}

/* Final marketing-page type scale. Product workspaces keep their compact UI density. */
.hero-home .hero-badge-crm,
.home-services .section-label,
.influencer-section .section-label,
.process-section .section-label,
.home-strategy .section-label,
.automation-section .section-label,
.cta-section .cta-sub { font-size: 11px; }
.hero-home .hero-desc { font-size: 16px; }
.hero-home .btn-primary,
.hero-home .btn-outline,
.influencer-content .btn-primary,
.automation-section .btn-primary { font-size: 13px; }
.hero-home .hero-trust-stat span { font-size: 11px; }
.home-services .section-desc,
.home-strategy .section-desc,
.automation-section .section-desc,
.influencer-content .section-desc { font-size: 15px; }
.home-services .service-card p,
.process-section .process-step p,
.home-strategy .audit-strategy-card p,
.automation-section .automation-item p { font-size: 14px; line-height: 1.7; }
.home-strategy .audit-strategy-link { font-size: 12px; }

.about-fact p { font-size: 14px !important; line-height: 1.7 !important; }
.about-fact a,
.about-intro-index,
.about-model-number,
.about-capability > span { font-size: 11px !important; }
.about-system-head span,
.about-system-row > span,
.about-fact dt,
.about-principle span,
.about-cta-copy span { font-size: 11px !important; }
.consult-focus p { font-size: 12px !important; line-height: 1.6 !important; }
.consult-board-head span,
.consult-focus-num,
.consult-board-chip span { font-size: 11px !important; }
.consult-tab-copy small,
.consult-service-meta,
.consult-service a,
.consult-section-label,
.consult-step-num,
.consult-model-index,
.consult-cta-copy span { font-size: 11px !important; }
.directory-fact span,
.directory-group-head span,
.directory-row > span:first-child,
.directory-audience span { font-size: 11px !important; }

@media (max-width: 768px) {
  .hero-home .hero-trust-stat span { font-size: 10px; }
  .home-services .section-desc,
  .home-strategy .section-desc,
  .automation-section .section-desc,
  .influencer-content .section-desc { font-size: 15px; }
  .process-section .process-step p { font-size: 14px; }
}

/* Keep the shared footer authoritative over legacy footer selectors above. */
.site-footer .footer-grid {
  grid-template-columns: minmax(290px,1.5fr) repeat(3,minmax(150px,1fr));
  padding: 58px 0 52px; align-items: start;
}
.site-footer .footer-brand { padding: 0 clamp(32px,5vw,70px) 0 0; }
.site-footer .footer-brand::before { font-size: 11px; }
.site-footer .footer-brand p { color: rgba(232,237,255,.68); font-size: 14px; line-height: 1.75; }
.site-footer .footer-col { padding: 4px clamp(18px,2.3vw,30px) 0; }
.site-footer .footer-col ul a { min-height: 34px; color: rgba(232,237,255,.65); font-size: 13px; line-height: 1.45; }
.site-footer .footer-social a { width: auto; height: 38px; padding: 0 13px; font: 600 12px/1 'Inter',sans-serif; }
.site-footer .footer-bottom-bar p { color: rgba(232,237,255,.56); font-size: 12px; line-height: 1.5; }

@media (max-width: 1024px) {
  .site-footer .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .site-footer .footer-brand { grid-column: span 2; padding: 0 0 38px; }
  .site-footer .footer-col { padding: 30px 24px 8px; }
  .site-footer .footer-col:nth-child(even) { border-left: 0; }
}

@media (max-width: 768px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; padding: 44px 0 34px; }
  .site-footer .footer-brand { grid-column: auto; padding: 0 0 34px; }
  .site-footer .footer-col { padding: 27px 0 18px; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
}
