/* ================================================================
   Future Communication — Landing Page Stylesheet
   Production-ready · Audit-validated · v2.0
================================================================ */

/* ----------------------------------------------------------------
   1. CUSTOM PROPERTIES
---------------------------------------------------------------- */
:root {
  /* Brand colours */
  --navy:         #010F28;
  --navy-mid:     #054477;
  --blue:         #0080F8;
  --blue-hover:   #0070E0;
  --blue-light:   #3399FF;
  --blue-pale:    #EAF4FF;

  /* Text */
  --text-dark:    #111827;
  --text-mid:     #374151;
  --text-muted:   #6B7280;

  /* Surfaces */
  --white:        #FFFFFF;
  --off-white:    #F9FAFB;
  --glass-bg:     rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.10);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm:   0 2px 8px rgba(0,0,0,0.06);
  --sh-md:   0 8px 32px rgba(0,0,0,0.10);
  --sh-lg:   0 20px 60px rgba(0,0,0,0.14);
  --sh-blue: 0 8px 32px rgba(0,128,248,0.25);
  --sh-card: 0 4px 24px rgba(0,80,200,0.09);

  /* Timing */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --tr:         0.3s var(--ease);

  /* Layout */
  --max-w:      1200px;
  --nav-h:      76px;   /* height of floating nav pill */
  --section-v:  96px;

  /* Nav */
  --nav-top:    16px;
  --nav-bg:     rgba(1,15,40,0.72);
  --nav-bg-s:   rgba(1,15,40,0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* Scroll offset so fixed nav doesn't hide section headings */
section { scroll-margin-top: calc(var(--nav-h) + var(--nav-top) + 20px); }

/* ----------------------------------------------------------------
   3. ACCESSIBILITY
---------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -999px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  border-radius: 0 0 var(--r-md) var(--r-md);
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------------------------------------------
   4. SCROLL-REVEAL ANIMATIONS
---------------------------------------------------------------- */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  will-change: opacity, transform;
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------------
   5. SHARED COMPONENTS
---------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Section label (eyebrow) */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.section-eyebrow.light { color: rgba(255,255,255,0.55); }

/* Section title */
.section-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.022em;
  color: var(--text-dark);
}
.section-title b { font-weight: 700; }
.section-title.white      { color: var(--white); }
.section-title.white b    { color: var(--blue-light); }

/* Section header block */
.section-header { margin-bottom: 56px; }

/* ----------------------------------------------------------------
   6. BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), background var(--tr);
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  box-shadow: 0 12px 40px rgba(0,128,248,0.38);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}

.btn-outline-white2 {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.40);
}
.btn-outline-white2:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   7. NAVIGATION
---------------------------------------------------------------- */
#navbar {
  position: fixed;
  top: var(--nav-top);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  pointer-events: none; /* let clicks through except on pill */
}

.nav-wrapper {
  pointer-events: all;
  max-width: calc(var(--max-w) + 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h) !important;
  padding: 0 28px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  box-shadow: none;
  transition: background 0.45s var(--ease),
              backdrop-filter 0.45s var(--ease),
              -webkit-backdrop-filter 0.45s var(--ease),
              box-shadow 0.45s var(--ease),
              border-color 0.45s var(--ease);
}

/* Scrolled state — translucent glassmorphism (not opaque) */
#navbar.is-scrolled .nav-wrapper {
  height: var(--nav-h) !important;
  background: rgba(1,15,40,0.80);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 8px 48px rgba(0,0,0,0.30), 0 1px 0 rgba(255,255,255,0.07) inset;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
  transition: opacity var(--tr);
}
.nav-logo:hover { opacity: 0.85; }

.logo-icon { display: flex; align-items: center; }
.logo-icon svg { transition: transform var(--tr); }
.nav-logo:hover .logo-icon svg { transform: scale(1.06) rotate(-2deg); }


/* Nav logo image */
.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  filter: brightness(1.15) contrast(1.05);
}

.logo-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  border-radius: var(--r-full);
  letter-spacing: 0.01em;
  transition: color var(--tr), background var(--tr);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: rgba(0,128,248,0.80);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.28s var(--ease);
  transform-origin: center;
}
.nav-link:hover {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.065);
}
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active {
  color: rgba(255,255,255,0.95);
  font-weight: 500;
}

/* Contact link — subtle accent pill */
.nav-contact {
  color: rgba(255,255,255,0.85);
  background: rgba(0,128,248,0.15);
  border: 1px solid rgba(0,128,248,0.30);
}
.nav-contact:hover {
  background: rgba(0,128,248,0.28);
  border-color: rgba(0,128,248,0.55);
  color: var(--white);
}
.nav-contact::after { display: none; }

/* Right-side */
.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}


/* ----------------------------------------------------------------
   LANGUAGE SWITCHER DROPDOWN
---------------------------------------------------------------- */
.nav-lang {
  position: relative;
}
.nav-lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: none;
  background: transparent;
  transition: color var(--tr), background var(--tr);
  user-select: none;
  font-family: var(--font-body);
}
.nav-lang-btn:hover, .nav-lang.is-open .nav-lang-btn {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.08);
}
.nav-lang-btn i { font-size: 10px; transition: transform 0.2s ease; }
.nav-lang.is-open .nav-lang-btn i { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: rgba(5,18,45,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,128,248,0.20);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.40);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
}
.nav-lang.is-open .lang-dropdown { display: flex; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  font-family: var(--font-body);
  text-align: left;
}
.lang-option:hover, .lang-option.is-active {
  background: rgba(0,128,248,0.15);
  color: #fff;
}
.lang-option.is-active { color: var(--blue-light); }


/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr);
}
.nav-toggle:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
}
.toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.82);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}
/* Open state */
.nav-toggle.is-open .toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu dropdown */
.mobile-menu {
  pointer-events: all;
  position: absolute;
  top: calc(100% + 8px);
  left: 20px;
  right: 20px;
  background: rgba(1,15,40,0.97);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.40);
  transform: translateY(-10px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: top center;
  visibility: hidden;
}
.mobile-menu.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--r-md);
  transition: color var(--tr), background var(--tr);
}
.mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.mobile-cta {
  color: var(--blue-light);
  background: rgba(0,128,248,0.12);
  border: 1px solid rgba(0,128,248,0.22);
  text-align: center;
  margin-top: 8px;
}
.mobile-cta:hover { background: rgba(0,128,248,0.22); border-color: rgba(0,128,248,0.40); }
.mobile-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  padding: 12px 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 12px;
}

/* ----------------------------------------------------------------
   8. HERO SECTION
---------------------------------------------------------------- */
#banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--navy);
  padding-top: calc(var(--nav-h) + var(--nav-top) * 2);
}
.hero-bg {
  position: absolute;
  inset: -5%;
  background-image: url('https://futurecomm.eu/wp-content/uploads/2025/08/97d3076a82d618fe74e7fdbb548b0ca6-1-scaled-e1754323822274.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.42);
  transform: scale(1.0);
  will-change: transform;
  transition: transform 0s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(1,15,40,0.75) 0%, rgba(1,15,40,0.52) 55%, rgba(5,68,119,0.38) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px 80px;
}

/* Hero entrance animations */
.hero-badge   { animation: heroFadeUp 0.65s var(--ease) 0.20s both; }
.hero-title   { animation: heroFadeUp 0.70s var(--ease) 0.40s both; }
.hero-sub     { animation: heroFadeUp 0.70s var(--ease) 0.60s both; }
.hero-actions { animation: heroFadeUp 0.70s var(--ease) 0.78s both; }
.hero-scroll  { animation: heroFadeIn 0.70s var(--ease) 1.10s both, scrollBounce 2.2s ease-in-out 1.8s infinite; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(0,128,248,0.16);
  border: 1px solid rgba(0,128,248,0.32);
  color: #7DC8FF;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
  font-size: clamp(36px, 6.2vw, 68px);
  font-weight: 500;
  line-height: 1.10;
  letter-spacing: -0.032em;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title b {
  font-weight: 700;
  background: linear-gradient(118deg, #60B4FF 0%, #FFFFFF 58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2.1vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.42);
  font-size: 22px;
  transition: color var(--tr);
  will-change: transform;
}
.hero-scroll:hover { color: rgba(255,255,255,0.80); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ----------------------------------------------------------------
   9. ABOUT US
---------------------------------------------------------------- */
#about-us { padding: var(--section-v) 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--r-xl);
  transition: transform 0.65s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,128,248,0.05) 0%, transparent 55%);
  border-radius: var(--r-xl);
  pointer-events: none;
}

.about-text h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.about-text h2 b { font-weight: 700; }
.about-text > p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.about-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(0,128,248,0.18) 100%);
  border-radius: 3px;
  margin-bottom: 28px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,128,248,0.12);
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(0,128,248,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
}
.about-feature-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ----------------------------------------------------------------
   10. PROCESS
---------------------------------------------------------------- */
#process {
  padding: var(--section-v) 0;
  background: var(--blue-pale);
}
#process .section-header { text-align: center; }

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

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 26px 36px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,128,248,0.08);
  box-shadow: var(--sh-card);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 52px rgba(0,80,200,0.16);
  border-color: rgba(0,128,248,0.22);
}

.process-step-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  opacity: 0.55;
  margin-bottom: 16px;
}
.process-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,128,248,0.32);
  transition: transform var(--tr), box-shadow var(--tr);
}
.process-card:hover .process-icon {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(0,128,248,0.42);
}
.process-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.process-arrow {
  position: absolute;
  top: 42px;
  right: -15px;
  width: 30px;
  height: 30px;
  background: var(--white);
  border: 2px solid rgba(0,128,248,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 11px;
  z-index: 2;
  box-shadow: var(--sh-sm);
}

/* ----------------------------------------------------------------
   11. SERVICES
---------------------------------------------------------------- */
#services {
  position: relative;
  padding: var(--section-v) 0;
  background-color: var(--navy);
  overflow-x: hidden;
  overflow-y: visible;
}
.svc-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://futurecomm.eu/wp-content/uploads/2025/08/10298b5802e0e3a3c5b42ac024073087-rotated-e1754321113581.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.16;
  filter: blur(3px) brightness(0.48);
  will-change: auto;
}
#services .container { position: relative; z-index: 1; }
#services .section-header { text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--tr), border-color var(--tr), transform var(--tr), box-shadow var(--tr);
}
.svc-card:hover {
  background: rgba(0,128,248,0.08);
  border-color: rgba(0,128,248,0.55);
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.36), 0 0 0 1px rgba(0,128,248,0.20), 0 8px 32px rgba(0,128,248,0.18);
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 22px;
  box-shadow: 0 4px 16px rgba(0,128,248,0.38);
  transition: transform var(--tr), box-shadow var(--tr);
}
.svc-card:hover .svc-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(0,128,248,0.52);
}
.svc-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.svc-card p {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  margin-bottom: 24px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-light);
  transition: color var(--tr), gap var(--tr);
}
.svc-link i { font-size: 12px; transition: transform var(--tr); }
.svc-link:hover { color: #7DC8FF; }
.svc-link:hover i { transform: translateX(4px); }

/* ----------------------------------------------------------------
   12. PORTFOLIO HEADER
---------------------------------------------------------------- */
#portfolio-header {
  padding: var(--section-v) 0 48px;
  background: var(--navy);
  text-align: center;
}

