/* ============================================================
   NFIT Solutions Pvt Ltd — v2 POLISHED STYLESHEET
   Palette: Deep Midnight Blue + Electric Cyan Accent + Slate White
   Typography: Sora (headings) + Inter (body)
   ============================================================ */

/* ── IMPROVED: Google Fonts — Sora + Inter pairing ── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ══════════════════════════════════════════
   CSS CUSTOM PROPERTIES — UPGRADED PALETTE
══════════════════════════════════════════ */
:root {
  /* Core blues — refined corporate identity */
  --deep:        #050D1A;
  --midnight:    #080F1E;
  --navy:        #0A1628;
  --navy-mid:    #0E1F38;
  --navy-light:  #162B4D;
  --panel:       #0C1930;
  --card-bg:     #0F1E35;

  /* Accent — electric azure */
  --accent:      #1A73E8;
  --accent-2:    #0EA5E9;
  --accent-glow: rgba(26,115,232,0.25);
  --cyan:        #38BDF8;
  --cyan-pale:   #BAE6FD;

  /* Warm highlight */
  --gold:        #F59E0B;
  --gold-light:  #FCD34D;

  /* Text */
  --white:       #FFFFFF;
  --text-bright: #E8F0FE;
  --text-mid:    #A8BEDB;
  --text-muted:  #637B9A;

  /* Borders */
  --border:      rgba(56,140,240,0.14);
  --border-glow: rgba(56,189,248,0.28);

  /* System */
  --radius:      12px;
  --radius-lg:   18px;
  --shadow-sm:   0 4px 16px rgba(0,0,0,0.3);
  --shadow:      0 8px 40px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px rgba(26,115,232,0.18);
  --transition:  0.32s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.18s ease;
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  color: var(--white);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: 'Inter', sans-serif; }

/* ── UTILITIES ── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 110px 0; }
.accent { color: var(--accent-2); }
.gold-text { color: var(--gold); }
.text-center { text-align: center; }

/* Section labels — improved */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 2px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.85;
}

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-header.centered .section-label { justify-content: center; }

/* ══════════════════════════════════════════
   BUTTONS — UPGRADED
   IMPROVED: Gradient primary, shine sweep effect
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Shine sweep pseudo-element */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn:hover::after { left: 160%; }

.btn-primary {
  background: linear-gradient(135deg, #1A73E8 0%, #0EA5E9 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,115,232,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,115,232,0.55);
  background: linear-gradient(135deg, #1565C0 0%, #0284C7 100%);
}

.btn-outline {
  background: transparent;
  color: var(--accent-2);
  border: 1.5px solid rgba(14,165,233,0.45);
}
.btn-outline:hover {
  background: rgba(14,165,233,0.1);
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-bright);
  border: 1.5px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #E97316 100%);
  color: #1a0800;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,158,11,0.5);
}

/* ══════════════════════════════════════════
   LOGO COMPONENT — IMPROVED
   IMPROVED: SVG inline logo replaces plain text
══════════════════════════════════════════ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #1A73E8, #38BDF8);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,115,232,0.4);
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 50%; height: 80%;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  filter: blur(4px);
}
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   HEADER — IMPROVED
   IMPROVED: Enhanced glassmorphism, thinner border, progress bar
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,15,30,0.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
  background: rgba(8,15,30,0.96);
}

/* Reading progress bar */
.progress-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transition: width 0.1s linear;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-bright);
  transition: all var(--transition);
  border-radius: 2px;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(8,15,30,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 28px 28px 32px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  animation: slideDown 0.28s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding: 12px 0;
  border-bottom: 1px solid rgba(56,140,240,0.08);
  transition: color var(--transition), padding-left var(--transition);
  font-weight: 500;
}
.mobile-menu a:hover { color: var(--cyan); padding-left: 6px; }
.mobile-menu .btn { margin-top: 14px; text-align: center; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   HERO — COMPLETELY REDESIGNED
   IMPROVED: Layered mesh gradient, floating orbs, particle dots,
   hero split layout, animated headline entrance
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(26,115,232,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(6,182,212,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #080F1E 0%, #050D1A 50%, #08142A 100%);
  padding: 80px 0;
}

/* Animated grid overlay */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 72px 72px; }
}

/* Floating glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(26,115,232,0.18) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -60px; left: -60px;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  animation: orbFloat 16s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 200px; height: 200px;
  top: 40%; right: 28%;
  background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(18px, -22px); }
  66%       { transform: translate(-14px, 12px); }
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 660px; }

/* Hero badge — IMPROVED */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,115,232,0.12);
  border: 1px solid rgba(56,189,248,0.28);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 30px;
  /* ANIMATION: fade + slide from left */
  animation: heroFadeIn 0.8s ease 0.1s both;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(56,189,248,0.4); }
  50%       { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 0 5px rgba(56,189,248,0); }
}

