/* ============================================
   ADFLARE — META ADS SPECIALIST
   Brand Colors:
   Obsidian Black: #0B0B0F
   Primary Red: #FF2B2B
   Deep Red: #B80000
   Steel Gray: #9CA3AF
   Light Gray: #E5E7EB
   Pure White: #FFFFFF
   ============================================ */

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

:root {
  --black: #0B0B0F;
  --black-alt: #111118;
  --primary-red: #FF2B2B;
  --deep-red: #B80000;
  --steel-gray: #9CA3AF;
  --light-gray: #E5E7EB;
  --white: #FFFFFF;
  --card-bg: #13131a;
  --border: rgba(255,43,43,0.15);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ============ NOISE TEXTURE 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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}

/* ============ NAVBAR ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(11, 11, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 5%;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-60px);
  animation: navLogoIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
}
.nav-logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
  color: var(--white);
}
.nav-logo-text span {
  color: var(--primary-red);
}
.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
  opacity: 0;
  transform: translateX(60px);
  animation: navLinksIn 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes navLogoIn {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes navLinksIn {
  to { opacity: 1; transform: translateX(0); }
}
.nav-links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-gray);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-nav a {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  opacity: 0;
  transform: translateX(40px);
  transition: color 0.2s, opacity 0.4s ease, transform 0.4s ease;
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateX(0);
}
.mobile-nav.open a:nth-child(1) { transition-delay: 0.12s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.18s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.24s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.36s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.42s; }
.mobile-nav a:hover { color: var(--primary-red); }
.mobile-nav-cta {
  background: var(--primary-red) !important;
  color: var(--white) !important;
  padding: 14px 40px !important;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ============ HERO ============ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
}

/* Animated background grid (removed per request) */
.hero-grid {
  display: none;
}

/* Radial glow */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,43,43,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 300px; height: 300px;
  background: rgba(255,43,43,0.08);
  top: 10%; left: -5%;
  animation-delay: 0s;
}
.orb-2 {
  width: 200px; height: 200px;
  background: rgba(184,0,0,0.06);
  bottom: 20%; right: -5%;
  animation-delay: -3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}


.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.hero-title .accent {
  color: var(--primary-red);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: var(--steel-gray);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.6s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.8s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-red);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover,
.btn-primary:active {
  background: var(--deep-red);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,43,43,0.35);
}
.btn-primary:hover::before,
.btn-primary:active::before { opacity: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
}
.btn-outline:hover,
.btn-outline:active {
  border-color: var(--primary-red);
  color: var(--primary-red);
  transform: translateY(-2px);
  background: rgba(255,43,43,0.05);
}

/* Hero stats */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 72px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease 1s forwards;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.stat-num span { color: var(--primary-red); }
.stat-label {
  font-size: 0.75rem;
  color: var(--steel-gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
}
@media (max-width: 500px) { .stat-divider { display: none; } }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.4s forwards;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary-red), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--steel-gray);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

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

/* ============ SECTION BASE ============ */
section {
  padding: 100px 5%;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 16px;
}
.section-title,
.promo-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* ============ TEXT ASSEMBLE ANIMATION ============ */
.section-title .word {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  vertical-align: top;
}
.section-title .word-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(70%) rotateZ(var(--wr, 8deg)) scale(0.8);
  transition: transform 0.7s cubic-bezier(.16,.84,.44,1), opacity 0.5s ease;
}
.section-title.assembled .word-inner {
  opacity: 1;
  transform: translateY(0) rotateZ(0deg) scale(1);
}

.section-desc {
  font-size: 1rem;
  color: var(--steel-gray);
  line-height: 1.7;
  max-width: 540px;
}