/* ----------------------------------------------------------------
   13. PORTFOLIO GRID
---------------------------------------------------------------- */
#projects {
  background: var(--navy);
  padding-bottom: 0;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0;
  background: #020c1e;
  border-radius: 0;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--navy);
  border-radius: 0;
  border: none;
  outline: none;
  box-shadow: none;
  transition: opacity 0.35s ease,
              box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform   0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-item:hover {
  box-shadow: 0 22px 60px rgba(0,0,0,0.28),
              0 0 0 1px rgba(0,128,248,0.15);
  transform: scale(1.025);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* GPU-accelerated zoom only */
  transform: scale(1.0);
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.portfolio-item:hover img {
  transform: scale(1.10);
}

/* Overlay: gradient always present, full scrim on hover */

.portfolio-item:hover 

/* Micro-tag above label */
.portfolio-overlay::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.38s ease 0.05s,
              transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94) 0.05s;
}
.portfolio-item:hover .portfolio-overlay::before {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(8px);
  opacity: 0.75;
  transition: color   0.40s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.40s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity   0.40s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform, opacity;
}
.portfolio-item:hover .portfolio-label {
  color: var(--white);
  transform: translateY(0);
  opacity: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

/* ----------------------------------------------------------------
   14. STATS / REACH — Premium Redesign
---------------------------------------------------------------- */
#reach {
  position: relative;
  padding: calc(var(--section-v) * 1.25) 0;
  background: linear-gradient(160deg, #010F28 0%, #021830 40%, #031e3c 70%, #010F28 100%);
  overflow: hidden;
}

/* Ambient glow blobs */
#reach::before,
#reach::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
#reach::before {
  width: 500px; height: 500px;
  top: -120px; left: -100px;
  background: rgba(0,80,200,0.14);
}
#reach::after {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: rgba(0,128,248,0.09);
}

/* Two-column layout: content left, map right */
.reach-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 72px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

/* Left column */
.reach-content {
  display: flex;
  flex-direction: column;
}
.reach-content h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.028em;
  margin-top: 12px;
  margin-bottom: 48px;
}
.reach-content h2 b {
  font-weight: 800;
  background: linear-gradient(118deg, #60B4FF 0%, #FFFFFF 65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Stats row */
.reach-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

/* Right column: SVG world map */
.reach-map-col {
  position: relative;
  display: flex;
  flex-direction: column;
}
.reach-map-svg {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  display: block;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35),
              0 0 0 1px rgba(0,128,248,0.12);
}

/* CSS-animated pulse dots inside the SVG */
.reach-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: reachPulse 2.8s ease-in-out infinite;
}
.reach-pulse.d1 { animation-delay: 0.55s; }
.reach-pulse.d2 { animation-delay: 1.10s; }
.reach-pulse.d3 { animation-delay: 1.65s; }
.reach-pulse.d4 { animation-delay: 2.20s; }
.reach-pulse.d5 { animation-delay: 0.55s; }
.reach-pulse.d6 { animation-delay: 1.85s; }

@keyframes reachPulse {
  0%, 100% { transform: scale(1);   opacity: 0.90; }
  50%       { transform: scale(2.8); opacity: 0.10; }
}

@media (prefers-reduced-motion: reduce) {
  .reach-pulse { animation: none !important; opacity: 0.85; }
}

/* Glowing pulse dots */
.map-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(0,128,248,0.6);
  animation: mapPulse 2.8s ease-in-out infinite;
  transform: translate(-50%, -50%);
}
.map-dot::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(0,128,248,0.18);
  animation: mapRing 2.8s ease-in-out infinite;
}
.map-dot--delay1 { animation-delay: 0.55s; }
.map-dot--delay1::before { animation-delay: 0.55s; }
.map-dot--delay2 { animation-delay: 1.1s; }
.map-dot--delay2::before { animation-delay: 1.1s; }
.map-dot--delay3 { animation-delay: 1.65s; }
.map-dot--delay3::before { animation-delay: 1.65s; }
.map-dot--delay4 { animation-delay: 2.2s; }
.map-dot--delay4::before { animation-delay: 2.2s; }

@keyframes mapPulse {
  0%   { box-shadow: 0 0 0 0    rgba(0,128,248,0.7); }
  50%  { box-shadow: 0 0 18px 12px rgba(0,128,248,0); }
  100% { box-shadow: 0 0 0 0    rgba(0,128,248,0); }
}
@keyframes mapRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(3.5); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

/* Stat cards — inside the glass strip */
.stat-card {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: background var(--tr);
}
.stat-card:hover {
  background: rgba(255,255,255,0.04);
}
.stat-card + .stat-card {
  border-left: 1px solid rgba(255,255,255,0.08);
  /* no ::before pseudo-element needed — using border-left */
}
.stat-icon {
  width: 52px; height: 52px;
  background: rgba(0,128,248,0.14);
  border: 1px solid rgba(0,128,248,0.24);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 20px;
  margin: 0 auto 20px;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.stat-card:hover .stat-icon {
  background: rgba(0,128,248,0.24);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,128,248,0.28);
}
.stat-number {
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #FFFFFF 40%, rgba(0,128,248,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   15. TESTIMONIALS
---------------------------------------------------------------- */
#testimonials {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: '"';
  position: absolute;
  top: -50px;
  left: 3%;
  font-size: 340px;
  font-family: Georgia, serif;
  color: rgba(0,128,248,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
#testimonials .container { position: relative; z-index: 1; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,128,248,0.28);
  transform: translateY(-5px);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.testi-stars i { color: #FBBF24; font-size: 13.5px; }

.testi-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 15.5px;
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  font-style: italic;
}
.testi-quote::before { content: '\201C'; }
.testi-quote::after  { content: '\201D'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--blue) 0%, #0050C0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.testi-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 2px;
}
.testi-role {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
}

/* ----------------------------------------------------------------
   16. ADVANTAGES
---------------------------------------------------------------- */
#advantages {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
#advantages .section-header { text-align: center; }

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.adv-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--sh-sm);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}
.adv-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-md);
  border-color: rgba(0,128,248,0.14);
}
.adv-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background var(--tr), transform var(--tr);
}
.adv-card:hover .adv-icon {
  background: rgba(0,128,248,0.14);
  transform: scale(1.06);
}
.adv-icon i { font-size: 20px; color: var(--blue); }
.adv-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.adv-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ----------------------------------------------------------------
   17. CTA (merged with contact channels)
---------------------------------------------------------------- */
#cta {
  padding: var(--section-v) 0;
  background: #f4f7fc;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Ambient glow blobs */
.cta-glow-l,
.cta-glow-r {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.cta-glow-l {
  width: 420px; height: 420px;
  top: -80px; left: -80px;
  background: rgba(0,128,248,0.14);
}
.cta-glow-r {
  width: 320px; height: 320px;
  bottom: -60px; right: -60px;
  background: rgba(0,80,192,0.18);
}

#cta .container { position: relative; z-index: 1; }

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-inner .section-eyebrow { margin-bottom: 18px; }
#cta h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.28;
  letter-spacing: -0.024em;
  margin-bottom: 14px;
}
.cta-sub {
  font-size: 16px;
  color: #4B5563;
  margin-bottom: 40px;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   18. RESPONSIVE
---------------------------------------------------------------- */

/* Tablet landscape / large tablet: ≤ 1100px */
@media (max-width: 1100px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid  { grid-template-columns: repeat(2, 1fr); }
  .process-grid     { grid-template-columns: repeat(2, 1fr); }
  .process-arrow    { display: none; }
  .reach-layout     { gap: 48px; grid-template-columns: 1fr 1.1fr; }
  .portfolio-grid   { gap: 10px; }
}

/* Tablet portrait / large mobile: ≤ 900px */
@media (max-width: 900px) {
  :root { --section-v: 72px; }

  /* Nav — show hamburger, hide desktop links */
  .nav-links       { display: none; }
  .nav-lang span:last-of-type { display: none; }
  .nav-toggle      { display: flex; }

  .about-grid        { grid-template-columns: 1fr; gap: 44px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid    { grid-template-columns: repeat(2, 1fr); }

  .reach-layout    { grid-template-columns: 1fr; gap: 40px; }
  .reach-map-col   { max-width: 600px; margin: 0 auto; width: 100%; aspect-ratio: 16/9; }
  .stat-card       { padding: 28px 32px; }
  .portfolio-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {
  :root {
    --section-v: 56px;
    --nav-top: 10px;
  }
  .container { padding: 0 18px; }

  .nav-wrapper   { padding: 0 16px; height: 58px; border-radius: 18px; }
  .mobile-menu   { left: 10px; right: 10px; }
  .nav-lang      { display: none; }

  .services-grid   { grid-template-columns: 1fr; gap: 14px; }
  .advantages-grid { grid-template-columns: 1fr; gap: 14px; }
  .process-grid    { grid-template-columns: 1fr; gap: 14px; }
  .portfolio-grid  { grid-template-columns: 1fr; gap: 10px; padding: 0 18px; }

  .reach-stats     { flex-direction: column; border-radius: var(--r-md); }
  .stat-card       { padding: 24px 28px; width: 100%; }
  .stat-card + .stat-card { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }

  .hero-title      { font-size: 34px; }
  .hero-sub        { font-size: 15px; }
  .hero-actions    { flex-direction: column; max-width: 300px; margin: 0 auto; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  #portfolio-header { padding: 56px 0 32px; }
  #projects         { padding-bottom: 56px; }

  .about-grid { gap: 36px; }
  .about-img-wrap { border-radius: var(--r-lg); }

  .testimonial-card { padding: 28px 22px; }
  .process-card     { padding: 24px 22px; }
  .svc-card         { padding: 28px 22px; }
  .adv-card         { padding: 28px 22px; }

  .reach-map-col  { max-width: 100%; }
  .cta-inner      { max-width: 100%; }
  #cta h2         { font-size: 22px; }
}

/* Very small: ≤ 380px */
@media (max-width: 380px) {
  .hero-title    { font-size: 30px; }
  .stat-number   { font-size: 36px; }
  .section-title { font-size: 22px; }
}

/* ----------------------------------------------------------------
   19. TOUCH / MOBILE — fix background-attachment: fixed
   iOS Safari doesn't render fixed backgrounds correctly.
---------------------------------------------------------------- */
.no-fixed-bg .hero-bg,
.no-fixed-bg .svc-bg {
  background-attachment: scroll;
  filter: blur(1px) brightness(0.42);
}

/* ----------------------------------------------------------------
   20. PREFERS-REDUCED-MOTION
---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  /* force marquee even under reduced-motion */
  .marquee-inner {
    animation-duration: 35s !important;
    animation-iteration-count: infinite !important;
    flex-wrap: nowrap;
  }
  .map-dot,
  .map-dot::before {
    animation: none !important;
  }
}

/* ----------------------------------------------------------------
   21. MARQUEE BAR
---------------------------------------------------------------- */
#marquee-bar {
  position: relative;
  padding: 22px 0;
  background: linear-gradient(135deg, #020E24 0%, #071428 50%, #020E24 100%);
  overflow: hidden;
  border-top:    1px solid rgba(0,128,248,0.16);
  border-bottom: 1px solid rgba(0,128,248,0.08);
}

/* Fade edges */
#marquee-bar::before,
#marquee-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
#marquee-bar::before {
  left: 0;
  background: linear-gradient(to right, #020E24 0%, transparent 100%);
}
#marquee-bar::after {
  right: 0;
  background: linear-gradient(to left, #020E24 0%, transparent 100%);
}

.marquee-track {
  overflow: hidden;
  width: 100%;
}

.marquee-inner {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 35s linear infinite !important;
}

#marquee-bar:hover .marquee-inner {
  animation-play-state: paused;
}

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

.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 48px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  white-space: nowrap;
  user-select: none;
  line-height: 1;
  transition: color 0.25s ease;
}
.mq-item:hover { color: rgba(255,255,255,0.98); }

.mq-star {
  color: var(--blue-light);
  font-size: 8px;
  opacity: 0.65;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   22. FAQ
---------------------------------------------------------------- */
#faq {
  padding: 48px 0 var(--section-v);
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.05);
}
#faq .section-header { text-align: center; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.faq-item.is-open {
  border-color: rgba(0,128,248,0.22);
  box-shadow: 0 4px 20px rgba(0,80,200,0.09);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color var(--tr);
}
.faq-q:hover { color: var(--blue); }
.faq-item.is-open .faq-q { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue);
  transition: transform 0.35s var(--ease), background var(--tr);
}
.faq-item.is-open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.78;
  color: var(--text-muted);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 16px;
}

