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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 1rem;
}

:root {
  --bg: #09090b;
  --bg-2: #18181b;
  --bg-3: #27272a;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --accent-glow: rgba(99,102,241,0.3);
  --green: #22c55e;
  --green-glow: rgba(34,197,94,0.3);
  --text: #fafafa;
  --text-2: #c4c4cc;
  --text-3: #d4d4d8;
}

html { scroll-behavior: smooth; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* CURSOR - promoted to own compositing layer to avoid CLS */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  opacity: 0;
  will-change: transform;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(99,102,241,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  will-change: transform;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface-hover); }
.btn-nav {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)) !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 10px !important;
  box-shadow: 0 0 20px var(--accent-glow);
  transition: all 0.2s !important;
}
.btn-nav:hover { box-shadow: 0 0 30px var(--accent-glow); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* BG */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
  will-change: transform;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: float1 15s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  animation: float2 18s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation: float3 20s ease-in-out infinite;
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px, 40px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -30px); } }
@keyframes float3 { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%, -40px); } }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 8px var(--green-glow);
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  font-weight: 900;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #818cf8, #c084fc, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-desc {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.btn-glow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text);
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 0 30px var(--accent-glow);
  position: relative;
  overflow: hidden;
}
.btn-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 0 50px var(--accent-glow); }
.btn-glow:hover::before { opacity: 1; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  color: var(--text);
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--surface-hover);
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f4f4f5, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.hero-stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f4f4f5, #a1a1aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.stat-item p {
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.floating-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}
.floating-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
}
.fcard-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.fcard-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 20px var(--accent-glow);
}
.fcard-header h3 { font-size: 1.05rem; font-weight: 700; }
.fcard-header p { font-size: 0.78rem; color: var(--text-2); }
.fcard-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.fcard-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s;
}
.fcard-item:hover {
  background: rgba(99,102,241,0.08);
  border-color: rgba(99,102,241,0.2);
  transform: translateX(4px);
}
.fcard-item .fi-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.fi-1 { background: rgba(99,102,241,0.15); }
.fi-2 { background: rgba(139,92,246,0.15); }
.fi-3 { background: rgba(34,197,94,0.15); }
.fi-4 { background: rgba(245,158,11,0.15); }
.fcard-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
}
.fcard-item:hover span { color: var(--text); }
a.fcard-item {
  text-decoration: none;
  text-decoration-line: none;
  text-decoration-color: transparent;
  text-underline-offset: unset;
  color: var(--text-2);
  border-bottom: none;
  outline: none;
}
a.fcard-item * { text-decoration-line: none !important; }
a.fcard-item:hover span { color: var(--text); }
a.fcard-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.mini-card {
  position: absolute;
  background: rgba(39,39,42,0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-2);
  font-weight: 500;
  animation: floatCard 6s ease-in-out infinite;
  white-space: nowrap;
  will-change: transform;
}
.mc-1 { top: -20px; right: -30px; animation-delay: 0s; }
.mc-2 { bottom: -20px; left: -30px; animation-delay: 2s; }
.mc-3 { top: 40%; right: -50px; animation-delay: 4s; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mini-card .mc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mc-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green-glow); }
.mc-dot.blue { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.mc-dot.purple { background: var(--accent-2); box-shadow: 0 0 8px rgba(139,92,246,0.3); }

/* SECTION */
section { position: relative; z-index: 1; }
.section-pad { padding: 7rem 1.5rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-glow);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}
.section-header { margin-bottom: 4rem; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* TRUSTED */
.trusted-section { padding-top: 0 !important; padding-bottom: 1rem !important; }
.trusted-header { margin-bottom: 2.5rem; }
.trusted-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.trust-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
  min-width: 110px;
}
.trust-logo-item:hover {
  border-color: rgba(99,102,241,0.25);
  background: rgba(99,102,241,0.04);
  transform: translateY(-4px);
}
.trust-logo-item svg { width: 48px; height: 48px; }
.trust-logo-item span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.trust-logo-item:hover span { color: var(--accent); }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.svc-card,
a.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.svc-card::before,
a.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover,
a.svc-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--accent-glow);
  color: inherit;
}
.svc-card:hover::before,
a.svc-card:hover::before { opacity: 1; }
a.svc-card * { text-decoration-line: none !important; }
.svc-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.svc-card:hover .svc-icon { animation: iconBounce 0.6s ease; }
@keyframes iconBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
.svc-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.svc-card p { color: var(--text-2); font-size: 0.875rem; line-height: 1.7; }
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.2s;
}
.svc-card:hover .tag {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.2);
  color: var(--accent);
}
a.svc-card:hover .tag {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.2);
  color: var(--accent);
}
.svc-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #e879f9;
  transition: gap 0.2s;
  text-decoration: none;
  text-decoration-line: none;
}
a.svc-card:hover .svc-demo-link {
  gap: 0.5rem;
}