/* Hero headline — animated entrance */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.09;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
  animation: heroFadeIn 0.9s ease 0.25s both;
}
.hero-title .hero-accent {
  position: relative;
  color: transparent;
  background: linear-gradient(135deg, #38BDF8 0%, #60A5FA 50%, #818CF8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
}
/* Animated underline under accent word */
.hero-title .hero-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #38BDF8, #818CF8);
  border-radius: 3px;
  animation: underlineGrow 1s ease 1.1s both;
  transform-origin: left;
  transform: scaleX(0);
}
@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

.hero-description {
  font-size: 1.08rem;
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 40px;
  max-width: 540px;
  animation: heroFadeIn 0.9s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: heroFadeIn 0.9s ease 0.55s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: heroFadeIn 0.9s ease 0.7s both;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(56,140,240,0.2);
  align-self: stretch;
}
.hero-stat .stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-stat .stat-num span { color: var(--accent-2); }
.hero-stat .stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 5px;
  font-weight: 500;
}

/* Hero visual panel — right column */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: heroFadeIn 1s ease 0.5s both;
}

/* Floating service cards — IMPROVED */
.hero-card {
  background: rgba(14,31,56,0.85);
  border: 1px solid rgba(56,140,240,0.18);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
  cursor: default;
}
.hero-card:nth-child(1) { animation: cardFloat 7s ease-in-out infinite; margin-right: 20px; }
.hero-card:nth-child(2) { animation: cardFloat 8.5s ease-in-out infinite 1.5s; margin-left: 20px; }
.hero-card:nth-child(3) { animation: cardFloat 6.5s ease-in-out infinite 3s; margin-right: 20px; }
.hero-card:hover {
  border-color: rgba(56,189,248,0.4);
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(26,115,232,0.2);
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
.hero-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,115,232,0.25), rgba(14,165,233,0.15));
  border: 1px solid rgba(56,189,248,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-card-text h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--white);
}
.hero-card-text p {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.hero-card-badge {
  margin-left: auto;
  background: rgba(26,115,232,0.15);
  border: 1px solid rgba(56,189,248,0.2);
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

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

/* ══════════════════════════════════════════
   TRUSTED MARQUEE STRIP — IMPROVED
   IMPROVED: Fade edges, cleaner items
══════════════════════════════════════════ */
.trusted-strip {
  background: rgba(8,15,30,0.9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
/* Gradient fade on sides */
.trusted-strip::before,
.trusted-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.trusted-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--midnight), transparent);
}
.trusted-strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--midnight), transparent);
}
.trusted-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.trusted-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  white-space: nowrap;
  border-right: 1px solid rgba(56,140,240,0.1);
}
.trusted-item svg { opacity: 0.4; width: 14px; height: 14px; fill: var(--cyan); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   SERVICE HIGHLIGHTS — IMPROVED
   IMPROVED: New card style with gradient accent line,
   hover glow, number badge, better spacing
══════════════════════════════════════════ */
.highlights { background: var(--midnight); }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px 30px;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
/* Top accent line animation */
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--accent));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  animation: none;
}
.highlight-card:hover { transform: translateY(-7px); border-color: rgba(56,189,248,0.3); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(56,189,248,0.08), var(--shadow-glow); }
.highlight-card:hover::before { transform: scaleX(1); }

/* Bottom glow */
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 80px;
  background: radial-gradient(ellipse, rgba(26,115,232,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.highlight-card:hover::after { opacity: 1; }

.hc-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(56,189,248,0.3);
  margin-bottom: 18px;
}
.hc-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,115,232,0.18), rgba(14,165,233,0.08));
  border: 1px solid rgba(56,189,248,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.highlight-card:hover .hc-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(26,115,232,0.25);
}
.highlight-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.highlight-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 22px;
}
.hc-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.hc-link:hover { gap: 10px; color: var(--cyan); }

/* ══════════════════════════════════════════
   WHY US — IMPROVED
   IMPROVED: Feature list with line connectors, image shine
══════════════════════════════════════════ */
.why-us { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content .section-subtitle { max-width: 100%; margin-bottom: 36px; }

.why-features { display: flex; flex-direction: column; gap: 0; }

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(56,140,240,0.08);
  transition: background var(--transition);
}
.why-feature:last-child { border-bottom: none; }
.why-feature:hover { background: rgba(26,115,232,0.03); border-radius: 8px; padding-left: 8px; }

.wf-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(26,115,232,0.18), rgba(14,165,233,0.08));
  border: 1px solid rgba(56,189,248,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.wf-text h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--white);
}
.wf-text p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

.why-image-col { position: relative; }

.why-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}
.why-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,15,30,0.5) 100%);
}
.why-img-wrap img { width: 100%; height: 420px; object-fit: cover; }

.why-badge-float {
  position: absolute;
  bottom: -18px; left: -18px;
  background: linear-gradient(135deg, #1A73E8, #0EA5E9);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(26,115,232,0.5);
  z-index: 2;
}
.why-badge-float .badge-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.why-badge-float .badge-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 3px;
}