/* ─── Shared contact button styles ─── */
.btn-contact-wa,
.btn-contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: transform var(--tr), background var(--tr), box-shadow var(--tr), color var(--tr);
  white-space: nowrap;
  line-height: 1;
}
.btn-contact-wa {
  background: rgba(0,128,248,0.14);
  color: var(--blue-light);
  border: 1px solid rgba(0,128,248,0.28);
}
.btn-contact-wa:hover {
  background: rgba(0,128,248,0.24);
  border-color: rgba(0,128,248,0.50);
  transform: translateY(-2px);
}
.btn-contact-mail {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.16);
}
.btn-contact-mail:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
  color: var(--white);
  transform: translateY(-2px);
}


/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
#footer {
  background: #000000;
  border-top: 1px solid rgba(0,128,248,0.15);
}

.footer-main {
  padding: 80px 0 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 56px;
}

/* Brand */
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.46);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.fsoc {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.fsoc:hover {
  background: rgba(0,128,248,0.18);
  border-color: rgba(0,128,248,0.35);
  color: var(--blue-light);
  transform: translateY(-2px);
}

/* Cols */
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 28px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-contact-list i {
  color: var(--blue);
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--white); }

.footer-cta {
  font-size: 13px;
  padding: 11px 22px;
}

/* Bottom bar */
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.footer-bar-links {
  display: flex;
  gap: 20px;
}
.footer-bar-links a {
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bar-links a:hover { color: rgba(255,255,255,0.65); }
.footer-back-top {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0,128,248,0.12);
  border: 1px solid rgba(0,128,248,0.22);
  color: var(--blue-light);
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.footer-back-top:hover {
  background: rgba(0,128,248,0.25);
  transform: translateY(-2px);
}

/* Footer responsive */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer-main  { padding: 56px 0 40px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 36px; }
  .footer-bar-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bar-links { justify-content: center; }
}

/* ================================================================
   TRACK RECORD SECTION
================================================================ */
#track-record {
  padding: var(--section-v) 0;
  background: #f8faff;
  position: relative;
  overflow: hidden;
}
#track-record .container { position: relative; z-index: 1; }
#track-record .section-header { text-align: center; }
#track-record .section-title { color: var(--navy); }
#track-record .section-eyebrow { color: var(--blue); }

/* Radial glow orbs */
.tr-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.10;
}
.tr-glow-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #0080F8 0%, transparent 70%);
  top: -120px;
  left: -100px;
}
.tr-glow-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #0050C0 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

/* Grid */
.tr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.tr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 30px 32px;
  background: #ffffff;
  border: 1px solid rgba(0,80,200,0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  overflow: hidden;
}
.tr-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(0,128,248,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.tr-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,128,248,0.38);
  box-shadow: 0 20px 60px rgba(0,80,200,0.28), 0 0 0 1px rgba(0,128,248,0.15);
}

/* Icon */
.tr-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0,128,248,0.22) 0%, rgba(0,80,200,0.12) 100%);
  border: 1px solid rgba(0,128,248,0.25);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform var(--tr), background var(--tr);
}
.tr-icon i { font-size: 20px; color: var(--blue); }
.tr-card:hover .tr-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(0,128,248,0.34) 0%, rgba(0,80,200,0.22) 100%);
}

/* Number */
.tr-number {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #010F28;
  background-clip: unset;
  color: #010F28;
}

/* Title */
.tr-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

/* Desc */
.tr-card-desc {
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .tr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tr-grid { grid-template-columns: 1fr; gap: 14px; }
  .tr-card  { padding: 28px 22px; }
  .tr-number { font-size: 38px; }
}

/* ================================================================
   SERVICES SHOWCASE SECTION
================================================================ */
#services-showcase {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#services-showcase .container { position: relative; z-index: 1; }
#services-showcase .section-header { text-align: center; }

/* Ambient particles */
.sc-particle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(0,128,248,0.30) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 72%, rgba(0,128,248,0.20) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 58% 30%, rgba(0,128,248,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 55%, rgba(0,128,248,0.18) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 15%, rgba(0,128,248,0.22) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 88%, rgba(0,128,248,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 82%, rgba(0,128,248,0.18) 0%, transparent 100%);
}
.sc-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  opacity: 0.12;
}
.sc-glow-1 { width:580px;height:580px; background:radial-gradient(circle,#0080F8 0%,transparent 70%); top:-160px;left:-120px; }
.sc-glow-2 { width:420px;height:420px; background:radial-gradient(circle,#0050C0 0%,transparent 70%); bottom:-100px;right:-80px; }

.sc-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Tabs ── */
.sc-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sc-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.52);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.sc-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0080F8, #3399FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  border-radius: 0 0 2px 2px;
}
.sc-tab:hover:not(.is-active) {
  color: rgba(255,255,255,0.80);
  border-color: rgba(0,128,248,0.22);
  background: rgba(0,128,248,0.06);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0,80,200,0.10);
}
.sc-tab:hover::after, .sc-tab.is-active::after { transform: scaleX(1); }
.sc-tab.is-active {
  background: linear-gradient(135deg, rgba(0,128,248,0.22) 0%, rgba(0,80,200,0.14) 100%);
  border-color: rgba(0,128,248,0.45);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,80,200,0.22), 0 0 0 1px rgba(0,128,248,0.15);
}
.sc-tab-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  opacity: 0.80;
}

/* ── Panel ── */
.sc-panel { display: none; }
.sc-panel.is-active {
  display: block;
  animation: scFadeUp 0.40s var(--ease) both;
}
@keyframes scFadeUp {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── Layout: content container ── */
.sc-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 52px 56px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  position: relative;
  overflow: visible;
}
.sc-layout::before {
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(0,128,248,0.05) 0%,transparent 55%);
  pointer-events:none;
  border-radius:var(--r-xl);
}

/* ── Visual area ── */
.sc-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-mockup {
  position: relative;
  width: 100%;
  max-width: 340px;
  animation: scFloat 4.5s ease-in-out infinite;
}
@keyframes scFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.sc-mockup:hover { animation-play-state: paused; }