/* ============ ABOUT / INTRO SECTION ============ */
#about {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
}
.about-bg {
  position: absolute;
  top: -45%;
  left: 0;
  width: 100%;
  height: 160%;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f9 55%, #efeff2 100%);
  will-change: transform;
  z-index: 0;
}
#about::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -220px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,43,43,0.35) 0%, rgba(255,43,43,0.14) 45%, transparent 72%);
  filter: blur(60px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
#about::after {
  content: '';
  position: absolute;
  bottom: -12%;
  left: -220px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,43,43,0.22) 0%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.about-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 1024px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 90px;
    max-width: 1180px;
    text-align: left;
  }
  .about-content { align-items: flex-start; padding-top: 4px; }
  .about-content .section-label { justify-content: flex-start; }
  .about-metrics-wrap { margin: 0; max-width: 460px; }
  .about-intro { max-width: 460px; margin-bottom: 24px; }
  .section-title,
  .promo-title { font-size: clamp(2rem, 2.6vw, 2.6rem); }
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.6) rotate(-12deg);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.34,1.56,.64,1);
  filter: drop-shadow(0 8px 20px rgba(255,43,43,0.25));
}
.reveal.visible .about-logo {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.about-content .section-label { justify-content: center; }
.about-metrics-wrap {
  width: 100%;
  max-width: 460px;
  margin: 48px auto 0;
}
.about-intro {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #52525b;
  margin-top: 20px;
  margin-bottom: 36px;
  max-width: 680px;
}
.about-intro strong {
  color: var(--primary-red);
  font-weight: 700;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  text-align: left;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #3f3f46;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--primary-red);
  border-radius: 50%;
  margin-top: 7px;
}

#about .section-title { color: var(--black); }

/* ============ PROMO BANNERS (poster-style light sections) ============ */
.promo-banner {
  position: relative;
  background: var(--white);
  color: var(--black);
  overflow: hidden;
  padding: 90px 5%;
}
.promo-title {
  font-weight: 800;
  line-height: 1.1;
  color: var(--black);
}
.promo-title .accent { color: var(--primary-red); }
.promo-sub {
  font-family: 'Sora', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: #444;
  margin-top: 14px;
}
.promo-sub strong { color: var(--primary-red); font-weight: 700; }

/* --- Banner 1: "We Just Fit" (stacked / centered, like the reference poster) --- */
.fit-banner .promo-stack {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fit-banner .promo-cta {
  margin-top: 28px;
}
.fit-banner .promo-graphic {
  width: clamp(280px, 60vw, 760px);
  margin-top: 48px;
}
.fit-banner .promo-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Banner 2: "Make Your Online Presence Strong" (side-by-side + contact bar) --- */
.presence-banner { overflow: hidden; padding-bottom: 80px; }
.presence-banner .promo-side {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.presence-banner .promo-text { max-width: 480px; }
.presence-banner .promo-graphic {
  width: clamp(220px, 50vw, 480px);
}
.presence-banner .promo-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .presence-banner .promo-side {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 48px;
  }
}
@media (max-width: 640px) {
  .promo-banner { padding: 64px 6%; }
}

/* ============ SERVICES ============ */
#services {
  background: var(--black);
  position: relative;
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.services-slider-wrap {
  position: relative;
  max-width: 100vw;
}
/* ============ INDUSTRIES MARQUEE ============ */
.industries-wrap {
  margin-top: 0;
  padding-top: 70px;
  text-align: center;
}
.industries-label {
  justify-content: center;
  display: flex;
}
.industries-title {
  margin-bottom: 64px;
}
.industries-marquee {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 15%, #000 85%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 15%, #000 85%, transparent 100%);
}
.industries-track {
  display: flex;
  align-items: flex-start;
  gap: 88px;
  width: max-content;
  animation: industriesScroll 36s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.industries-marquee:hover .industries-track {
  animation-play-state: running;
}
@keyframes industriesScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 160px;
  flex-shrink: 0;
}
.industry-icon {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a9aa3;
  transition: color 0.3s ease, transform 0.3s ease;
}
.industry-icon svg { width: 50px; height: 50px; }
.industry-item:hover .industry-icon {
  color: var(--primary-red);
  transform: translateY(-4px);
}
.industry-item span {
  font-family: 'Sora', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #c4c4cc;
  text-align: center;
  line-height: 1.3;
}
/* ---- Mobile: two opposite-direction rows ---- */
.industries-marquee-mobile { display: none; }
.industries-track-reverse {
  animation-direction: reverse;
}
.industries-marquee-mobile .industries-marquee { margin-bottom: 18px; }
.industries-marquee-mobile .industries-marquee:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .industries-wrap { margin-top: 0; padding-top: 12px; }
  .industries-title { margin-bottom: 44px; }
  .industries-track { gap: 56px; animation-duration: 26s; }
  .industry-item { width: 120px; }
  .industry-icon { width: 56px; height: 56px; }
  .industry-icon svg { width: 36px; height: 36px; }

  .industries-marquee-desktop { display: none; }
  .industries-marquee-mobile { display: block; }
  .industries-marquee-mobile .industries-marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }
}