/* WHY */
.why-bg { background: linear-gradient(180deg, transparent, rgba(99,102,241,0.03), transparent); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-item:hover {
  border-color: rgba(99,102,241,0.2);
  background: rgba(99,102,241,0.04);
  transform: translateX(6px);
}
.why-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1));
  border: 1px solid rgba(99,102,241,0.2);
}
.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; }
.stats-glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}
.stats-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.5), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-box {
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}
.stat-box:hover { background: rgba(99,102,241,0.06); border-color: rgba(99,102,241,0.2); }
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}
.stat-box p {
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

/* PRICING */
.pricing-card {
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.05));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 20px; right: -35px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
  letter-spacing: 1px;
}
.pricing-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #818cf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  margin: 1rem 0;
}
.pricing-card .price span { font-size: 1rem; color: var(--text-2); font-weight: 500; }
.pricing-card .price-note { color: var(--text-2); font-size: 0.85rem; margin-bottom: 2rem; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-2);
  font-size: 0.9rem;
}
.pricing-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* CTA */
.cta-bg { background: linear-gradient(180deg, transparent, rgba(99,102,241,0.05)); }
.cta-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; }
.cta-inner p { color: var(--text-2); max-width: 480px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #22c55e;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  box-shadow: 0 0 30px rgba(34,197,94,0.3);
}
.btn-wa:hover {
  background: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(34,197,94,0.4);
}
.btn-wa svg { width: 22px; height: 22px; }

/* CONTACT */
.contact-bg { background: linear-gradient(180deg, transparent, rgba(99,102,241,0.03), transparent); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.contact-info > p { color: var(--text-2); margin-bottom: 2rem; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s;
}
.contact-item:hover { border-color: rgba(99,102,241,0.2); background: rgba(99,102,241,0.04); }
.ci-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.1));
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.75rem; color: var(--text-2); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.1rem; }
.contact-item p { font-size: 0.95rem; font-weight: 600; }
.contact-item a { color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--accent); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  backdrop-filter: blur(16px);
}
.contact-form h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-group { margin-bottom: 0.75rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-2); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text);
  transition: all 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #9ca3af; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(99,102,241,0.06);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-group select option { background: #18181b; }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--text);
  padding: 0.85rem;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  box-shadow: 0 0 25px var(--accent-glow);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 0 40px var(--accent-glow); }

/* FOOTER */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand .logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: #c4c4cc; line-height: 1.7; max-width: 280px; }
footer h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: #c4c4cc; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-size: 0.8rem; color: #c4c4cc; }
.footer-bottom a { color: #c4c4cc; text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #22c55e;
  color: white;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 30px rgba(34,197,94,0.4);
  transition: all 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 12px 40px rgba(34,197,94,0.5);
}
.wa-float svg { width: 20px; height: 20px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(34,197,94,0.4); }
  50% { box-shadow: 0 8px 30px rgba(34,197,94,0.4), 0 0 0 10px rgba(34,197,94,0.08); }
}

/* SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-btns, .hero-stats { justify-content: center; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(9,9,11,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 1rem 3rem; }
  .section-pad { padding: 4rem 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { padding: 2.5rem 1.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat-num { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; gap: 1rem; }
  .mini-card { display: none; }
}