/* Decorative corner ring */
.why-corner-ring {
  position: absolute;
  top: -24px; right: -24px;
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1.5px dashed rgba(56,189,248,0.2);
  animation: spinSlow 20s linear infinite;
  z-index: 0;
}
.why-corner-ring::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px; right: 12px; bottom: 12px;
  border-radius: 50%;
  border: 1px dashed rgba(56,189,248,0.12);
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════
   PAGE HERO — IMPROVED
   IMPROVED: Richer gradient, better typography alignment
══════════════════════════════════════════ */
.page-hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(26,115,232,0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--midnight) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-grid { position: absolute; inset: 0; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); margin-bottom: 18px; letter-spacing: -0.03em; }
.page-hero .hero-desc { font-size: 1.05rem; color: var(--text-mid); max-width: 540px; margin: 0 auto; line-height: 1.85; }

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--accent-2); }
.breadcrumb span { color: var(--text-muted); }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-intro { background: var(--midnight); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { color: var(--text-mid); font-size: 0.96rem; line-height: 1.88; margin-bottom: 18px; }

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), var(--shadow-glow);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,15,30,0.4) 100%);
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 70px;
  background: var(--card-bg);
}
.about-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.about-stat:last-child { border-right: none; }
.about-stat:hover { background: rgba(26,115,232,0.05); }
.about-stat .num {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.about-stat .lbl { font-size: 0.76rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

.mv-section { background: var(--navy); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.mv-card:hover { border-color: rgba(56,189,248,0.3); transform: translateY(-4px); }
.mv-num {
  font-family: 'Sora', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(56,189,248,0.06);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.04em;
}
.mv-card h3 { font-size: 1.3rem; font-family: 'Sora', sans-serif; margin-bottom: 14px; color: var(--accent-2); }
.mv-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.82; }

.team-section { background: var(--midnight); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(56,189,248,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.team-img { height: 240px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-img img { transform: scale(1.07); }
.team-info { padding: 22px 24px; }
.team-info h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-info .role { font-size: 0.76rem; color: var(--accent-2); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ══════════════════════════════════════════
   SERVICES — GREATLY IMPROVED
   IMPROVED: Category tabs with indicator, grid alignment,
   card hover lift + inner glow, pricing highlight
══════════════════════════════════════════ */
.service-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding: 6px;
  background: rgba(14,31,56,0.6);
  border: 1px solid var(--border);
  border-radius: 50px;
  width: fit-content;
  max-width: 100%;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.28s ease;
  border: none;
  background: transparent;
  color: var(--text-muted);
  white-space: nowrap;
}
.filter-btn:hover { color: var(--white); background: rgba(56,189,248,0.08); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,115,232,0.4);
}

/* Service cards — IMPROVED */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  transition: all 0.38s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* IMPROVED: Subtle inner gradient */
  background: linear-gradient(160deg, rgba(15,30,53,1) 0%, rgba(12,25,48,1) 100%);
}

/* Animated left border accent */
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--cyan));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  border-radius: 3px 0 0 3px;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,0.28);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(26,115,232,0.1);
}
.service-card:hover::before { transform: scaleY(1); }

.sc-icon {
  width: 48px; height: 48px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(26,115,232,0.2), rgba(14,165,233,0.1));
  border: 1px solid rgba(56,189,248,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover .sc-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(26,115,232,0.3);
}

.sc-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sc-tag::before {
  content: '';
  display: inline-block;
  width: 12px; height: 1.5px;
  background: var(--accent-2);
  border-radius: 2px;
}

.service-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.service-card p {
  font-size: 0.845rem;
  color: var(--text-muted);
  line-height: 1.78;
  flex: 1;
  margin-bottom: 20px;
}