.services-slider {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  touch-action: pan-y;
  /* Fade the edges instead of hard-cropping card text when a card peeks in/out of view */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.services-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 6px 0 6px 5%;
  will-change: transform;
  cursor: grab;
  user-select: none;
}
.services-track.dragging {
  cursor: grabbing;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
  flex: 0 0 auto;
  width: min(82vw, 300px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--deep-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover,
.service-card:active {
  border-color: rgba(255,43,43,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: rgba(255,43,43,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-red);
  transition: background 0.3s, transform 0.3s;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card:hover .service-icon,
.service-card:active .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-card:hover .service-icon,
.service-card:active .service-icon {
  background: rgba(255,43,43,0.2);
}
.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  opacity: 1;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--steel-gray);
  line-height: 1.65;
  opacity: 1;
}
.service-card-soon {
  border-style: dashed;
  border-color: rgba(255,43,43,0.3);
}
.service-card-soon .service-icon {
  background: rgba(255,255,255,0.05);
  color: var(--steel-gray);
}
.service-card-soon:hover .service-icon,
.service-card-soon:active .service-icon {
  background: rgba(255,43,43,0.15);
  color: var(--primary-red);
}
.soon-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,43,43,0.12);
  border: 1px solid rgba(255,43,43,0.4);
  color: var(--primary-red);
  font-family: 'Sora', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
  animation: addonPulseGlow 2.2s ease-in-out infinite;
}

/* ============ PRICING ============ */
#pricing {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,43,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 56px;
  text-align: center;
}
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-desc { margin-left: auto; margin-right: auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: linear-gradient(180deg, rgba(255,43,43,0.06), var(--card-bg) 40%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.price-card-clickable {
  cursor: pointer;
}
.price-card:hover,
.price-card:active {
  transform: translateY(-8px);
  border-color: rgba(255,43,43,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.price-card.featured {
  transform: scale(1.045);
  z-index: 2;
  border-color: rgba(255,43,43,0.5);
}
.price-card.featured:hover,
.price-card.featured:active {
  transform: scale(1.045) translateY(-8px);
  border-color: rgba(255,43,43,0.75);
}
.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-red);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  animation: badgeFloat 2.4s ease-in-out infinite, badgeGlow 2.4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 8px 20px rgba(255,43,43,0.4); }
  50% { box-shadow: 0 8px 30px rgba(255,43,43,0.85); }
}
.price-card-head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.price-card-head h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}
.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-red), #ff7a7a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-period {
  font-size: 0.85rem;
  color: var(--steel-gray);
}
.price-desc {
  font-size: 0.85rem;
  color: var(--steel-gray);
  line-height: 1.6;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
  margin-bottom: 32px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.5;
}
.price-features .check {
  width: 16px; height: 16px;
  min-width: 16px;
  margin-top: 2px;
  color: var(--primary-red);
}
.price-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.view-offer-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  margin-top: 12px;
  padding: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel-gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}
.view-offer-btn:hover { color: var(--primary-red); }

