/* ===== Design Tokens ===== */
:root {
  --bg: #ffffff;
  --bg-2: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.7);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(15, 23, 42, 0.08);
  --text: #0b1020;
  --text-muted: #5b6478;
  --primary: #06b6d4;
  --secondary: #7c3aed;
  --accent: #ec4899;
  --gradient: linear-gradient(135deg, #06b6d4 0%, #7c3aed 50%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, rgba(6, 182, 212, 0.10), rgba(124, 58, 237, 0.10));
  --shadow-glow: 0 20px 60px -20px rgba(124, 58, 237, 0.35), 0 10px 40px -10px rgba(6, 182, 212, 0.25);
  --shadow-card: 0 4px 24px -8px rgba(15, 23, 42, 0.10), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
  --radius: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
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;
  position: relative;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Background FX ===== */
.bg-orbs { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.18; animation: float 18s ease-in-out infinite; }
.orb-1 { width: 500px; height: 500px; background: #06b6d4; top: -150px; left: -100px; }
.orb-2 { width: 600px; height: 600px; background: #7c3aed; top: 40%; right: -200px; animation-delay: -6s; }
.orb-3 { width: 450px; height: 450px; background: #ec4899; bottom: -150px; left: 30%; animation-delay: -12s; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-40px) scale(1.1); }
}
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all 0.3s ease;
  font-family: inherit; white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 10px 28px -6px rgba(124,58,237,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(236,72,153,0.55); }
.btn-ghost {
  background: #ffffff; color: var(--text); border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); box-shadow: 0 6px 18px -8px rgba(6,182,212,0.4); }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.brand img { height: 40px; width: auto; }
.footer img { height: 36px; width: auto; margin-bottom: 8px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-muted); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* ===== Hero ===== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 80px 6vw 120px; max-width: 1400px; margin: 0 auto;
}
.badge {
  display: inline-block; padding: 8px 16px; border-radius: 999px;
  background: var(--gradient-soft); border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); margin-bottom: 24px; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 36px; max-width: 540px; }
.hero-sub strong { color: var(--text); }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.8rem; font-family: 'Space Grotesk'; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats span { color: var(--text-muted); font-size: 13px; }

.hero-visual { position: relative; }
.hero-glow {
  position: absolute; inset: -10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.4), transparent 60%);
  filter: blur(60px); z-index: 0;
}
.hero-img {
  position: relative; z-index: 1; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  border: 1px solid var(--border);
  width: 100%; height: auto;
  animation: rise 1s ease-out;
}
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.floating-card {
  position: absolute; z-index: 2;
  padding: 12px 18px; border-radius: 12px;
  background: #ffffff; backdrop-filter: blur(14px);
  border: 1px solid var(--border); color: var(--text);
  font-size: 13px; font-weight: 600;
  box-shadow: 0 14px 30px -10px rgba(15,23,42,0.18);
  animation: bob 4s ease-in-out infinite;
}
.card-1 { top: 8%; left: -8%; animation-delay: 0s; }
.card-2 { top: 45%; right: -6%; animation-delay: -1.3s; }
.card-3 { bottom: 12%; left: -4%; animation-delay: -2.6s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Sections ===== */
.section { padding: 100px 6vw; max-width: 1400px; margin: 0 auto; }
.section-alt {
  background: linear-gradient(180deg, transparent, #f5f7fb, transparent);
  max-width: none;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ===== Feature Grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: #ffffff; border: 1px solid var(--border);
  box-shadow: var(--shadow-card); transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-soft); opacity: 0; transition: opacity 0.4s;
}
.feature-card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 20px 50px -12px rgba(124,58,237,0.25); }
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient); font-size: 26px; margin-bottom: 20px;
  box-shadow: 0 10px 24px -6px rgba(6,182,212,0.45);
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ===== Steps ===== */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px; max-width: 1100px; margin: 0 auto; padding: 0 6vw;
}
.step {
  padding: 36px; border-radius: var(--radius-lg);
  background: #ffffff; border: 1px solid var(--border);
  box-shadow: var(--shadow-card); position: relative;
}
.step-num {
  font-family: 'Space Grotesk'; font-size: 3rem; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--text-muted); }

/* ===== Pricing ===== */
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
  position: relative; max-width: 460px; width: 100%;
  padding: 48px 40px; border-radius: var(--radius-lg);
  background: #ffffff; border: 1px solid var(--border);
  box-shadow: 0 30px 80px -30px rgba(124,58,237,0.35); overflow: hidden;
}
.pricing-glow {
  position: absolute; inset: -2px; border-radius: var(--radius-lg);
  background: var(--gradient); z-index: -1; opacity: 0.25; filter: blur(24px);
}
.pricing-tag {
  position: absolute; top: 20px; right: 20px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--gradient); font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.price { display: flex; align-items: baseline; gap: 4px; margin: 20px 0 28px; }
.currency { font-size: 1.8rem; font-weight: 600; }
.amount { font-size: 4.5rem; font-weight: 700; font-family: 'Space Grotesk'; line-height: 1; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.per { color: var(--text-muted); font-size: 0.95rem; margin-left: 6px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 0.95rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 16px; }

/* ===== CTA ===== */
.cta-section { padding: 80px 6vw 120px; max-width: 1400px; margin: 0 auto; }
.cta-card {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; align-items: stretch;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #ffffff; border: 1px solid var(--border);
  box-shadow: var(--shadow-glow);
}
.cta-img { width: 100%; height: 100%; object-fit: cover; }
.cta-content { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.cta-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin: 16px 0; }
.cta-content p { color: var(--text-muted); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Footer ===== */
.footer { border-top: 1px solid var(--border); padding: 50px 6vw 30px; background: #f5f7fb; }
.footer-inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer img { height: 36px; width: auto; margin-bottom: 8px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.muted { color: var(--text-muted); font-size: 14px; }
.small { font-size: 12px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 60px; }
  .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
  .nav-links { display: none; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-img { max-height: 280px; }
  .cta-content { padding: 40px 30px; }
  .section { padding: 70px 6vw; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .hero-stats { gap: 24px; }
  .hero-stats strong { font-size: 1.4rem; }
  .floating-card { font-size: 11px; padding: 8px 12px; }
  .pricing-card { padding: 36px 24px; }
  .amount { font-size: 3.5rem; }
}

/* ===== Contact additions ===== */
.topbar {
  position: relative; z-index: 60;
  text-align: center; font-size: 13px; padding: 10px 6vw;
  background: var(--gradient); color: #ffffff; font-weight: 600;
  letter-spacing: 0.01em;
}
.topbar a { text-decoration: underline; color: #ffffff; }
.topbar strong { color: #ffffff; }

.contact-pill {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 28px; padding: 12px 18px; border-radius: 999px;
  background: #ffffff; border: 1px solid var(--border);
  box-shadow: var(--shadow-card); font-size: 14px;
}
.contact-pill a {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text;
  color: transparent; font-weight: 700;
}
.contact-pill a:hover { text-decoration: underline; }

.inline-link {
  background: var(--gradient); -webkit-background-clip: text; background-clip: text;
  color: transparent; font-weight: 600;
}
.inline-link:hover { text-decoration: underline; }

.cta-email { margin-top: 16px; color: var(--text-muted); font-size: 0.9rem; }
.cta-email a { color: var(--primary); font-weight: 600; }
.cta-email a:hover { text-decoration: underline; }