.sc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  border-top: 1px solid rgba(56,140,240,0.1);
  padding-top: 16px;
}
.sc-price .amount {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sc-price .unit { font-size: 0.75rem; color: var(--text-muted); }

/* Pricing Tables — IMPROVED */
.pricing-section { background: var(--navy); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  align-items: start;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.pricing-card.featured {
  border-color: rgba(56,189,248,0.4);
  background: linear-gradient(160deg, #0f2040 0%, var(--card-bg) 100%);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-6px); }

.pricing-featured-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 10px 10px;
}
.pricing-plan {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
  margin-top: 14px;
}
.pricing-price {
  font-family: 'Sora', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.04em;
}
.pricing-price span { font-size: 0.95rem; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 400; }
.pricing-desc { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 26px; line-height: 1.65; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 18px 0 22px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li {
  font-size: 0.855rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(26,115,232,0.12);
  border: 1px solid rgba(56,189,248,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2338BDF8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-features li.unavailable { opacity: 0.38; }
.pricing-features li.unavailable::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M3 3l4 4M7 3l-4 4' stroke='%23637B9A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  border-color: rgba(99,123,154,0.3);
  background-color: transparent;
}

/* ══════════════════════════════════════════
   PORTFOLIO — IMPROVED
   IMPROVED: Overlay with category pill, zoom effect, tall/wide grid
══════════════════════════════════════════ */
.portfolio-section { background: var(--midnight); }

.portfolio-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
  background: var(--card-bg);
  cursor: pointer;
}
.portfolio-item:hover {
  border-color: rgba(56,189,248,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.portfolio-item.wide { grid-column: span 2; }

.portfolio-img {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.portfolio-item.wide .portfolio-img { height: 280px; }
.portfolio-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.portfolio-item:hover .portfolio-img img { transform: scale(1.1); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,15,30,0.1) 0%, rgba(8,15,30,0.96) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.po-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}
.portfolio-overlay h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}
.portfolio-overlay p { font-size: 0.78rem; color: var(--text-mid); line-height: 1.5; }

.portfolio-info { padding: 18px 20px 20px; }
.portfolio-info h3 { font-family: 'Sora', sans-serif; font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; color: var(--white); }
.portfolio-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   TESTIMONIALS — IMPROVED
══════════════════════════════════════════ */
.testimonials { background: var(--navy); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.testimonial-card:hover { border-color: rgba(56,189,248,0.25); transform: translateY(-4px); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 20px;
  font-family: 'Sora', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(56,189,248,0.07);
}
.t-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 3px; margin-bottom: 16px; }
.t-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.82; margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,115,232,0.3), rgba(56,189,248,0.15));
  border: 2px solid rgba(56,189,248,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
}
.t-name { font-family: 'Sora', sans-serif; font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.t-role { font-size: 0.73rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   CTA BANNER — IMPROVED
   IMPROVED: Animated border glow, stronger gradient
══════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #081428 0%, #040C1C 60%, #071220 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.1) 0%, transparent 65%);
  animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 16px; position: relative; letter-spacing: -0.03em; }
.cta-banner p { font-size: 1.02rem; color: var(--text-mid); max-width: 500px; margin: 0 auto 38px; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════════════
   CONTACT PAGE — IMPROVED
══════════════════════════════════════════ */
.contact-section { background: var(--midnight); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }

.contact-info h2 { font-family: 'Sora', sans-serif; font-size: 2rem; margin-bottom: 16px; letter-spacing: -0.03em; }
.contact-info > p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,115,232,0.18), rgba(14,165,233,0.08));
  border: 1px solid rgba(56,189,248,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-text h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 3px;
}
.cd-text p, .cd-text a { font-size: 0.9rem; color: var(--text-mid); line-height: 1.55; }
.cd-text a:hover { color: var(--cyan); }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 9px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  color: var(--text-muted);
}
.social-link:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26,115,232,0.4);
}

.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.contact-form-wrap h3 { font-family: 'Sora', sans-serif; font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-2);
  background: rgba(14,165,233,0.04);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(99,123,154,0.5); }
.form-group select option { background: var(--navy-mid); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.74rem; color: #f87171; display: none; }
.form-group.error input,
.form-group.error textarea { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.12); }
.form-group.error .form-error { display: block; }

/* ══════════════════════════════════════════
   PREMIUM SUCCESS POPUP — NEW
   IMPROVED: Slide-in overlay, scale animation, blur backdrop
══════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,13,26,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  background: linear-gradient(160deg, #0f2040 0%, #0a1628 100%);
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 20px;
  padding: 50px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 60px rgba(26,115,232,0.2);
  transform: scale(0.88) translateY(20px);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  opacity: 0;
}
.popup-overlay.active .popup-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Animated success ring */
.popup-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,115,232,0.2), rgba(56,189,248,0.1));
  border: 2px solid rgba(56,189,248,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}
/* Pulse ring */
.popup-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,0.15);
  animation: ringPulse 2.5s ease-out infinite;
}
.popup-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 1px solid rgba(56,189,248,0.07);
  animation: ringPulse 2.5s ease-out infinite 0.5s;
}
@keyframes ringPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.popup-icon { font-size: 2.2rem; animation: iconBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.3s both; }
@keyframes iconBounce {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.popup-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.popup-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 28px; }
.popup-details {
  background: rgba(56,189,248,0.05);
  border: 1px solid rgba(56,189,248,0.12);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: 0.84rem;
  color: var(--text-mid);
}
.popup-details strong { color: var(--cyan); }
.popup-close-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  border: none;
  border-radius: 9px;
  padding: 13px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}
.popup-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,115,232,0.5);
}
.popup-x {
  position: absolute;
  top: 16px; right: 18px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition);
  line-height: 1;
}
.popup-x:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ══════════════════════════════════════════
   FOOTER — IMPROVED