/* ============ OFFER MODAL ============ */
.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.offer-modal.open {
  opacity: 1;
  pointer-events: all;
}
.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.offer-modal-content {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 85vh;
  overflow-y: auto;
  background: linear-gradient(180deg, rgba(255,43,43,0.07), var(--card-bg) 40%);
  border: 1px solid rgba(255,43,43,0.4);
  border-radius: 18px;
  padding: 40px 30px 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  /* Thin, theme-colored scrollbar instead of the default bulky browser one */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,43,43,0.5) transparent;
}
.offer-modal-content::-webkit-scrollbar {
  width: 6px;
}
.offer-modal-content::-webkit-scrollbar-track {
  background: transparent;
}
.offer-modal-content::-webkit-scrollbar-thumb {
  background: rgba(255,43,43,0.45);
  border-radius: 10px;
}
.offer-modal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255,43,43,0.7);
}
@media (min-width: 640px) {
  .offer-modal-content { max-width: 480px; }
}
.offer-modal.open .offer-modal-content {
  transform: translateY(0) scale(1);
}
.offer-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.offer-modal-close:hover {
  background: rgba(255,43,43,0.15);
  border-color: rgba(255,43,43,0.4);
}
.offer-modal-badge {
  display: none;
  background: var(--primary-red);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.offer-modal-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.offer-modal-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.offer-modal-amount {
  font-family: 'Sora', sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-red), #ff7a7a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.offer-modal-period {
  font-size: 0.85rem;
  color: var(--steel-gray);
}
.offer-modal-desc {
  font-size: 0.9rem;
  color: var(--steel-gray);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.offer-modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.offer-modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.5;
}
.offer-modal-features .check {
  width: 17px; height: 17px;
  min-width: 17px;
  margin-top: 2px;
  color: var(--primary-red);
}
.offer-modal-cta {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1000px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-card.featured { transform: scale(1); order: -1; }
  .price-card.featured:hover { transform: translateY(-8px); }
}

/* ChatGPT-Plus-style stacked pricing cards on mobile: one full-width card at a time */
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 20px;
  }
  .price-card {
    padding: 28px 24px;
    border-radius: 22px;
    text-align: left;
  }
  .price-card.featured,
  .price-card.featured:hover,
  .price-card.featured:active {
    transform: none;
    background: linear-gradient(160deg, rgba(255,43,43,0.28), rgba(184,0,0,0.4) 55%, var(--card-bg) 100%);
    border-color: rgba(255,43,43,0.6);
  }
  .price-card:hover,
  .price-card:active {
    transform: none;
  }
  .price-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    bottom: auto;
    transform: none;
    animation: none;
    box-shadow: none;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    padding: 5px 12px;
  }
  .price-card-head {
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .price-card-head h3 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel-gray);
    margin-bottom: 14px;
  }
  .price-card.featured .price-card-head h3 { color: rgba(255,255,255,0.8); }
  .price-tag {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 10px;
  }
  .price-amount { font-size: 2.1rem; }
  .price-period { font-size: 0.85rem; }
  .price-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--light-gray);
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .price-features {
    gap: 15px;
    margin-bottom: 6px;
  }
  .price-features li {
    font-size: 0.85rem;
    line-height: 1.5;
    gap: 10px;
  }
  .price-features .check {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 2px;
  }
  .price-cta {
    border-radius: 100px;
    padding: 15px 24px;
    font-size: 0.85rem;
    margin-top: 22px;
  }
  .view-offer-btn {
    font-size: 0.75rem;
    margin-top: 14px;
    padding: 4px;
  }
}