/* ─── Mockup: Social Media ─── */
.sc-mockup-social { display:flex;flex-direction:column;gap:0; }
.scm-phone {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.scm-phone-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scm-avatar {
  width: 32px;height:32px;
  border-radius:50%;
  background: linear-gradient(135deg,#0080F8,#0050C0);
  flex-shrink:0;
}
.scm-username { flex:1;display:flex;flex-direction:column;gap:4px; }
.scm-username span { height:6px;background:rgba(255,255,255,0.15);border-radius:4px; }
.scm-username span:first-child { width:80px; }
.scm-username span:last-child  { width:52px;background:rgba(255,255,255,0.08); }
.scm-follow {
  font-size:11px;font-weight:700;color:var(--blue);
  background:rgba(0,128,248,0.14);border:1px solid rgba(0,128,248,0.28);
  border-radius:var(--r-full);padding:4px 12px;
}
.scm-grid {
  display:grid;grid-template-columns:repeat(3,1fr);gap:2px;padding:2px;
}
.scm-cell {
  aspect-ratio:1;border-radius:2px;
  background: linear-gradient(135deg,rgba(0,80,200,0.30),rgba(0,128,248,0.15));
}
.scm-c1{background:linear-gradient(135deg,#0050C0,#003080);}
.scm-c2{background:linear-gradient(135deg,#0070d0,#0050A0);}
.scm-c3{background:linear-gradient(135deg,rgba(0,128,248,0.6),#003070);}
.scm-c4{background:linear-gradient(135deg,#002550,#0060B0);}
.scm-c5{background:linear-gradient(135deg,#0080F8,#0040A0);}
.scm-c6{background:linear-gradient(135deg,#003880,#0060C0);}
.scm-c7{background:linear-gradient(135deg,#0055A0,#0080E0);}
.scm-c8{background:linear-gradient(135deg,#004090,#0070D0);}
.scm-c9{background:linear-gradient(135deg,#001840,#0050B0);}
.scm-stats-row {
  display:flex;justify-content:space-around;padding:12px 10px;
  border-top:1px solid rgba(255,255,255,0.06);
}
.scm-stat { text-align:center; }
.scm-stat strong { display:block;font-size:13px;font-weight:700;color:#fff; }
.scm-stat span   { font-size:10px;color:rgba(255,255,255,0.40); }

/* ─── Floating cards (shared) ─── */
.scm-float-card {
  position:absolute;
  background:rgba(10,29,62,0.92);
  border:1px solid rgba(0,128,248,0.28);
  border-radius:var(--r-md);
  padding:10px 16px;
  backdrop-filter:blur(12px);
  box-shadow:0 8px 32px rgba(0,0,0,0.30);
  display:flex;flex-direction:column;gap:3px;
  white-space:nowrap;
  animation:scFloat 3.8s ease-in-out infinite 0.8s;
}
.scm-float-1 { bottom:-16px; right:-16px; }
.scm-float-2 { top:10px; left:-10px; flex-direction:row;align-items:center;gap:8px;font-size:12px;color:rgba(255,255,255,0.75);padding:8px 14px; }
.scm-float-label { font-size:10px;color:rgba(255,255,255,0.45);letter-spacing:0.05em; }
.scm-float-val   { font-size:18px;font-weight:800;color:#fff;letter-spacing:-0.03em;line-height:1; }
.scm-spark       { height:28px;width:80px; }
.scm-spark svg   { width:100%;height:100%; }

/* ─── Mockup: Branding ─── */
.sc-mockup-brand {
  display:flex;flex-direction:column;gap:16px;
  position:relative;
}
.scb-logo-card {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r-lg);
  padding:28px 24px 20px;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  backdrop-filter:blur(10px);
}
.scb-logo-mark svg { width:60px;height:60px; }
.scb-brand-name { font-size:17px;font-weight:800;color:#fff;letter-spacing:-0.02em;margin:0; }
.scb-brand-tag  { font-size:11px;color:rgba(255,255,255,0.38);letter-spacing:0.10em;text-transform:uppercase;margin:0; }
.scb-palette { display:flex;gap:8px; }
.scb-swatch  { width:36px;height:36px;border-radius:8px;border:1px solid rgba(255,255,255,0.08);transition:transform var(--tr); }
.scb-swatch:hover { transform:scale(1.15); }
.scb-typo {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  border-radius:var(--r-md);
  padding:12px 16px;
  display:flex;flex-direction:column;gap:4px;
}
.scb-typo-h { font-size:22px;font-weight:700;color:#fff;letter-spacing:-0.02em;line-height:1; }
.scb-typo-b { font-size:13px;color:rgba(255,255,255,0.45); }

/* ─── Mockup: Paid Campaigns ─── */
.sc-mockup-paid {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r-lg);
  overflow:visible;
  position:relative;
}
.scp-header {
  display:flex;align-items:center;gap:8px;
  padding:14px 18px;border-bottom:1px solid rgba(255,255,255,0.06);
}
.scp-dot   { width:8px;height:8px;border-radius:50%;flex-shrink:0; }
.scp-label { font-size:12px;font-weight:600;color:#fff;flex:1; }
.scp-period{ font-size:11px;color:rgba(255,255,255,0.35); }
.scp-kpis  { display:flex;gap:0;border-bottom:1px solid rgba(255,255,255,0.06); }
.scp-kpi   { flex:1;padding:14px 0;text-align:center;border-right:1px solid rgba(255,255,255,0.06); }
.scp-kpi:last-child { border-right:none; }
.scp-kpi-val { font-size:20px;font-weight:800;color:#fff;letter-spacing:-0.03em;line-height:1; }
.scp-kpi-lbl { font-size:10px;color:rgba(255,255,255,0.38);margin-top:3px;text-transform:uppercase;letter-spacing:0.06em; }
.scp-chart { padding:16px 18px 0; }
.scp-bars  { display:flex;align-items:flex-end;gap:5px;height:80px; }
.scp-bar   {
  flex:1;height:var(--h);
  background:linear-gradient(to top,rgba(0,128,248,0.35),rgba(0,128,248,0.12));
  border-radius:4px 4px 0 0;
  transition:background 0.3s;
}
.scp-bar-active {
  background:linear-gradient(to top,#0080F8,rgba(0,128,248,0.50));
  box-shadow:0 0 14px rgba(0,128,248,0.40);
}
.scp-chart-labels {
  display:flex;justify-content:space-between;
  font-size:9px;color:rgba(255,255,255,0.28);
  padding:6px 0 14px;letter-spacing:0.04em;
}

/* ─── Mockup: Email Marketing ─── */
.sc-mockup-email {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:start;
  position:relative;
}
.sce-flow {
  display:flex;flex-direction:column;align-items:center;gap:0;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--r-lg);
  padding:16px 12px;
}
.sce-node {
  display:flex;flex-direction:column;align-items:center;gap:5px;
  background:rgba(0,128,248,0.10);
  border:1px solid rgba(0,128,248,0.24);
  border-radius:var(--r-md);
  padding:10px 14px;width:100%;text-align:center;
}
.sce-node-start { background:rgba(0,128,248,0.20);border-color:rgba(0,128,248,0.40); }
.sce-node-end   { background:rgba(34,197,94,0.12);border-color:rgba(34,197,94,0.30); }
.sce-node i     { font-size:14px;color:var(--blue); }
.sce-node-end i { color:#22c55e; }
.sce-node span  { font-size:10px;font-weight:600;color:rgba(255,255,255,0.70); }
.sce-arrow      { width:8px;height:32px;flex-shrink:0; }
.sce-arrow svg  { width:100%;height:100%; }
.sce-stats {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:var(--r-lg);
  overflow:hidden;
  align-self:center;
}
.sce-stat-row {
  display:flex;justify-content:space-between;align-items:center;
  padding:13px 14px;border-bottom:1px solid rgba(255,255,255,0.06);
  font-size:12px;color:rgba(255,255,255,0.52);
}
.sce-stat-row:last-child { border-bottom:none; }
.sce-pct { font-size:13px;font-weight:700;color:#fff; }

/* ── Copy column ── */
.sc-copy {
  display:flex;flex-direction:column;align-items:flex-start;
  gap:0;
}
.sc-service-title {
  font-size: clamp(22px,2.5vw,30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 28px;
}

.sc-benefits { list-style:none;padding:0;margin:0 0 36px;display:flex;flex-direction:column;gap:16px; }
.sc-benefit  { display:flex;align-items:flex-start;gap:14px;font-size:15px;color:rgba(255,255,255,0.78);font-weight:500;line-height:1.55; }
.sc-check {
  width:24px;height:24px;min-width:24px;margin-top:1px;
  background:rgba(0,128,248,0.16);
  border:1px solid rgba(0,128,248,0.32);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;color:var(--blue);
  transition:background var(--tr),transform var(--tr);
}
.sc-benefit:hover .sc-check { background:rgba(0,128,248,0.30);transform:scale(1.10); }

.sc-cta { font-size:15px;padding:15px 32px; }
.sc-cta:hover {
  box-shadow:0 0 0 6px rgba(0,128,248,0.16),0 12px 40px rgba(0,128,248,0.42) !important;
}

/* ── Responsive ── */
@media (max-width:900px) {
  .sc-layout { grid-template-columns:1fr;gap:40px;padding:36px 28px; }
  .sc-visual  { min-height:280px; }
  .sc-tabs    { justify-content:flex-start;overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px; }
}
@media (max-width:560px) {
  .sc-layout { padding:24px 18px; }
  .sc-tab     { font-size:12.5px;padding:10px 16px; }
  .sc-mockup-email { grid-template-columns:1fr; }
  .scm-float-1 { bottom:-8px;right:-8px; }
}

/* ================================================================
   PRICING SECTION
================================================================ */
#pricing {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#pricing .container      { position: relative; z-index: 1; }
#pricing .section-header { text-align: center; }

.px-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.14;
}
.px-glow-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #0080F8 0%, transparent 70%);
  top: -140px; right: -100px;
}
.px-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0050C0 0%, transparent 70%);
  bottom: -80px; left: -80px;
}

.px-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-top: -28px;
}

/* ── Tabs ── */
.px-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.px-tab {
  padding: 10px 22px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  background: transparent;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr), color var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}
.px-tab:hover:not(.is-active) { color: rgba(255,255,255,0.80); }
.px-tab.is-active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,128,248,0.40);
}

/* ── Panel transition ── */
.px-panel { display: none; }
.px-panel.is-active {
  display: block;
  animation: pxFadeIn 0.35s var(--ease) both;
}
@keyframes pxFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Grid ── */
.px-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* ── Card ── */
.px-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  overflow: hidden;
}
.px-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(0,128,248,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.px-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,128,248,0.28);
  box-shadow: 0 18px 52px rgba(0,80,200,0.22);
}

/* Featured */
.px-featured {
  border-color: rgba(0,128,248,0.45);
  background: rgba(0,80,200,0.10);
  box-shadow: 0 8px 40px rgba(0,80,200,0.28), 0 0 0 1px rgba(0,128,248,0.20);
}
.px-featured::before {
  background: linear-gradient(135deg, rgba(0,128,248,0.12) 0%, transparent 60%);
}
.px-featured:hover {
  border-color: rgba(0,128,248,0.65);
  box-shadow: 0 24px 64px rgba(0,80,200,0.38), 0 0 0 1px rgba(0,128,248,0.30);
}

.px-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  border-radius: var(--r-full);
  padding: 4px 12px;
  box-shadow: 0 2px 10px rgba(0,128,248,0.40);
}

/* Card top */
.px-card-top { margin-bottom: 24px; }

.px-plan {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.px-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.px-amount {
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}
.px-amount-custom {
  font-size: 28px;
  background: linear-gradient(135deg, #fff 40%, rgba(0,128,248,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.px-period {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.40);
}
.px-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* Features */
.px-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.px-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}
.px-features li i {
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: rgba(0,128,248,0.16);
  border: 1px solid rgba(0,128,248,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.5px;
  color: var(--blue);
}

/* CTA btn */
.px-btn {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 13px 20px;
}
.px-btn.btn-primary:hover {
  box-shadow: 0 0 0 5px rgba(0,128,248,0.16), 0 12px 36px rgba(0,128,248,0.42) !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .px-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .px-grid  { grid-template-columns: 1fr; gap: 14px; }
  .px-tabs  { gap: 4px; padding: 5px; }
  .px-tab   { padding: 9px 14px; font-size: 12.5px; }
}

/* ================================================================
   FREE ANALYSIS SECTION
================================================================ */
#free-analysis {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#free-analysis .container { position: relative; z-index: 1; }

/* Glow orbs */
.fa-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.16;
}
.fa-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #0080F8 0%, transparent 70%);
  top: -150px; left: -120px;
}
.fa-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0050C0 0%, transparent 70%);
  bottom: -100px; right: -80px;
}

/* Two-column layout */
.fa-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── LEFT ── */
.fa-left { display: flex; flex-direction: column; align-items: flex-start; }

.fa-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 20px;
}
.fa-headline b {
  background: linear-gradient(135deg, #4fa8ff 0%, #0080F8 50%, #0050C0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fa-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

/* Benefits list */
.fa-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fa-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}
.fa-benefits li i {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(0,128,248,0.18);
  border: 1px solid rgba(0,128,248,0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--blue);
}

/* CTA button glow on hover */
.fa-cta {
  font-size: 15.5px;
  padding: 16px 34px;
}
.fa-cta:hover {
  box-shadow: 0 0 0 6px rgba(0,128,248,0.18), 0 12px 40px rgba(0,128,248,0.42) !important;
}

/* ── RIGHT: process card ── */
.fa-right { display: flex; }

.fa-card {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  transition: border-color var(--tr), box-shadow var(--tr);
  position: relative;
  overflow: hidden;
}
.fa-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(0,128,248,0.06) 0%, transparent 55%);
  pointer-events: none;
}
.fa-card:hover {
  border-color: rgba(0,128,248,0.25);
  box-shadow: 0 16px 56px rgba(0,80,200,0.22);
}

.fa-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
}

/* Steps */
.fa-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fa-step {
  display: grid;
  grid-template-columns: 36px 18px 1fr;
  gap: 0 14px;
  align-items: start;
}

/* Numbered circle */
.fa-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, rgba(0,128,248,0.25) 0%, rgba(0,80,200,0.15) 100%);
  border: 1px solid rgba(0,128,248,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  position: relative;
  z-index: 1;
}

/* Animated connector line */
.fa-step-connector {
  width: 2px;
  background: linear-gradient(to bottom, rgba(0,128,248,0.40), rgba(0,128,248,0.08));
  border-radius: 2px;
  margin: 0 auto;
  height: 0;
  transition: height 0.6s var(--ease);
}
.fa-step-connector.visible { height: 100%; min-height: 42px; }

.fa-step-body {
  padding-bottom: 32px;
}
.fa-step:last-child .fa-step-body { padding-bottom: 0; }

.fa-step-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 7px 0 5px;
  letter-spacing: -0.01em;
}
.fa-step-body p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .fa-layout { grid-template-columns: 1fr; gap: 48px; }
  .fa-headline { font-size: 36px; }
}
@media (max-width: 560px) {
  .fa-card { padding: 28px 22px; }
  .fa-headline { font-size: 30px; }
  .fa-cta { width: 100%; justify-content: center; }
}

/* ── Nav CTA Button ── */
.nav-cta-btn {
  font-size: 13.5px !important;
  padding: 10px 20px !important;
  border-radius: var(--r-full) !important;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 900px) { .nav-cta-btn { display: none; } }

/* ================================================================
   CLIENT SUCCESS SECTION
================================================================ */
#client-success {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#client-success .container { position: relative; z-index: 1; }
#client-success .section-header { text-align: center; }
#client-success .section-title { color: #fff; }

.cs-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-top: 10px;
  margin-bottom: 0;
}
.cs-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px); opacity: 0.13;
}
.cs-glow-1 { width:500px;height:500px; background:radial-gradient(circle,#0080F8 0%,transparent 70%); top:-130px; right:-100px; }
.cs-glow-2 { width:380px;height:380px; background:radial-gradient(circle,#0050C0 0%,transparent 70%); bottom:-80px; left:-80px; }

.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cs-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  overflow: hidden;
}
.cs-card::before {
  content:'';position:absolute;inset:0;border-radius:var(--r-lg);
  background:linear-gradient(135deg,rgba(0,128,248,0.06) 0%,transparent 60%);
  pointer-events:none;
}
.cs-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,128,248,0.35);
  box-shadow: 0 20px 56px rgba(0,80,200,0.24);
}
.cs-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg,rgba(0,128,248,0.20),rgba(0,80,200,0.12));
  border: 1px solid rgba(0,128,248,0.28);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--tr), background var(--tr);
}
.cs-icon i { font-size: 18px; color: var(--blue); }
.cs-card:hover .cs-icon { transform: scale(1.08); background:linear-gradient(135deg,rgba(0,128,248,0.32),rgba(0,80,200,0.20)); }
.cs-number {
  font-size: clamp(32px,3.5vw,44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg,#fff 40%,rgba(0,128,248,0.90) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cs-card-title { font-size:16px;font-weight:700;color:#fff;margin-bottom:8px;letter-spacing:-0.01em; }
.cs-card-desc  { font-size:13.5px;color:rgba(255,255,255,0.48);line-height:1.65;margin:0; }

@media (max-width:900px)  { .cs-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px)  { .cs-grid { grid-template-columns:1fr;gap:14px; } .cs-card { padding:28px 22px; } }

/* ================================================================
   LEAD CONTACT SECTION (merged)
================================================================ */
#lead-contact {
  padding: calc(var(--section-v) * 1.1) 0;
  background: #f4f7fc;
  position: relative;
}
.lc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lc-left { display:flex;flex-direction:column;align-items:flex-start; }
.lc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 18px;
}
.lc-eyebrow::before {
  content:''; display:block; width:14px; height:2px;
  background:currentColor; border-radius:2px; flex-shrink:0;
}
.lc-headline {
  font-size: clamp(22px,2.6vw,34px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--text-dark); margin-bottom: 12px;
}
.lc-headline strong { color: var(--blue); font-weight: 800; }
.lc-subtitle {
  font-size: 17px; font-weight: 600; color: var(--text-mid);
  margin-bottom: 14px; line-height: 1.5;
}
.lc-desc {
  font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px;
}
.lc-benefits {
  list-style:none; padding:0; margin:0 0 36px;
  display:flex; flex-direction:column; gap:12px;
}
.lc-benefits li {
  display:flex; align-items:center; gap:12px;
  font-size:15px; font-weight:500; color:var(--text-mid);
}
.lc-benefits li i {
  width:22px; height:22px; min-width:22px;
  background:rgba(0,128,248,0.10); border:1px solid rgba(0,128,248,0.25);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:10px; color:var(--blue);
}
.lc-actions { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.lc-btn-main { font-size:13.5px; padding:12px 26px; }
.lc-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(0,128,248,0.06);
  border: 1px solid rgba(0,128,248,0.18);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.45;
}
.lc-guarantee i {
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}
.lc-btn-main:hover {
  box-shadow:0 0 0 6px rgba(0,128,248,0.15),0 12px 36px rgba(0,128,248,0.40) !important;
}
.lc-btn-wa, .lc-btn-mail {
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 22px; font-family:inherit; font-size:14px; font-weight:500;
  border-radius:var(--r-md); border:1.5px solid;
  cursor:pointer; transition:all var(--tr); white-space:nowrap; line-height:1;
  text-decoration:none;
}
.lc-btn-wa   { background:transparent; color:var(--blue); border-color:rgba(0,128,248,0.30); }
.lc-btn-mail { background:transparent; color:var(--text-mid); border-color:rgba(0,0,0,0.15); }
.lc-btn-wa:hover   { background:rgba(0,128,248,0.08); border-color:rgba(0,128,248,0.50); transform:translateY(-2px); }
.lc-btn-mail:hover { background:rgba(0,0,0,0.04); border-color:rgba(0,0,0,0.25); transform:translateY(-2px); }

.lc-right { display:flex; }
.lc-card {
  width:100%; background:#fff;
  border:1px solid rgba(0,0,0,0.07); border-radius:var(--r-xl);
  padding:40px 36px;
  box-shadow:0 8px 40px rgba(0,80,200,0.08),0 2px 8px rgba(0,0,0,0.05);
  transition:box-shadow var(--tr);
}
.lc-card:hover { box-shadow:0 16px 56px rgba(0,80,200,0.14),0 2px 8px rgba(0,0,0,0.05); }
.lc-card-label {
  font-size:11px; font-weight:700; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--blue); margin-bottom:28px;
}
.lc-step-num {
  background:rgba(0,128,248,0.10) !important;
  border:1px solid rgba(0,128,248,0.25) !important;
  color:var(--blue) !important;
}
.lc-step-conn {
  background:linear-gradient(to bottom,rgba(0,128,248,0.25),rgba(0,128,248,0.05)) !important;
}
.lc-card .fa-step-body h3 { color: var(--text-dark); }
.lc-card .fa-step-body p  { color: var(--text-muted); }


/* ── Process steps: lc-card redesign ── */
.lc-process {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lc-proc-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 18px;
  align-items: start;
}

/* Icon column: icon circle + vertical line */
.lc-proc-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.lc-proc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(0,128,248,0.15) 0%, rgba(0,80,200,0.08) 100%);
  border: 1.5px solid rgba(0,128,248,0.30);
  color: var(--blue);
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 0 0 0 rgba(0,128,248,0);
}

