:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #12202f;
  --muted: #5d6b79;
  --line: #e2e8f0;
  --brand: #0b5fff;
  --brand-dark: #0a4bd0;
  --ok: #0f766e;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.brand {
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.3rem;
  color: var(--brand);
}

.brand i { margin-right: 8px; }

nav a {
  color: var(--muted);
  margin-left: 1.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

nav a:hover { color: var(--brand); }

.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(11,95,255,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(15,118,110,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(139,92,246,0.06) 0%, transparent 40%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  z-index: -1;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(11,95,255,0.15) 0%, transparent 70%);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(15,118,110,0.12) 0%, transparent 70%);
  bottom: 20%;
  left: 5%;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  top: 40%;
  right: 5%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(20px) rotate(-5deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-visual {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ok);
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.eyebrow i {
  margin-right: 8px;
  color: #f59e0b;
}

h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin: 0 0 20px; line-height: 1.15; font-weight: 800; }
h1 .highlight {
  background: linear-gradient(135deg, var(--brand), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin: 0 0 12px; font-weight: 700; }
h3 { margin-top: 0; font-weight: 700; }

.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; line-height: 1.7; }

.actions { margin: 28px 0 20px; display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.4rem;
  background: var(--brand);
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover { 
  background: var(--brand-dark); 
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11,95,255,0.25);
}

.btn-ghost {
  background: white;
  color: var(--brand);
  border: 2px solid var(--line);
}

.btn-ghost:hover { 
  background: #f8fafc;
  border-color: var(--brand);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }

.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--ok);
  font-weight: 600;
}

.hero-badges i { color: var(--ok); }

.hero-visual {
  position: relative;
}

.hero-card, .card, .cta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(2,20,50,0.08);
}

.hero-card { 
  padding: 1.5rem; 
  margin-bottom: 1rem;
}

.hero-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  color: var(--brand);
}

.hero-card h3 i { font-size: 1.2rem; }

.stat-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-item {
  text-align: center;
  padding: 10px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
}

.stat-suffix {
  font-size: 1rem;
  color: var(--brand);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}

.hero-graphic {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #bfdbfe;
}

.hero-chart {
  width: 100%;
  height: auto;
}

.section { padding: 80px 0; }
.alt { background: #ffffff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-sub { color: var(--muted); margin-bottom: 32px; font-size: 1.1rem; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 { margin-bottom: 12px; }

.grid {
  display: grid;
  gap: 1.2rem;
}

.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card { 
  padding: 1.5rem; 
  transition: all 0.3s ease;
  border: 1px solid var(--line);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--brand);
}

.card p { margin: 0.6rem 0; color: var(--muted); line-height: 1.6; }
.card ul { margin: 0.5rem 0 0.9rem; padding-left: 1rem; color: #334155; }
.meta { font-size: 0.88rem; color: #64748b; font-weight: 600; }

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #4285f4);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon i {
  font-size: 1.5rem;
  color: var(--brand);
}

.stats-section {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stat-icon i {
  font-size: 1.5rem;
  color: white;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}

.stat-text {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
}

.price-card .price {
  font-size: 1.6rem;
  color: #0f172a;
  font-weight: 800;
  margin: 0.5rem 0;
}

.price-card.featured {
  border: 2px solid #93c5fd;
  box-shadow: 0 12px 40px rgba(37,99,235,0.15);
  position: relative;
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.step-item {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.step-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--brand);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-icon i {
  font-size: 1.5rem;
  color: var(--brand);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--brand), #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.step-connector {
  flex: 0.3;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), #8b5cf6);
  margin-top: 45px;
  opacity: 0.3;
}

.steps h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Trust Section */
.trust-section {
  background: #f8fafc;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.trust-label {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.trust-logo:hover {
  opacity: 1;
  color: var(--brand);
}

.trust-logo i {
  font-size: 1.8rem;
}

.hero-card {
  position: relative;
}

.card-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.hero-card, .card, .cta-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(2,20,50,0.08);
}

.steps > div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.steps > div:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1d4ed8;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.steps h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.cta {
  background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
  padding: 60px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  color: white;
}

.cta h2 { color: white; }
.cta p { opacity: 0.9; font-size: 1.1rem; }

.cta-card { 
  padding: 2rem; 
  background: white;
  border-radius: 16px;
  color: var(--text);
}

.cta-card p { color: var(--muted); margin-bottom: 1rem; }

.cta-card .btn {
  width: 100%;
  justify-content: center;
}

footer { 
  border-top: 1px solid var(--line); 
  background: #0f172a; 
  color: white;
  padding: 40px 0;
}

.foot { 
  display: flex; 
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.7); 
  font-size: 0.9rem;
}

footer .brand { color: white; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer a:hover { color: white; }

@media (max-width: 1024px) {
  .hero-grid, .cta-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-grid, .cta-grid, .steps, .cards-3, .stats-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero { padding-top: 50px; }
  .stat-mini { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