/* Add-on services */
.addons-wrap {
  max-width: 1000px;
  margin: 72px auto 0;
  text-align: center;
}
.addons-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  text-align: left;
}
.addon-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.addon-item:hover,
.addon-item:active {
  border-color: rgba(255,43,43,0.4);
  transform: translateY(-3px);
  background: rgba(255,43,43,0.05);
}
.addon-name {
  font-size: 0.85rem;
  color: var(--light-gray);
  font-weight: 500;
}
.addon-price {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-red);
  white-space: nowrap;
}
.addon-item-soon {
  border-style: dashed;
  border-color: rgba(255,43,43,0.35);
  background: rgba(255,43,43,0.03);
}
.addon-badge-soon {
  font-family: 'Sora', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  background: rgba(255,43,43,0.14);
  border: 1px solid rgba(255,43,43,0.45);
  padding: 5px 11px;
  border-radius: 20px;
  white-space: nowrap;
  animation: addonPulseGlow 2.2s ease-in-out infinite;
}
@keyframes addonPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,43,43,0.4); }
  50% { box-shadow: 0 0 0 7px rgba(255,43,43,0); }
}
@media (max-width: 640px) {
  .addons-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .addon-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px;
  }
  .addon-name {
    font-size: 0.76rem;
    line-height: 1.3;
  }
  .addon-price {
    font-size: 0.74rem;
  }
  .addon-badge-soon {
    font-size: 0.6rem;
    padding: 4px 9px;
  }
}
.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 10px 20px;
  background: rgba(255,43,43,0.08);
  border: 1px solid rgba(255,43,43,0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--steel-gray);
}
.pricing-note svg {
  width: 16px; height: 16px;
  color: var(--primary-red);
  flex-shrink: 0;
}

/* ============ WHY US ============ */
#why {
  background: var(--black-alt);
  position: relative;
  overflow: hidden;
  padding: 80px 5% 90px;
}
#why::after {
  content: 'META ADS';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: 'Sora', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,43,43,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
}
.why-header {
  text-align: center;
}
.why-header .section-label { justify-content: center; }
.why-header .section-title { margin-bottom: 12px; }
.why-header .section-desc { margin-left: auto; margin-right: auto; }
.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 30px;
  margin-top: 26px;
  text-align: center;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.why-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 0.1em;
}
.why-item h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-item p {
  font-size: 0.85rem;
  color: var(--steel-gray);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}
.metrics-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.metrics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px rgba(0,0,0,0.28);
}
.metrics-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
  transform: scaleX(0);
  transition: transform 3s ease;
}
.metrics-card.chart-visible::before { transform: scaleX(1); }

/* --- Dashboard growth chart --- */
.chart-block {
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}
.chart-block-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px;
  gap: 12px;
}
.chart-block-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-gray);
  display: block;
}
.chart-block-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 3s ease, transform 3s ease;
}
.metrics-card.chart-visible .chart-block-value {
  opacity: 1;
  transform: translateY(0);
}
.chart-trend {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--primary-red);
  background: rgba(255,43,43,0.12);
  border: 1px solid rgba(255,43,43,0.3);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.chart-wrap {
  position: relative;
}
.growth-chart {
  width: 100%;
  height: 130px;
  display: block;
  overflow: visible;
}
.chart-line {
  stroke: var(--primary-red);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  filter: drop-shadow(0 0 6px rgba(255,43,43,0.65));
  transition: stroke-dashoffset 3s cubic-bezier(.65,0,.35,1);
}
.chart-area {
  opacity: 0;
  transition: opacity 2s ease 1s;
}
.chart-dot {
  fill: var(--primary-red);
  opacity: 0;
  transition: opacity 0.6s ease 2.4s;
}
.chart-dot-pulse {
  fill: none;
  stroke: var(--primary-red);
  stroke-width: 2;
  opacity: 0;
  transform-origin: 400px 3px;
}
.metrics-card.chart-visible .chart-line { stroke-dashoffset: 0; }
.metrics-card.chart-visible .chart-area { opacity: 1; }
.metrics-card.chart-visible .chart-dot { opacity: 1; }
.metrics-card.chart-visible .chart-dot-pulse {
  animation: chartPulse 1.8s ease-out infinite;
  animation-delay: 3s;
}
@keyframes chartPulse {
  0% { r: 4.5; opacity: 0.7; }
  100% { r: 15; opacity: 0; }
}
.metrics-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-gray);
  margin-bottom: 24px;
}
.metric-row {
  margin-bottom: 20px;
}
.metric-label-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.82rem;
  color: var(--steel-gray);
}
.metric-label-row span:last-child {
  color: var(--primary-red);
  font-weight: 700;
}
.metric-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-red), var(--deep-red));
  border-radius: 3px;
  width: 0;
  position: relative;
  overflow: hidden;
  transition: width 3s cubic-bezier(.65,0,.35,1);
}
.metric-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: metricShimmer 2.6s ease-in-out infinite;
  animation-delay: 3s;
}
@keyframes metricShimmer {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.metrics-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 24px;
}
.mf-item { }
.mf-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.mf-val span { color: var(--primary-red); }
.mf-key {
  font-size: 0.72rem;
  color: var(--steel-gray);
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 560px) {
  .why-list { column-gap: 16px; row-gap: 22px; }
  .why-item { flex-direction: column; gap: 6px; }
  .why-num { min-width: 0; }
  .why-item h4 { font-size: 0.85rem; }
  .why-item p { font-size: 0.78rem; }
}