.lc-card:hover .lc-proc-icon {
  box-shadow: 0 0 0 6px rgba(0,128,248,0.08);
}

.lc-proc-icon--2 {
  background: linear-gradient(135deg, rgba(0,128,248,0.20) 0%, rgba(0,80,200,0.12) 100%);
  border-color: rgba(0,128,248,0.38);
}
.lc-proc-icon--3 {
  background: linear-gradient(135deg, rgba(0,128,248,0.28) 0%, rgba(0,80,200,0.18) 100%);
  border-color: rgba(0,128,248,0.50);
  color: #0060d8;
  box-shadow: 0 4px 16px rgba(0,128,248,0.20);
}

.lc-proc-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(to bottom, rgba(0,128,248,0.25), rgba(0,128,248,0.05));
  border-radius: 2px;
  margin: 4px 0;
}

/* Body column */
.lc-proc-body {
  padding-bottom: 28px;
}
.lc-proc-step:last-child .lc-proc-body { padding-bottom: 0; }

.lc-proc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,128,248,0.08);
  border: 1px solid rgba(0,128,248,0.18);
  border-radius: var(--r-full);
  padding: 2px 10px;
  margin-bottom: 8px;
  margin-top: 10px;
}

.lc-proc-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 5px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.lc-proc-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width:900px) {
  .lc-layout { grid-template-columns:1fr; gap:44px; }
  .lc-headline { font-size:32px; }
}
@media (max-width:560px) {
  .lc-card { padding:28px 20px; }
  .lc-headline { font-size:28px; }
  .lc-btn-main,.lc-btn-wa,.lc-btn-mail { width:100%; justify-content:center; }
}

/* ================================================================
   FLOATING CTA BUTTON
================================================================ */

@media (max-width: 600px) {
  
  
  
}


/* ── Footer Policy Button ── */
.footer-policy-btn {
  background: none; border: none; padding: 0;
  color: rgba(255,255,255,.55); font-size: .8rem;
  cursor: pointer; transition: color .2s;
}
.footer-policy-btn:hover { color: #fff; }

/* ── Privacy Policy Modal ── */
.pp-overlay {
  position: fixed; inset: 0;
  background: rgba(1,15,40,.85);
  backdrop-filter: blur(6px); z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.pp-overlay[hidden] { display: none; }
.pp-box {
  position: relative; background: #0a1d3e;
  border: 1px solid rgba(255,255,255,.08); border-radius: 16px;
  max-width: 680px; width: 100%; max-height: 80vh; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.pp-box h2 {
  font-size: 1.25rem; font-weight: 700; color: #fff;
  padding: 28px 32px 0; margin: 0 0 16px;
}
.pp-body {
  overflow-y: auto; padding: 0 32px 32px;
  color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.7;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) transparent;
}
.pp-body h3 { color:#fff; font-size:.95rem; font-weight:600; margin:20px 0 6px; }
.pp-body p  { margin:0 0 10px; }
.pp-body ul { padding-left:18px; margin:0 0 10px; }
.pp-body ul li { margin-bottom:4px; }
.pp-body a { color:#4f8ef7; text-decoration:none; }
.pp-body a:hover { text-decoration:underline; }
.pp-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,.08); border: none; color: rgba(255,255,255,.7);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .85rem; transition: background .2s, color .2s;
}
.pp-close:hover { background: rgba(255,255,255,.18); color: #fff; }


/* ================================================================
   CLIENTS LOGOS SECTION
================================================================ */
#clients {
  padding: 72px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#clients::before {
  content:'';
  position:absolute;inset:0;
  background: linear-gradient(135deg,rgba(0,128,248,0.04) 0%,transparent 60%);
  pointer-events:none;
}
#clients .container { position: relative; z-index: 1; }

.cl-header {
  text-align: center;
  margin-bottom: 48px;
}
.cl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}
.cl-eyebrow::before,
.cl-eyebrow::after {
  content:'';
  display:block;
  width:28px; height:1px;
  background: rgba(255,255,255,0.20);
  border-radius:2px;
}
.cl-headline {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.cl-headline span { color: var(--blue); }

/* Marquee track */
.cl-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.cl-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: clScroll 28s linear infinite;
}
.cl-track--reverse {
  animation-direction: reverse;
  animation-duration: 32s;
}
.cl-track:hover { animation-play-state: paused; }

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

/* Logo pill */
.cl-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s;
  cursor: default;
  flex-shrink: 0;
}
.cl-logo:hover {
  background: rgba(0,128,248,0.08);
  border-color: rgba(0,128,248,0.25);
}
.cl-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.cl-logo-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  letter-spacing: -0.01em;
}