══════════════════════════════════════════ */
.footer {
  background: #030A15;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin: 18px 0 24px;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: var(--text-muted);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: rgba(56,189,248,0.3);
  transition: color var(--transition);
  font-size: 0.9rem;
}
.footer-col ul li a:hover { color: var(--cyan); padding-left: 4px; }
.footer-col ul li a:hover::before { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom a { color: var(--accent-2); }

/* ══════════════════════════════════════════
   SCROLL REVEAL — IMPROVED
   IMPROVED: Multiple entrance types
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left  { transform: translateX(-30px); }
.reveal.from-right { transform: translateX(30px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0) !important;
}

.stagger > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1)  { transition-delay: 0.04s; }
.stagger.visible > *:nth-child(2)  { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4)  { transition-delay: 0.22s; }
.stagger.visible > *:nth-child(5)  { transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6)  { transition-delay: 0.34s; }
.stagger.visible > *:nth-child(7)  { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(8)  { transition-delay: 0.46s; }
.stagger.visible > *:nth-child(9)  { transition-delay: 0.52s; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(26,115,232,0.5);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(26,115,232,0.65); }

/* ══════════════════════════════════════════
   RESPONSIVE — IMPROVED
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
  .hero-card { margin: 0 !important; animation: none !important; }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item.wide { grid-column: span 1; }
  .mv-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .hero-visual { grid-template-columns: 1fr; }
  .hero-card:nth-child(2), .hero-card:nth-child(3) { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 75px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { gap: 26px; }
  .contact-form-wrap { padding: 28px 22px; }
  .pricing-card.featured { transform: none; }
  .service-filter { border-radius: var(--radius); padding: 4px; }
  .highlights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .popup-card { padding: 36px 24px; }
  .service-filter { width: 100%; border-radius: var(--radius); }
  .filter-btn { flex: 1 1 auto; text-align: center; }
}

/* ================================================================
   V3 PATCH — All targeted fixes and creative enhancements
   1. Hero→Content spacing fix
   2. EasyPaisa-style animated SVG success popup
   3. USD pricing display
   4. Premium custom select dropdown
   5. Creative extras: noise texture, floating particles, etc.
================================================================ */

/* ── FIX 1: HERO NEGATIVE SPACE — zero bottom padding, flush into marquee ── */
.hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: calc(100vh - 70px); /* exact viewport minus header */
}
.hero-container {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Wave divider between hero and marquee strip — visually bridges the gap */
.hero-wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--midnight); /* matches section below */
  margin-top: -2px;
}
.hero-wave-divider svg {
  display: block;
  width: 100%;
  height: 44px;
}

/* Trusted strip flush — no top-margin gap */
.trusted-strip {
  margin-top: 0 !important;
}

/* Tighter first section after strip */
.highlights {
  padding-top: 80px !important;
}

/* ── FIX 2: EASYPAISA-STYLE ANIMATED SUCCESS POPUP ──
   Completely rebuilt popup with:
   - Full-screen flash effect
   - Ripple circle explosion
   - SVG animated checkmark (drawn on)
   - Confetti burst
   - Slide-up card
────────────────────────────────── */

/* Flash overlay */
.popup-overlay {
  background: rgba(4,10,22,0.82) !important;
  backdrop-filter: blur(12px) !important;
}

/* Card — larger, more dramatic */
.popup-card {
  background: linear-gradient(160deg, #081830 0%, #050D1A 100%) !important;
  border: 1px solid rgba(56,189,248,0.2) !important;
  border-radius: 24px !important;
  padding: 52px 44px 44px !important;
  max-width: 460px !important;
  overflow: hidden;
}

/* Green success theme for the icon ring */
.popup-icon-wrap {
  width: 90px !important;
  height: 90px !important;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, rgba(16,185,129,0.08) 100%) !important;
  border: 2px solid rgba(34,197,94,0.4) !important;
  margin-bottom: 28px !important;
  position: relative;
}

/* Remove old emoji icon — replaced by SVG checkmark */
.popup-icon { display: none !important; }