/* ============ CONTACT ============ */
#contact {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,43,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.contact-wrapper .section-label { justify-content: center; }
.contact-intro {
  font-size: 1rem;
  color: var(--steel-gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 56px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover,
.contact-card:active {
  border-color: rgba(255,43,43,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(255,43,43,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-red);
  transition: background 0.3s, transform 0.3s;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card:hover .contact-card-icon,
.contact-card:active .contact-card-icon { transform: scale(1.08); }
.contact-card:hover .contact-card-icon,
.contact-card:active .contact-card-icon {
  background: rgba(255,43,43,0.2);
}
.contact-card-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-gray);
}
.contact-card-val {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .contact-card {
    padding: 14px 8px;
    gap: 8px;
    border-radius: 10px;
  }
  .contact-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }
  .contact-card-icon svg { width: 16px; height: 16px; }
  .contact-card-type {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
  }
  .contact-card-val {
    font-size: 0.62rem;
    line-height: 1.3;
    word-break: break-word;
    text-align: center;
  }
}

.contact-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ FOOTER ============ */
footer {
  background: var(--black-alt);
  border-top: 1px solid var(--border);
  padding: 48px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.5px;
  color: var(--white);
}
.footer-logo span { color: var(--primary-red); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--steel-gray);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--steel-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-red); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--steel-gray);
  transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.social-icon svg {
  width: 17px;
  height: 17px;
}
.social-icon:hover {
  color: var(--white);
  border-color: var(--primary-red);
  background: var(--primary-red);
  transform: translateY(-3px);
}

/* ============ FLOATING ACTION BUTTONS ============ */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 400;
}
.fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.fab:hover,
.fab:active { transform: scale(1.1) translateY(-2px); }
.fab-wa {
  background: #25D366;
  color: var(--white);
}
.fab-wa:hover,
.fab-wa:active { box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

.fab-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(11,11,15,0.95);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.75rem;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.fab:hover .fab-tooltip { opacity: 1; }

/* ============ COMING SOON GLASS TOAST ============ */
.glass-toast {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  width: calc(100% - 40px);
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  --drag-x: 0px;
  transform: translate(-50%, -140%);
  opacity: 0;
  pointer-events: none;
  cursor: grab;
  touch-action: pan-y;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}
.glass-toast.show {
  transform: translate(calc(-50% + var(--drag-x, 0px)), 0);
  opacity: 1;
  pointer-events: auto;
}
.glass-toast.dragging {
  cursor: grabbing;
  transition: none;
}
.glass-toast.dismissing {
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.glass-toast-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,43,43,0.18);
  border: 1px solid rgba(255,43,43,0.35);
  color: var(--primary-red);
}
.glass-toast-icon svg { width: 19px; height: 19px; }
.glass-toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.glass-toast-text strong {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: -0.2px;
}
.glass-toast-text span {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.35;
  white-space: nowrap;
}
.glass-toast-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  transition: transform 0.2s, filter 0.2s;
}
.glass-toast-cta svg { width: 18px; height: 18px; }
.glass-toast-cta:hover { transform: scale(1.08); filter: brightness(1.08); }