/* Icon bg colours — cycles through palette */
.cl-ic-1 { background: linear-gradient(135deg,#0080F8,#0050C0); }
.cl-ic-2 { background: linear-gradient(135deg,#7C3AED,#5B21B6); }
.cl-ic-3 { background: linear-gradient(135deg,#059669,#047857); }
.cl-ic-4 { background: linear-gradient(135deg,#DC2626,#B91C1C); }
.cl-ic-5 { background: linear-gradient(135deg,#D97706,#B45309); }
.cl-ic-6 { background: linear-gradient(135deg,#0891B2,#0E7490); }
.cl-ic-7 { background: linear-gradient(135deg,#BE185D,#9D174D); }
.cl-ic-8 { background: linear-gradient(135deg,#4F46E5,#3730A3); }

.cl-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.cl-stat { text-align: center; }
.cl-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg,#fff 0%,rgba(255,255,255,0.70) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cl-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.cl-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.10);
}

@media (max-width: 640px) {
  .cl-stat-row { gap: 24px; }
  .cl-stat-num { font-size: 22px; }
  .cl-marquee-wrap { gap: 12px; }
}

/* ================================================================
   PLATFORMS SECTION
================================================================ */
#platforms {
  padding: 56px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.plat-header {
  text-align: center;
  margin-bottom: 36px;
}
.plat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.plat-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.plat-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--tr), border-color var(--tr), color var(--tr), transform var(--tr);
  cursor: default;
}
.plat-badge:hover {
  background: rgba(0,128,248,0.10);
  border-color: rgba(0,128,248,0.30);
  color: #fff;
  transform: translateY(-3px);
}
.plat-badge i, .plat-badge .plat-icon {
  font-size: 18px;
  flex-shrink: 0;
}
.plat-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
/* Shopify green, WooCommerce purple, WordPress blue, Meta blue, Google, Analytics orange */
.plat-shopify   { --pc: #96BF48; }
.plat-woo       { --pc: #7F54B3; }
.plat-wp        { --pc: #21759B; }
.plat-meta      { --pc: #0081FB; }
.plat-google    { --pc: #4285F4; }
.plat-analytics { --pc: #E37400; }
.plat-badge i { color: var(--pc, var(--blue)); }

/* ================================================================
   E-COMMERCE SOLUTIONS SECTION
================================================================ */
#ecommerce-solutions {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#ecommerce-solutions::before {
  content:'';
  position:absolute;inset:0;
  background: radial-gradient(ellipse 800px 500px at 70% 50%, rgba(0,128,248,0.06) 0%, transparent 70%);
  pointer-events:none;
}
#ecommerce-solutions .container { position:relative;z-index:1; }
#ecommerce-solutions .section-header { text-align:center; }

.ec-positioning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0,128,248,0.10);
  border: 1px solid rgba(0,128,248,0.25);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.ec-positioning i { font-size: 12px; }

.ec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .ec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ec-grid { grid-template-columns: 1fr; } }

.ec-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  transition: background var(--tr), border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  overflow: hidden;
}
.ec-card::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.ec-card:hover {
  background: rgba(0,128,248,0.06);
  border-color: rgba(0,128,248,0.22);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,80,200,0.18);
}
.ec-card:hover::before { opacity: 1; }
.ec-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,128,248,0.12);
  border: 1px solid rgba(0,128,248,0.22);
  border-radius: var(--r-md);
  font-size: 18px;
  color: var(--blue);
}
.ec-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.ec-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.ec-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ec-card-tag i { font-size: 9px; }

/* E-commerce trust bar */
.ec-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.ec-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
}
.ec-trust-item i { color: var(--blue); font-size: 15px; }

/* ================================================================
   PORTFOLIO FILTERS
================================================================ */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.pf-btn {
  padding: 9px 20px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  white-space: nowrap;
}
.pf-btn:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.18); }
.pf-btn.is-active {
  background: linear-gradient(135deg, #0080F8, #0050C0);
}

#portfolio-header .section-title { color: #fff; }
#portfolio-header .section-eyebrow { color: var(--blue); }


/* ═══════════════════════════════════════════════════════════════
   TARGETED IMPROVEMENTS — June 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. About-us: fix "Strategies" feature spacing ── */
.about-text > p { margin-bottom: 32px; }

.about-divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(0,128,248,0.18) 100%);
  border-radius: 3px;
  margin-bottom: 24px;
  margin-top: 4px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(0,128,248,0.07) 0%, rgba(0,80,200,0.04) 100%);
  border-radius: var(--r-md);
  border: 1px solid rgba(0,128,248,0.16);
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.about-feature:hover {
  border-color: rgba(0,128,248,0.32);
  background: linear-gradient(135deg, rgba(0,128,248,0.11) 0%, rgba(0,80,200,0.06) 100%);
  transform: translateY(-2px);
}
.about-feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(0,128,248,0.14);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
}
.about-feature-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* ── 2. Services Showcase: white title + smoother tab interactions ── */
#services-showcase .section-title { color: #ffffff; }


.sc-tab {
  position: relative;
  transition: background 0.28s var(--ease),
              color 0.28s var(--ease),
              border-color 0.28s var(--ease),
              box-shadow 0.28s var(--ease),
              transform 0.20s var(--ease);
}
.sc-tab:hover:not(.is-active) {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.80);
  transform: translateY(-2px);
}
.sc-tab.is-active {
  background: linear-gradient(135deg, rgba(0,128,248,0.25) 0%, rgba(0,80,200,0.16) 100%);
  border-color: rgba(0,128,248,0.55);
  color: #ffffff;
  box-shadow: 0 6px 28px rgba(0,80,200,0.28), 0 0 0 1px rgba(0,128,248,0.18);
  transform: translateY(-1px);
}
.sc-panel { display: none; }
.sc-panel.is-active {
  display: block;
  opacity: 1;
  animation: scFadeUp 0.38s var(--ease) both;
}

/* ── 3. Portfolio: white subtitle + premium card interactions ── */
#portfolio-header { background: var(--navy); }
#portfolio-header .section-title { color: #ffffff !important; }
#portfolio-header .section-eyebrow { color: var(--blue); }
#portfolio-header .section-title b { color: rgba(255,255,255,0.75); }


.portfolio-item:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 56px rgba(0,0,0,0.35),
              0 0 0 2px rgba(0,128,248,0.35);
  z-index: 2;
}
.portfolio-item:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
.portfolio-item img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.45s ease;
}
.portfolio-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.08) saturate(1.1);
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(1,15,40,0.88) 0%,
    rgba(1,15,40,0.30) 55%,
    rgba(0,128,248,0.06) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px 22px;
  opacity: 0;
  transition: opacity 0.38s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-label {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.portfolio-label::after {
  content: '→';
  font-size: 16px;
  color: var(--blue);
  transition: transform 0.25s ease;
}
.portfolio-item:hover .portfolio-label::after { transform: translateX(4px); }

.portfolio-item .pf-cat-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(0,128,248,0.18);
  border-radius: var(--r-full);
  padding: 3px 10px;
  margin-bottom: 8px;
  display: inline-block;
}

/* ── 3b. Portfolio Lightbox ── */
.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pf-lightbox[hidden] { display: none; }
.pf-lightbox.is-open { display: flex; }

.pf-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1,15,40,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: lbFadeIn 0.30s ease both;
}
@keyframes lbFadeIn { from { opacity:0; } to { opacity:1; } }

.pf-lb-card {
  position: relative;
  z-index: 1;
  background: rgba(5,25,60,0.96);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  max-width: 780px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55),
              0 0 0 1px rgba(0,128,248,0.12);
  animation: lbSlideUp 0.32s var(--ease) both;
}
@keyframes lbSlideUp {
  from { opacity:0; transform: translateY(24px) scale(0.97); }
  to   { opacity:1; transform: translateY(0) scale(1); }
}

.pf-lb-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.70);
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr), color var(--tr), transform 0.20s ease;
}
.pf-lb-close:hover {
  background: rgba(0,128,248,0.22);
  color: #ffffff;
  transform: rotate(90deg);
}

.pf-lb-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
.pf-lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}
.pf-lb-card:hover .pf-lb-img-wrap img { transform: scale(1.03); }

.pf-lb-body {
  padding: 28px 32px 32px;
}
.pf-lb-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: rgba(0,128,248,0.12);
  border-radius: var(--r-full);
  padding: 4px 12px;
  margin-bottom: 12px;
}
.pf-lb-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pf-lb-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.60);
  line-height: 1.70;
  margin-bottom: 22px;
}
.pf-lb-cta { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 600px) {
  .pf-lb-card { border-radius: var(--r-lg); }
  .pf-lb-body { padding: 20px 20px 24px; }
  .pf-lb-title { font-size: 18px; }
}

/* ── 4. Clients: premium PNG-ready logo marquee ── */
#clients {
  padding: var(--section-v) 0;
  background: var(--navy);
  overflow: hidden;
}
.cl-marquee-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg,
    transparent 0%, rgba(0,0,0,1) 8%,
    rgba(0,0,0,1) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%, rgba(0,0,0,1) 8%,
    rgba(0,0,0,1) 92%, transparent 100%);
  padding: 8px 0;
}
.cl-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: clScroll 36s linear infinite;
  will-change: transform;
}
.cl-track:hover { animation-play-state: paused; }

.cl-logo-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 148px;
  height: 88px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  cursor: default;
  flex-shrink: 0;
  transition: background 0.28s ease,
              border-color 0.28s ease,
              transform 0.28s ease,
              box-shadow 0.28s ease;
  margin: 0;
}
.cl-logo-slot:hover {
  background: rgba(0,128,248,0.07);
  border-color: rgba(0,128,248,0.22);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,80,200,0.18);
}
.cl-logo-slot img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.28s ease, filter 0.28s ease;
}
.cl-logo-slot:hover img {
  opacity: 0.85;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(0,128,248,0.40));
}
.cl-logo-fallback {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.cl-logo-slot figcaption {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  transition: color 0.28s ease;
}
.cl-logo-slot:hover figcaption { color: rgba(255,255,255,0.65); }

/* Fallback icon colors (reuse existing palette) */
.cl-ic-1 { background: linear-gradient(135deg,#0080F8,#0050C0); }
.cl-ic-2 { background: linear-gradient(135deg,#7C3AED,#5B21B6); }
.cl-ic-3 { background: linear-gradient(135deg,#059669,#047857); }
.cl-ic-4 { background: linear-gradient(135deg,#DC2626,#B91C1C); }
.cl-ic-5 { background: linear-gradient(135deg,#D97706,#B45309); }
.cl-ic-6 { background: linear-gradient(135deg,#0891B2,#0E7490); }
.cl-ic-7 { background: linear-gradient(135deg,#DB2777,#BE185D); }
.cl-ic-8 { background: linear-gradient(135deg,#4F46E5,#4338CA); }

.cl-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
  padding: 32px 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  flex-wrap: wrap;
}
.cl-stat { text-align: center; padding: 0 36px; }
.cl-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cl-stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.cl-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cl-stat-row { padding: 24px 20px; gap: 8px; }
  .cl-stat { padding: 12px 20px; }
  .cl-stat-divider { display: none; }
  .cl-logo-slot { width: 120px; height: 76px; }
}

/* ── 5. Platforms: at new pre-portfolio position ── */
#platforms {
  padding: 52px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plat-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.plat-badge {
  transition: background var(--tr), border-color var(--tr),
              color var(--tr), transform 0.25s var(--ease),
              box-shadow var(--tr);
}
.plat-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,80,200,0.20);
}

/* ── 6. Portfolio filter buttons: polish ── */
.portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 28px;
}
.pf-btn {
  transition: background var(--tr), color var(--tr),
              border-color var(--tr), transform 0.20s ease;
}
.pf-btn:hover { transform: translateY(-2px); }
.pf-btn.is-active { transform: translateY(-1px); }

.portfolio-item.pf-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.94);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.portfolio-item:not(.pf-hidden) {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ── Services Showcase: fix header spacing ── */
#services-showcase { padding: var(--section-v) 0; }



.sc-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* ── sc-showcase spacing definitive fix ── */
#services-showcase .section-header {
  text-align: center;
  margin-bottom: 44px;
  padding: 0;
}
#services-showcase .section-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}
#services-showcase .section-title {
  color: #ffffff !important;
  margin-bottom: 18px;
}


/* ── Portfolio filter: definitive fix ── */

.portfolio-item.pf-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.92) !important;
  transition: opacity 0.30s ease, transform 0.30s ease !important;
}


/* ══ SERVICES SHOWCASE — definitive fix (ID specificity) ══ */
#sc-title {
  color: #ffffff !important;
  margin-bottom: 20px !important;
  display: block !important;
}
#services-showcase .sc-subtitle {
  margin: 0 auto !important;
  margin-top: 0 !important;
  display: block !important;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
/* ══ TRACK RECORD — FINAL OVERRIDE (highest specificity) ══ */

                                                                                                                                              

/* ════════════════════════════════════════════════════
   TRACK RECORD — cores definitivas (padrão lc-proc)
   Fundo branco, texto preto, acentos azuis
   ════════════════════════════════════════════════════ */
#track-record {
  background: #f8faff !important;
}
#track-record .section-eyebrow {
  color: #0080F8 !important;
}
#track-record .section-title {
  color: #010F28 !important;
}
#track-record .tr-glow-1,
#track-record .tr-glow-2 {
  display: none !important;
}
#track-record .tr-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,128,248,0.15) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
}
#track-record .tr-card:hover {
  border-color: rgba(0,128,248,0.35) !important;
  box-shadow: 0 8px 32px rgba(0,80,200,0.12) !important;
}
#track-record .tr-icon {
  background: linear-gradient(135deg, rgba(0,128,248,0.12) 0%, rgba(0,80,200,0.06) 100%) !important;
  border: 1.5px solid rgba(0,128,248,0.28) !important;
}
#track-record .tr-icon i {
  color: #0080F8 !important;
}
#track-record .tr-number {
  background: linear-gradient(135deg, #0080F8 0%, #00C6FF 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #0080F8 !important;
}
#track-record .tr-card-title {
  color: #111827 !important;
}
#track-record .tr-card-desc {
  color: #4B5563 !important;
}
                          