/* SVG animated check — drawn on */
.popup-svg-check {
  width: 48px; height: 48px;
}
.popup-svg-check circle {
  fill: none;
  stroke: rgba(34,197,94,0.25);
  stroke-width: 3;
}
.popup-svg-check .check-path {
  fill: none;
  stroke: #22C55E;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.popup-overlay.active .popup-svg-check .check-path {
  animation: drawCheck 0.55s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* Outer ripple ring 1 */
.popup-ripple-1 {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.2);
  animation: none;
}
.popup-overlay.active .popup-ripple-1 {
  animation: rippleExpand 1.8s ease-out 0.4s infinite;
}
/* Ripple ring 2 */
.popup-ripple-2 {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  border: 1.5px solid rgba(34,197,94,0.1);
  animation: none;
}
.popup-overlay.active .popup-ripple-2 {
  animation: rippleExpand 1.8s ease-out 0.7s infinite;
}
@keyframes rippleExpand {
  0%   { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Green glow pulse behind icon */
.popup-icon-glow {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  50%       { transform: translate(-50%,-50%) scale(1.4); opacity: 0.3; }
}

/* Card title gradient */
.popup-card h3 {
  background: linear-gradient(135deg, #34D399 0%, #22C55E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-size: 1.75rem !important;
  letter-spacing: -0.03em !important;
}

/* Status row — sent badge */
.popup-status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.popup-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: statusBlink 1.5s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.popup-status-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #22C55E;
}

/* Info tiles inside popup */
.popup-info-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.popup-tile {
  background: rgba(56,189,248,0.04);
  border: 1px solid rgba(56,189,248,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
}
.popup-tile-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.popup-tile-value {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  word-break: break-all;
}

/* Confetti dots — CSS only */
.popup-confetti {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.popup-confetti span {
  position: absolute;
  top: -10px;
  width: 6px; height: 6px;
  border-radius: 2px;
  opacity: 0;
}
.popup-overlay.active .popup-confetti span {
  animation: confettiFall 1.4s ease-out forwards;
}
.popup-confetti span:nth-child(1)  { left:10%; background:#38BDF8; animation-delay:0.3s; transform:rotate(20deg); }
.popup-confetti span:nth-child(2)  { left:22%; background:#22C55E; animation-delay:0.4s; width:4px;height:8px; }
.popup-confetti span:nth-child(3)  { left:35%; background:#F59E0B; animation-delay:0.5s; border-radius:50%; }
.popup-confetti span:nth-child(4)  { left:48%; background:#818CF8; animation-delay:0.35s; transform:rotate(-30deg); }
.popup-confetti span:nth-child(5)  { left:60%; background:#38BDF8; animation-delay:0.45s; width:8px;height:4px; }
.popup-confetti span:nth-child(6)  { left:72%; background:#22C55E; animation-delay:0.55s; border-radius:50%; }
.popup-confetti span:nth-child(7)  { left:84%; background:#F59E0B; animation-delay:0.38s; }
.popup-confetti span:nth-child(8)  { left:15%; background:#818CF8; animation-delay:0.6s; width:4px;height:10px; }
.popup-confetti span:nth-child(9)  { left:55%; background:#38BDF8; animation-delay:0.25s; border-radius:50%; }
.popup-confetti span:nth-child(10) { left:90%; background:#22C55E; animation-delay:0.5s; }
@keyframes confettiFall {
  0%   { opacity: 1; top: -10px; transform: translateX(0) rotate(0deg); }
  100% { opacity: 0; top: 70%; transform: translateX(calc(var(--dx, 20px))) rotate(540deg); }
}
.popup-confetti span:nth-child(odd)  { --dx:  25px; }
.popup-confetti span:nth-child(even) { --dx: -25px; }

/* CTA in popup */
.popup-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 9px;
  padding: 11px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #25D366;
  margin-bottom: 12px;
  transition: all var(--transition);
  text-decoration: none;
  width: 100%;
}
.popup-wa-btn:hover {
  background: rgba(37,211,102,0.18);
  color: #25D366;
  transform: translateY(-2px);
}

/* ── FIX 3: USD PRICING BELOW PKR ── */
.pricing-usd {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-top: 3px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pricing-usd::before {
  content: '≈';
  color: rgba(56,189,248,0.4);
  font-size: 0.8rem;
}
.pricing-usd .usd-amount {
  color: rgba(56,189,248,0.65);
  font-weight: 500;
}

/* ── FIX 4: CUSTOM SELECT DROPDOWN — no white optgroup spacing ── */
/* Replace native select with custom styled version */
.form-group .custom-select-wrap {
  position: relative;
}
.form-group .custom-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted);
  pointer-events: none;
  transition: transform 0.2s;
}
.form-group select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
  cursor: pointer;
  padding-right: 36px !important;
}

/* Custom optgroup and option styling */
.form-group select optgroup {
  background: #0A1628 !important;
  color: rgba(56,189,248,0.7) !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 8px 4px 2px !important;
  border-top: 1px solid rgba(56,140,240,0.15) !important;
}
.form-group select option {
  background: #0C1930 !important;
  color: var(--text-bright) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  padding: 8px 12px !important;
  border: none !important;
}
.form-group select option:hover,
.form-group select option:focus,
.form-group select option:checked {
  background: rgba(26,115,232,0.3) !important;
  color: var(--white) !important;
}

/* ── CREATIVE EXTRA 1: NOISE TEXTURE OVERLAY on hero ──
   Adds subtle film grain for premium feel */
.hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E") !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  border-radius: 0 !important;
  width: auto !important; height: auto !important;
  background-size: 256px 256px !important;
  background-color: transparent !important;
  filter: none !important;
  animation: none !important;
}

/* ── CREATIVE EXTRA 2: FLOATING PARTICLE DOTS on hero ── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(56,189,248,0.5);
  animation: particleDrift linear infinite;
}
@keyframes particleDrift {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) translateX(var(--drift, 30px)); opacity: 0; }
}

/* ── CREATIVE EXTRA 3: SERVICE SECTION ALTERNATING BG ── */
.section-alt { background: var(--navy) !important; }
.section-alt-mid { background: var(--midnight) !important; }

/* ── CREATIVE EXTRA 4: HIGHLIGHT CARD glass shimmer on hover ── */
.highlight-card::after {
  content: '' !important;
  position: absolute !important;
  top: -60%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.035), transparent) !important;
  transform: rotate(30deg);
  transition: left 0.7s ease, top 0.7s ease;
  opacity: 1 !important;
  border-radius: 0 !important;
  bottom: auto !important;
}
.highlight-card:hover::after {
  left: 130% !important;
  top: -60% !important;
}

/* ── CREATIVE EXTRA 5: SCROLL PROGRESS COUNTER ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0.6;
  animation: heroFadeIn 1s ease 1.4s both;
}
.scroll-hint span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(56,189,248,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-mouse-dot {
  width: 3px; height: 6px;
  background: var(--cyan);
  border-radius: 3px;
  animation: mouseScroll 2s ease-in-out infinite;
}
@keyframes mouseScroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(10px); opacity: 0; }
  61%       { transform: translateY(0); opacity: 0; }
  80%       { opacity: 1; }
}

/* ── CREATIVE EXTRA 6: SECTION TRANSITION DIVIDER ── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.2) 30%, rgba(56,189,248,0.5) 50%, rgba(56,189,248,0.2) 70%, transparent 100%);
  position: relative;
}
.section-divider::before {
  content: '◆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.5rem;
  color: rgba(56,189,248,0.5);
  background: var(--midnight);
  padding: 0 8px;
}

/* ── CREATIVE EXTRA 7: PRICING CARD GLOW AURA ── */
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(26,115,232,0.3), rgba(56,189,248,0.15), rgba(26,115,232,0.3));
  z-index: -1;
  animation: auraRotate 4s linear infinite;
}
@keyframes auraRotate {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── CREATIVE EXTRA 8: CONTACT PAGE 3-COL QUICK INFO CARDS ── */
.contact-quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.cqc-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}
.cqc-card:hover {
  border-color: rgba(56,189,248,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.cqc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,115,232,0.2), rgba(14,165,233,0.1));
  border: 1px solid rgba(56,189,248,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cqc-text { min-width: 0; }
.cqc-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 3px;
}
.cqc-value {
  font-family: 'Sora', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── CREATIVE EXTRA 9: TECH STACK BADGES ROW (hero or about) ── */
.tech-stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(56,189,248,0.05);
  border: 1px solid rgba(56,189,248,0.12);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.tech-badge:hover {
  background: rgba(56,189,248,0.1);
  border-color: rgba(56,189,248,0.3);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ── RESPONSIVE FIXES V3 ── */
@media (max-width: 768px) {
  .hero-container { padding-top: 60px; padding-bottom: 60px; }
  .contact-quick-cards { grid-template-columns: 1fr; }
  .popup-info-tiles { grid-template-columns: 1fr; }
  .popup-card { padding: 36px 22px 30px !important; }
  .pricing-usd { font-size: 0.72rem; }
}
@media (max-width: 480px) {
  .highlights { padding-top: 60px !important; }
  .contact-quick-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* ================================================================
   UC STORE + LIVE PROGRESS — NFIT Solutions v3
================================================================ */

/* ── LIVE PROJECT PROGRESS SECTION ── */
.live-progress-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.live-progress-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,115,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Pulsing live dot next to title */
.live-pulse-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: #22C55E;
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* Domain progress card grid */
.progress-domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.domain-progress-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.domain-progress-card:hover {
  border-color: rgba(56,189,248,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.dp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.dp-icon {
  font-size: 1.5rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,115,232,0.1);
  border-radius: 10px;
  flex-shrink: 0;
}
.dp-info { flex: 1; min-width: 0; }
.dp-name {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.dp-active {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.dp-count {
  color: var(--cyan);
  font-weight: 700;
  font-family: 'Sora', sans-serif;
}
.dp-pct {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

/* Progress bar */
.dp-bar-wrap {
  height: 6px;
  background: rgba(56,140,240,0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}
.dp-bar {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
/* Shimmer on bar */
.dp-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -40%;
  width: 40%; height: 100%;
  background: rgba(255,255,255,0.3);
  animation: barShimmer 2s linear infinite;
}
@keyframes barShimmer {
  to { left: 140%; }
}

.dp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.dp-footer strong { color: var(--text-bright); }

.dp-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22C55E;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  animation: livePulse 2s ease-in-out infinite;
}
.dp-tag-gold {
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
  color: var(--gold);
  animation: none;
}

/* Overall progress bar */
.overall-progress {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.op-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.op-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.op-val {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-2), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
.op-bar-wrap {
  height: 10px;
  background: rgba(56,140,240,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}
.op-bar {
  height: 100%;
  width: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #1A73E8, #38BDF8, #22C55E);
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
  transition: width 1.8s cubic-bezier(0.4,0,0.2,1);
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.op-bar-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(56,189,248,0.3) 100%);
  border-radius: 10px;
  pointer-events: none;
}
.op-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ── UC STORE SECTION ── */
.uc-store-section {
  background: linear-gradient(160deg, #070F1F 0%, #0B1626 50%, #071020 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle PUBG-style background texture */
.uc-store-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245,158,11,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,115,232,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Trust badges row */
.uc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}
.uc-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light, #FCD34D);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.uc-trust-badge:hover {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.4);
  transform: translateY(-2px);
}

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

.uc-card {
  background: linear-gradient(160deg, #0D1E38 0%, #081526 100%);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.uc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #F59E0B, #FBBF24, #F59E0B);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.uc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,158,11,0.4);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(245,158,11,0.1);
}
.uc-card:hover::before { transform: scaleX(1); }

/* Popular card variants */
.uc-card-popular {
  border-color: rgba(245,158,11,0.3);
  background: linear-gradient(160deg, #131e30 0%, #0c1a2e 100%);
}

/* Popular badge */
.uc-popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F59E0B, #EF4444);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.uc-badge-gold {
  background: linear-gradient(90deg, #F59E0B, #FBBF24) !important;
  color: #1a0800 !important;
}

/* Animated UC coin */
.uc-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: 12px;
}
.uc-coin-anim {
  position: relative;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
}
.uc-coin {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 40%, #F59E0B 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: #1a0800;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 20px rgba(245,158,11,0.4), inset 0 2px 4px rgba(255,255,255,0.3);
  animation: coinSpin 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes coinSpin {
  0%, 100% { transform: rotateY(0deg); }
  25%       { transform: rotateY(20deg); }
  75%       { transform: rotateY(-20deg); }
}
.uc-card:hover .uc-coin { animation: coinSpinFast 0.5s ease-in-out infinite; }
@keyframes coinSpinFast {
  0%   { transform: rotateY(0deg) scale(1.08); }
  50%  { transform: rotateY(180deg) scale(1.08); }
  100% { transform: rotateY(360deg) scale(1.08); }
}

/* Sparkle dots */
.uc-sparkle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FBBF24;
  animation: sparkleUC 2s ease-in-out infinite;
}
.s1 { top: 4px; right: 10px; animation-delay: 0s; }
.s2 { bottom: 8px; left: 8px; animation-delay: 0.6s; width: 4px; height: 4px; }
.s3 { top: 50%; right: 2px; animation-delay: 1.2s; width: 5px; height: 5px; }
@keyframes sparkleUC {
  0%, 100% { opacity: 0; transform: scale(0); }
  50%       { opacity: 1; transform: scale(1); }
}

.uc-amount {
  font-family: 'Sora', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 2px;
}
.uc-bonus {
  font-size: 0.72rem;
  color: #22C55E;
  font-weight: 600;
  margin-bottom: 14px;
  min-height: 18px;
}
.uc-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.uc-price {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.uc-old-price {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.uc-per {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

/* UC buttons */
.btn-uc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 20px;
  border-radius: 8px;
  background: rgba(245,158,11,0.1);
  border: 1.5px solid rgba(245,158,11,0.35);
  color: #F59E0B;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-uc::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-uc:hover::after { left: 150%; }
.btn-uc:hover {
  background: rgba(245,158,11,0.2);
  border-color: #F59E0B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.3);
  color: #F59E0B;
}

.btn-uc-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35);
  position: relative;
  overflow: hidden;
}
.btn-uc-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.btn-uc-primary:hover::after { left: 160%; }
.btn-uc-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.55);
  color: #fff;
}

/* How it works steps */
.uc-how-wrap {
  background: var(--card-bg);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.uc-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.uc-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.uc-step-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(245,158,11,0.4);
  margin-bottom: 10px;
}
.uc-step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.uc-step h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.uc-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.uc-step-arrow {
  font-size: 1.5rem;
  color: rgba(245,158,11,0.35);
  flex-shrink: 0;
  padding: 0 4px;
  margin-top: -20px;
}

/* Responsive for UC */
@media (max-width: 1024px) {
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .progress-domains-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .uc-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .progress-domains-grid { grid-template-columns: 1fr; }
  .uc-steps { flex-direction: column; gap: 20px; }
  .uc-step-arrow { transform: rotate(90deg); }
  .uc-how-wrap { padding: 28px 20px; }
  .op-label { font-size: 0.78rem; }
}
@media (max-width: 400px) {
  .uc-grid { grid-template-columns: 1fr; }
}