/* ============ WHATSAPP CHAT WIDGET ============ */
.wa-chat-widget {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 336px;
  max-width: calc(100vw - 40px);
  background: #F0F2EF;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 450;
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(16px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.wa-chat-widget.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}
.wa-chat-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 24px;
  background: linear-gradient(120deg, #3fd68c 0%, #1fa974 60%, #0e8f66 100%);
  color: var(--white);
}
.wa-chat-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.wa-chat-close:hover { background: rgba(255,255,255,0.32); }
.wa-chat-avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.wa-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.55);
}
.wa-chat-info { min-width: 0; }
.wa-chat-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--white);
}
.wa-verified-badge { flex-shrink: 0; }
.wa-chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-top: 2px;
}
.wa-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #baffce;
  box-shadow: 0 0 0 3px rgba(186,255,206,0.25);
}
.wa-chat-body {
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,0.02) 0%, transparent 40%),
    #EAE8E1;
  padding: 20px 18px 16px;
  min-height: 90px;
}
.wa-chat-bubble {
  background: var(--white);
  color: #1f2a24;
  font-size: 0.88rem;
  line-height: 1.55;
  padding: 12px 14px;
  border-radius: 4px 14px 14px 14px;
  max-width: 88%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-chat-bubble strong { color: #0e8f66; }
.wa-chat-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 18px;
  background: #EAE8E1;
}
.wa-chat-footer input {
  flex: 1;
  border: 1.5px solid #cfd3cd;
  background: var(--white);
  border-radius: 24px;
  padding: 11px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}
.wa-chat-footer input::placeholder { color: #9aa39c; }
.wa-chat-footer input:focus { border-color: #1fa974; }
.wa-chat-send {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: none;
  background: #1fa974;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.wa-chat-send:hover { background: #0e8f66; transform: scale(1.06); }

@media (max-width: 480px) {
  .wa-chat-widget { right: 20px; bottom: 90px; width: calc(100vw - 40px); }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-slide-left {
  transform: translateX(-70px);
  transition: opacity 2s ease, transform 2s ease;
}
.reveal-slide-left.visible {
  transform: translateX(0);
}
.reveal-slide-right {
  transform: translateX(70px);
  transition: opacity 2s ease, transform 2s ease;
}
.reveal-slide-right.visible {
  transform: translateX(0);
}

/* Staggered reveal for list/grid items nested inside a .reveal block */
.reveal .feature-list li,
.reveal .why-item,
.reveal .price-features li,
.reveal .addon-item,
.reveal .contact-card {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible .feature-list li,
.reveal.visible .why-item,
.reveal.visible .price-features li,
.reveal.visible .addon-item,
.reveal.visible .contact-card {
  opacity: 1;
  transform: translateY(0);
}
.feature-list li:nth-child(1), .why-item:nth-child(1), .price-features li:nth-child(1), .addon-item:nth-child(1), .contact-card:nth-child(1) { transition-delay: .05s; }
.feature-list li:nth-child(2), .why-item:nth-child(2), .price-features li:nth-child(2), .addon-item:nth-child(2), .contact-card:nth-child(2) { transition-delay: .10s; }
.feature-list li:nth-child(3), .why-item:nth-child(3), .price-features li:nth-child(3), .addon-item:nth-child(3), .contact-card:nth-child(3) { transition-delay: .15s; }
.feature-list li:nth-child(4), .why-item:nth-child(4), .price-features li:nth-child(4), .addon-item:nth-child(4) { transition-delay: .20s; }
.feature-list li:nth-child(5), .why-item:nth-child(5), .price-features li:nth-child(5), .addon-item:nth-child(5) { transition-delay: .25s; }
.price-features li:nth-child(6), .addon-item:nth-child(6) { transition-delay: .30s; }
.price-features li:nth-child(7), .addon-item:nth-child(7) { transition-delay: .35s; }
.price-features li:nth-child(8), .addon-item:nth-child(8) { transition-delay: .40s; }
.price-features li:nth-child(9) { transition-delay: .45s; }
.price-features li:nth-child(10) { transition-delay: .50s; }
.price-features li:nth-child(11) { transition-delay: .55s; }
.price-features li:nth-child(12) { transition-delay: .60s; }
.price-features li:nth-child(13) { transition-delay: .65s; }
.addon-item:nth-child(9) { transition-delay: .45s; }

/* ============ BACK TO TOP ============ */
.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px; height: 44px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--steel-gray);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: 400;
}
.back-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-top:hover,
.back-top:active {
  background: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-3px);
}
.back-top svg { display: block; }

/* ============ SELECTION ============ */
::selection {
  background: rgba(255,43,43,0.3);
  color: var(--white);
}

/* ============ PROCESS / TIMELINE ============ */
#process {
  position: relative;
  text-align: center;
  padding: 0;
  min-height: 78vh;
  height: auto;
}
.process-pin {
  position: static;
  min-height: 78vh;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 72px 5% 56px;
}
.process-header { margin-bottom: 64px; }
.process-header .section-label { justify-content: center; }

.process-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.process-line {
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-red), var(--deep-red));
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.65;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-line-tip {
  position: absolute;
  top: 48px;
  left: 8%;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--primary-red);
  box-shadow: 0 0 14px 4px rgba(255,43,43,0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.process-track.scrubbing .process-line-tip { opacity: 1; }

@media (min-width: 641px) {
  .process-line-tip { display: none; }
}

.process-step {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.process-step.visible { opacity: 1; transform: translateX(0); }

@media (min-width: 641px) {
  #process.process-started .process-step.step-revealed {
    opacity: 1;
    transform: translateX(0);
  }
}

.process-icon-wrap { position: relative; z-index: 1; }
.process-icon-arch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 92px;
  border-radius: 50% 50% 6px 6px;
  background: linear-gradient(180deg, var(--card-bg), var(--black-alt));
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(255,43,43,0.05) inset, 0 18px 30px -14px rgba(0,0,0,0.6);
  color: var(--primary-red);
  transform: scale(0.86);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.process-step.visible .process-icon-arch {
  transform: scale(1);
  border-color: rgba(255,43,43,0.4);
  box-shadow: 0 0 26px -6px rgba(255,43,43,0.55), 0 18px 30px -14px rgba(0,0,0,0.6);
}
.process-icon-arch svg { width: 32px; height: 32px; }
.process-step:hover .process-icon-arch {
  transform: translateY(-4px) scale(1);
  border-color: rgba(255,43,43,0.5);
  box-shadow: 0 0 28px -4px rgba(255,43,43,0.6), 0 18px 30px -14px rgba(0,0,0,0.6);
}
.process-step-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1.35;
  max-width: 200px;
  transition: color 0.4s ease;
}
.process-step.visible .process-step-title { color: var(--white); }

@media (max-width: 900px) {
  .process-track { gap: 20px; }
  .process-icon-arch { width: 68px; height: 80px; }
  .process-icon-arch svg { width: 27px; height: 27px; }
  .process-step-title { font-size: 0.8rem; max-width: 140px; }
  .process-line, .process-line-tip { top: 40px; }
}

@media (max-width: 640px) {
  #process { padding: 70px 0; min-height: 0; height: auto; }
  .process-pin {
    position: static;
    min-height: 0;
    height: auto;
    padding: 0 5%;
  }
  .process-track {
    flex-direction: column;
    align-items: center;
    gap: clamp(160px, 38vh, 300px);
  }
  .process-line {
    top: 0;
    left: 50%;
    right: auto;
    bottom: 0;
    width: 2px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top center;
    background: linear-gradient(180deg, var(--primary-red), var(--deep-red));
  }
  .process-line-tip {
    top: 0;
    left: 50%;
    margin-top: -5px;
    margin-left: -5px;
  }
  .process-step {
    transform: translateX(0) translateY(36px);
    max-width: 260px;
  }
  .process-step.visible { transform: translateX(0) translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .hero-stats { gap: 28px; }
  .fab-group { bottom: 20px; right: 20px; }
  .back-top { bottom: 20px; left: 20px; }
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .glass-toast {
    top: 12px;
    padding: 12px 14px;
    gap: 10px;
    width: calc(100% - 24px);
  }
  .glass-toast-text span { font-size: 0.72rem; white-space: normal; }
}