/* ── CTA "Get in touch" — mesmo fundo do lead-contact ── */
#cta {
  background: #f4f7fc !important;
}
#cta .cta-glow-l,
#cta .cta-glow-r {
  display: none !important;
}
#cta h2 {
  color: var(--navy) !important;
}
#cta .cta-sub {
  color: #4B5563 !important;
}
#cta .section-eyebrow {
  color: var(--blue) !important;
}

/* ── Privacy Policy Modal (definitive) ── */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.privacy-modal:not(.is-open) { pointer-events: none !important; }
.privacy-modal[hidden]:not(.is-open) { display: none; }
.privacy-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.privacy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1,15,40,0.88);
  backdrop-filter: blur(6px);
}
.privacy-modal-card {
  position: relative;
  background: #0a1d3e;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 82vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  z-index: 1;
}
.privacy-modal-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  padding: 28px 32px 0;
  margin: 0 0 16px;
  flex-shrink: 0;
}
.privacy-modal-body {
  overflow-y: auto;
  padding: 0 32px 32px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.75;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.privacy-modal-body h3 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 22px 0 6px;
}
.privacy-modal-body p  { margin: 0 0 10px; }
.privacy-modal-body ul { padding-left: 18px; margin: 0 0 10px; }
.privacy-modal-body ul li { margin-bottom: 4px; }
.privacy-modal-body a  { color: #4f8ef7; text-decoration: none; }
.privacy-modal-body a:hover { text-decoration: underline; }
.privacy-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.privacy-modal-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ── Portfolio overlay text — always white ── */
.portfolio-overlay { color: #ffffff !important; }
.portfolio-label { color: #ffffff !important; font-weight: 600; }
.pf-cat-tag { color: #ffffff !important; }

/* ── Privacy modal backdrop ── */


/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER — GDPR
   ══════════════════════════════════════════════ */

/* ── Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0a1628;
  border-top: 1px solid rgba(0,128,248,0.25);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.5);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner[hidden] { display: none; }

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 260px; }

.cookie-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.cookie-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.cookie-desc a {
  color: #4f8ef7;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* ── Buttons ── */
.cookie-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.cookie-btn-primary {
  background: #0080F8;
  color: #fff;
}
.cookie-btn-primary:hover { background: #0066cc; }

.cookie-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* ── Modal ── */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1,15,40,0.88);
  backdrop-filter: blur(6px);
}

.cookie-modal-card {
  position: relative;
  background: #0a1d3e;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 32px;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal-close:hover { background: rgba(255,255,255,0.18); color: #fff; }

.cookie-modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.cookie-modal-intro {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0 0 24px;
}

/* ── Categories ── */
.cookie-category {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.cookie-category-desc {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.cookie-toggle-always {
  font-size: 0.75rem;
  color: #0080F8;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Toggle switch ── */
.cookie-toggle {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 24px;
  transition: background 0.25s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: #0080F8; }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }

/* ── Modal footer ── */
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-modal-actions .cookie-btn { flex: 1; text-align: center; }

.cookie-modal-footer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 14px 0 0;
}
.cookie-modal-footer a { color: #4f8ef7; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* Inline style replacements */
.hero-btn-secondary { margin-left: 0; }
.pf-container { padding-bottom: 24px; }


/* ════════════════════════════════════════════════════════════
   UX/UI PRO MAX — IMPROVEMENTS
   Portfolio refinement · FAQ section · Global polish
═══════════════════════════════════════════════════════════════ */

/* ─── PORTFOLIO: compact cards, tighter grid ─────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 6px !important;
  padding: 0 0 12px !important;
  background: transparent !important;
}

.portfolio-item {
  aspect-ratio: 3 / 2 !important;
  border-radius: 6px !important;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.55s ease;
  display: block;
}

.portfolio-item:hover img {
  transform: scale(1.08) !important;
  filter: brightness(1.06) saturate(1.12) !important;
}

.portfolio-item:hover {
  transform: none !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45),
              0 0 0 2px rgba(0,128,248,0.4) !important;
  z-index: 2;
}

/* definitive overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(1,15,40,0.94) 0%,
    rgba(1,15,40,0.50) 42%,
    rgba(0,128,248,0.04) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1 !important;
}

.pf-cat-tag {
  font-size: 10px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue) !important;
  background: rgba(0,128,248,0.18);
  border-radius: 100px;
  padding: 3px 9px;
  margin-bottom: 5px;
  display: inline-block;
}

.portfolio-label {
  font-size: 12px !important;
  font-weight: 600;
  color: #ffffff !important;
  letter-spacing: 0.02em;
  line-height: 1.3;
  transform: translateY(6px);
  opacity: 0;
  transition: transform 0.35s ease 0.06s, opacity 0.35s ease 0.06s;
}

.portfolio-item:hover .portfolio-label {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* ─── PORTFOLIO FILTERS: refined ─────────────────────────── */
.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px !important;
  padding-bottom: 0 !important;
}

.pf-btn {
  padding: 8px 18px !important;
  font-size: 12px !important;
  font-weight: 600;
  color: rgba(255,255,255,0.55) !important;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.04em;
}

.pf-btn:hover,
.pf-btn.is-active {
  color: #ffffff !important;
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,128,248,0.30);
}

/* ─── FAQ SECTION ────────────────────────────────────────── */
#faq {
  padding: var(--section-v) 0;
  background: #010D24;
  position: relative;
  overflow: hidden;
}

#faq::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,128,248,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.faq-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  margin-bottom: 0;
}

.faq-grid {
  max-width: 780px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.28s ease, background 0.28s ease;
}

.faq-item:hover,
.faq-item.is-open {
  border-color: rgba(0,128,248,0.30);
  background: rgba(0,128,248,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.25s ease;
  line-height: 1.4;
}

.faq-question:hover {
  color: #ffffff;
}

.faq-item.is-open .faq-question {
  color: #ffffff;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,128,248,0.12);
  border-radius: 50%;
  color: var(--blue);
  font-size: 12px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1),
              padding 0.28s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 22px;
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.78;
  margin: 0;
}

.faq-cta {
  text-align: center;
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
  margin: 0;
}

/* ─── GLOBAL: Button hover polish ───────────────────────── */
.btn {
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.22s ease,
              background 0.22s ease,
              border-color 0.22s ease !important;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,128,248,0.38);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.08);
}

/* ─── GLOBAL: Process cards — hover lift ────────────────── */
.process-card {
  transition: transform 0.30s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.30s ease,
              border-color 0.30s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  border-color: rgba(0,128,248,0.25) !important;
}

/* ─── GLOBAL: Advantage cards — hover lift ──────────────── */
.adv-card {
  transition: transform 0.30s ease,
              box-shadow 0.30s ease,
              border-color 0.30s ease;
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.30);
  border-color: rgba(0,128,248,0.20) !important;
}

/* ─── GLOBAL: Service cards — hover lift ────────────────── */
.svc-card {
  transition: transform 0.30s ease,
              box-shadow 0.30s ease,
              border-color 0.30s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* ─── GLOBAL: Testimonial cards — hover glow ───────────── */
.testimonial-card {
  transition: transform 0.30s ease,
              box-shadow 0.30s ease,
              border-color 0.30s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.30);
  border-color: rgba(0,128,248,0.20) !important;
}

/* ─── GLOBAL: Navbar CTA button micro-feedback ──────────── */
.nav-cta-btn {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease !important;
}
.nav-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,128,248,0.35);
}

/* ─── GLOBAL: Platform badges — hover lift ──────────────── */
.plat-badge {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plat-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-color: rgba(0,128,248,0.30) !important;
}

/* ─── GLOBAL: Social footer icons — hover spin ──────────── */
.fsoc {
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.fsoc:hover {
  transform: translateY(-3px) scale(1.12);
}

/* ─── GLOBAL: Hero badge entry animation ────────────────── */
@keyframes hero-badge-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  animation: hero-badge-in 0.6s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}

/* ─── GLOBAL: Marquee items — subtle hover ──────────────── */
.mq-item {
  transition: color 0.2s ease;
}

.mq-item:hover {
  color: var(--blue);
}

/* ─── RESPONSIVE: Portfolio grid ────────────────────────── */
@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }

  .faq-question {
    font-size: 14px;
    padding: 18px 18px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .faq-grid {
    margin-top: 36px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
  }

  .portfolio-item {
    aspect-ratio: 1 / 1 !important;
  }
}

/* ─── HERO: Trust badge ──────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  animation: hero-badge-in 0.6s cubic-bezier(0.4,0,0.2,1) 0.55s both;
}

.hero-trust-stars {
  display: flex;
  gap: 3px;
}

.hero-trust-stars i {
  color: #FBBF24;
  font-size: 15px;
}

.hero-trust-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-trust-text strong {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

/* ─── FAQ: title always white ─────────────────────────────── */
#faq .section-title {
  color: #ffffff !important;
}

/* ════════════════════════════════════════════════════════════════
   PREMIUM UPGRADE — v3.0
   Animations · Visual quality · Responsiveness · CRO
   Stripe / Linear / Framer standard
════════════════════════════════════════════════════════════════ */

/* ── 0. DESIGN TOKENS UPGRADE ─────────────────────────────── */
:root {
  /* Extended shadow scale */
  --sh-xs:  0 1px 3px rgba(0,0,0,0.12);
  --sh-sm:  0 2px 8px rgba(0,0,0,0.18);
  --sh-md:  0 8px 24px rgba(0,0,0,0.22);
  --sh-lg:  0 16px 48px rgba(0,0,0,0.28);
  --sh-xl:  0 24px 64px rgba(0,0,0,0.36);
  --sh-glow: 0 0 0 1px rgba(0,128,248,0.25), 0 8px 32px rgba(0,128,248,0.18);

  /* Glass surfaces */
  --glass-bg:     rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.09);
  --glass-hover:  rgba(255,255,255,0.08);

  /* Animation tokens */
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    180ms;
  --dur-base:    280ms;
  --dur-slow:    480ms;
}

/* ── 1. ANIMATION VARIANTS ─────────────────────────────────── */

/* Fade-up (default .reveal) — already set, enrich timing */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}

/* Fade-left */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}

/* Fade-right */
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}

/* Scale-in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
  will-change: opacity, transform;
}

/* Fade-in (no movement) */
.reveal-fade {
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
  will-change: opacity;
}

/* Visible states */
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-fade.is-visible {
  opacity: 1;
  transform: none;
}

/* Reduced motion: skip all animations */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── 2. SECTION RHYTHM & SPACING ──────────────────────────── */
:root {
  --section-v: 100px;
}

@media (max-width: 1024px) { :root { --section-v: 80px; } }
@media (max-width: 768px)  { :root { --section-v: 64px; } }
@media (max-width: 480px)  { :root { --section-v: 52px; } }

/* ── 3. CONTAINER — ultrawide constraint ──────────────────── */
.container {
  max-width: min(var(--max-w), 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 48px);
  padding-right: clamp(16px, 4vw, 48px);
}

@media (min-width: 1600px) {
  .container {
    max-width: 1320px;
  }
}

/* ── 4. TYPOGRAPHY SCALE ──────────────────────────────────── */
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h3 { letter-spacing: -0.015em; }

/* Improved body text contrast */
p { color: rgba(255,255,255,0.72); }

/* ── 5. GLOBAL FOCUS STATES (accessibility) ───────────────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 6. BUTTON SYSTEM — premium states ────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out) !important;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast) ease;
  pointer-events: none;
  border-radius: inherit;
}

.btn:hover::after {
  background: rgba(255,255,255,0.07);
}

.btn:active {
  transform: scale(0.975) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #0090FF 0%, #0060D0 100%);
  box-shadow: 0 2px 8px rgba(0,128,248,0.30), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #00A0FF 0%, #0070E0 100%);
  box-shadow: 0 8px 28px rgba(0,128,248,0.42), inset 0 1px 0 rgba(255,255,255,0.15);
  transform: translateY(-2px) !important;
}

.btn-secondary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
}

/* ── 7. NAVBAR PREMIUM ─────────────────────────────────────── */
#navbar {
  /* backdrop-filter must NOT be set on the parent — it blocks
     the backdrop-filter on child .nav-wrapper in Chrome/Safari.
     The blur effect lives exclusively on .nav-wrapper. */
}

#navbar.is-scrolled .nav-wrapper {
  height: var(--nav-h);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--dur-fast) ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

/* ── 8. HERO — premium depth layers ───────────────────────── */
#banner {
  position: relative;
  overflow: hidden;
}

#banner::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(0,128,248,0.10) 0%,
    rgba(0,80,200,0.05) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  background: rgba(0,128,248,0.12);
  border: 1px solid rgba(0,128,248,0.25);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,128,248,0.12);
}

/* ── 9. SECTION EYEBROW — refined ─────────────────────────── */
.section-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── 10. PROCESS CARDS — glass premium ────────────────────── */
.process-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  position: relative;
  overflow: visible;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,128,248,0.4), transparent);
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}

.process-card:hover::before {
  opacity: 1;
}

.process-card:hover {
  background: var(--glass-hover) !important;
  border-color: rgba(0,128,248,0.20) !important;
  transform: translateY(-6px) !important;
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(0,128,248,0.08) !important;
}

/* ── 11. SERVICE CARDS — glass + glow ─────────────────────── */
.svc-card {
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(0,128,248,0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card:hover {
  border-color: rgba(0,128,248,0.22) !important;
  transform: translateY(-6px) !important;
  box-shadow: var(--sh-lg) !important;
}

/* ── 12. ADVANTAGE CARDS ───────────────────────────────────── */
.adv-card {
  position: relative;
  overflow: hidden;
}

.adv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(0,128,248,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.adv-card:hover::after {
  transform: scaleX(1);
}

.adv-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: var(--sh-lg) !important;
  border-color: rgba(0,128,248,0.20) !important;
}

/* ── 13. TESTIMONIALS — premium cards ─────────────────────── */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(0,128,248,0.08);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(0,128,248,0.20) !important;
  box-shadow: var(--sh-lg) !important;
}

/* ── 14. LEAD CONTACT CARD — restored white card ──────────── */
.lc-card {
  background: #ffffff;
  border: 1px solid rgba(0,128,248,0.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 40px rgba(0,80,200,0.10), 0 2px 8px rgba(0,0,0,0.05);
}

/* ── 15. STAT CARDS — number glow ─────────────────────────── */
.stat-card {
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) ease, box-shadow var(--dur-base) ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(0,128,248,0.12);
}

.stat-number {
  background: linear-gradient(135deg, #ffffff 0%, rgba(0,128,248,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 16. PLATFORM BADGES — glass pill premium ─────────────── */
.plat-badge {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--dur-base) ease,
              box-shadow var(--dur-base) ease,
              border-color var(--dur-base) ease,
              background var(--dur-base) ease;
}

.plat-badge:hover {
  transform: translateY(-3px) scale(1.04) !important;
  background: rgba(0,128,248,0.10) !important;
  border-color: rgba(0,128,248,0.30) !important;
  box-shadow: 0 8px 24px rgba(0,128,248,0.15) !important;
}

/* ── 17. FAQ — premium states ──────────────────────────────── */
.faq-item {
  transition: border-color var(--dur-base) ease,
              background var(--dur-base) ease,
              box-shadow var(--dur-base) ease;
}

.faq-item.is-open {
  box-shadow: 0 4px 20px rgba(0,128,248,0.08);
}

/* ── 18. PORTFOLIO GRID — premium hover ────────────────────── */
.portfolio-item {
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.20);
  transition: opacity 0.35s ease,
              box-shadow 0.40s var(--ease-out),
              transform 0.40s var(--ease-out) !important;
}

.portfolio-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.45),
              0 0 0 2px rgba(0,128,248,0.40) !important;
}

/* ── 19. FOOTER SOCIAL ICONS ────────────────────────────────── */
.fsoc {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: transform var(--dur-base) ease,
              background var(--dur-base) ease,
              border-color var(--dur-base) ease;
}

.fsoc:hover {
  background: rgba(0,128,248,0.15) !important;
  border-color: rgba(0,128,248,0.35) !important;
  transform: translateY(-3px) scale(1.10) !important;
}

/* ── 20. MARQUEE — gradient fade edges ─────────────────────── */
#marquee-bar {
  position: relative;
}

#marquee-bar::before,
#marquee-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

#marquee-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

#marquee-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

/* ── 21. SECTION DIVIDERS — subtle gradients ──────────────── */
#about-us,
#process,
#platforms,
#testimonials,
#advantages,
#faq {
  position: relative;
}

/* ── 22. SCROLL-TO-TOP — refined ───────────────────────────── */
.footer-back-top {
  background: rgba(0,128,248,0.15);
  border: 1px solid rgba(0,128,248,0.25);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) ease,
              background var(--dur-base) ease;
}

.footer-back-top:hover {
  background: var(--blue) !important;
  transform: translateY(-3px);
}

/* ── 23. SKIP LINK — accessible ─────────────────────────────── */
.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--sh-md);
}

/* ── 24. SELECTION COLOR ──────────────────────────────────────  */
::selection {
  background: rgba(0,128,248,0.30);
  color: #ffffff;
}

/* ── 25. SCROLLBAR — premium dark ─────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #010F28; }
::-webkit-scrollbar-thumb { background: rgba(0,128,248,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,128,248,0.55); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVENESS — Complete audit 320px → 1920px
══════════════════════════════════════════════════════════════ */

/* ── 1440px+ ──────────────────────────────────────────────── */
@media (min-width: 1440px) {
  :root { --section-v: 112px; }

  .hero-title { font-size: 4.4rem; }

  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ── 1024px → 1279px ──────────────────────────────────────── */
@media (max-width: 1279px) and (min-width: 1025px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* ── ≤ 1024px ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr !important;
  }

  .about-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .reach-layout {
    grid-template-columns: 1fr !important;
  }

  .reach-map-col {
    display: none;
  }

  .lc-layout {
    grid-template-columns: 1fr !important;
  }

  .lc-right {
    display: none;
  }
}

/* ── ≤ 768px ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-v: 64px; }

  /* Hero */
  .hero-title {
    font-size: clamp(1.9rem, 8vw, 2.8rem) !important;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Section header */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* Advantages */
  .advantages-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }

  /* Contact */
  .lc-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lc-actions .btn,
  .lc-btn-wa,
  .lc-btn-mail {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* FAQ */
  .faq-grid {
    margin-top: 32px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }
}

/* ── ≤ 560px ──────────────────────────────────────────────── */
@media (max-width: 560px) {
  /* Services: single column */
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  /* Advantages: single column */
  .advantages-grid {
    grid-template-columns: 1fr !important;
  }

  /* Process: single column */
  .process-grid {
    grid-template-columns: 1fr !important;
  }

  /* Platform badges: 2 per row */
  .plat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  /* Reach stats */
  .reach-stats {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Section tabs */
  .sc-tabs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    padding-bottom: 8px !important;
    gap: 8px !important;
  }

  .sc-tabs::-webkit-scrollbar {
    height: 3px;
  }
}

/* ── ≤ 414px ──────────────────────────────────────────────── */
@media (max-width: 414px) {
  :root { --section-v: 48px; }

  .hero-title {
    font-size: clamp(1.7rem, 9vw, 2.2rem) !important;
  }

  .hero-actions .btn {
    max-width: 100%;
    font-size: 15px;
    padding: 14px 24px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 4px !important;
  }

  .portfolio-item {
    aspect-ratio: 1 / 1 !important;
  }

  .faq-question {
    font-size: 13px;
    padding: 14px 16px;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 16px 16px;
  }
}

/* ── ≤ 380px ──────────────────────────────────────────────── */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem !important;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-trust-text {
    font-size: 12px;
  }

  .hero-trust-stars i {
    font-size: 13px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* ── ≤ 320px ──────────────────────────────────────────────── */
@media (max-width: 320px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-title {
    font-size: 1.5rem !important;
    letter-spacing: -0.02em;
  }

  .section-title {
    font-size: 1.35rem !important;
  }

  .nav-cta-btn {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Landscape mobile ─────────────────────────────────────── */
@media (max-height: 500px) and (orientation: landscape) {
  #banner {
    min-height: 100vh;
    padding: 60px 0 32px;
  }

  .hero-title {
    font-size: 1.8rem !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   CRO IMPROVEMENTS
══════════════════════════════════════════════════════════════ */

/* Primary CTA — stronger visual weight */
.lc-btn-main,
.btn-primary.nav-cta-btn {
  position: relative;
}

.lc-btn-main::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r-full) + 1px);
  background: linear-gradient(135deg, rgba(0,180,255,0.4), rgba(0,80,200,0.4));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--dur-base) ease;
}

.lc-btn-main:hover::before {
  opacity: 1;
}

/* Benefit list icons — stronger */
.lc-benefits li i {
  color: #22c55e;
  filter: drop-shadow(0 0 4px rgba(34,197,94,0.4));
}

/* Stars — warmer yellow */
.testi-stars i {
  color: #FBBF24;
  filter: drop-shadow(0 1px 3px rgba(251,191,36,0.35));
}

/* Service CTA links — stronger arrow animation */
.svc-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: color var(--dur-fast) ease, gap var(--dur-base) var(--ease-spring);
}

.svc-link:hover {
  gap: 10px;
}

.svc-link i {
  transition: transform var(--dur-base) var(--ease-spring);
}

.svc-link:hover i {
  transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════════
   PERFORMANCE: GPU hints
══════════════════════════════════════════════════════════════ */
.portfolio-item,
.process-card,
.svc-card,
.adv-card,
.testimonial-card,
.stat-card,
.faq-item,
.plat-badge,
.btn {
  transform: translateZ(0);
}

/* ── HOW IT WORKS — glass card fixes & improvements ───────── */

/* Card header: "How it works" label */
.lc-card-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lc-card-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0.7;
}

/* Step number circle - bright on dark glass */
.lc-step-num {
  background: linear-gradient(135deg, rgba(0,128,248,0.12), rgba(0,80,200,0.08)) !important;
  border: 1.5px solid rgba(0,128,248,0.35) !important;
  color: var(--blue) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 8px rgba(0,128,248,0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Connector line — subtle blue gradient */
.lc-step-conn {
  background: linear-gradient(to bottom, rgba(0,128,248,0.40), rgba(0,128,248,0.06)) !important;
}

/* Step body text — always light on dark glass */
.lc-card .fa-step-body h3 {
  color: var(--text-dark) !important;
  font-size: 15px;
  font-weight: 700;
  margin-top: 6px;
}
.lc-card .fa-step-body p {
  color: var(--text-muted) !important;
  font-size: 13.5px;
  line-height: 1.65;
}

/* Last step: extra bottom accent */
.lc-card .fa-steps li:last-child .fa-step-body {
  position: relative;
  padding-bottom: 20px;
}
.lc-card .fa-steps li:last-child .fa-step-body::after {
  content: 'Free · No commitment · No credit card';
  display: block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(0,128,248,0.75);
  text-transform: uppercase;
}

/* Hover: step numbers glow */
.lc-card:hover .lc-step-num {
  box-shadow: 0 0 0 6px rgba(0,128,248,0.10), 0 0 16px rgba(0,128,248,0.28);
  transform: scale(1.05);
}
