/* ── HOME CSS ── */

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: 4rem 0;
}

.orb-1 {
  width: 600px; height: 600px;
  background: rgba(91,60,245,0.12);
  top: -200px; right: -150px;
}

.orb-2 {
  width: 400px; height: 400px;
  background: rgba(37,99,235,0.08);
  bottom: -100px; left: -100px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  max-width: 540px;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2.5rem;
  background: white;
  border-radius: 100px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.stat-divider {
  width: 1px; height: 32px;
  background: var(--border);
}

/* SERVICES PREVIEW */
.services-preview { background: var(--bg); }

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

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card--featured {
  background: var(--gradient);
  border-color: transparent;
  color: white;
}

.card-icon {
  width: 48px; height: 48px;
  background: var(--gradient-soft);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-1);
}

.card-icon--light {
  background: rgba(255,255,255,0.2);
  color: white;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card--featured p { color: rgba(255,255,255,0.75); }

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-1);
  transition: gap 0.2s;
}

.card-link--light { color: rgba(255,255,255,0.9); }

.card-link:hover { text-decoration: underline; }

/* WHY SECTION */
.why-section { background: white; }

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

.why-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.why-text > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-check {
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--gradient);
  border-radius: 50%;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.why-list li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.why-list li span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* MOCKUP */
.why-visual { position: relative; }

.mockup-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.mockup-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mockup-dots span:nth-child(1) { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #4ade80; }

.mockup-title {
  font-size: 0.8rem;
  font-family: 'DM Mono', 'Courier New', monospace;
  color: var(--text-muted);
}

.mockup-body { padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.mockup-metric {}
.metric-label { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.3rem; }
.metric-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.metric-bar {
  height: 6px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
}
.metric-bar-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 100px;
  animation: growBar 1.5s ease forwards;
  transform-origin: left;
}

@keyframes growBar {
  from { width: 0% !important; }
}

.mockup-tags {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: var(--gradient-soft);
  color: var(--accent-1);
  border: 1px solid rgba(91,60,245,0.12);
}

.mockup-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(91,60,245,0.12);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -80px; right: -60px;
  z-index: 0;
}

/* CTA */
.cta-section { background: var(--bg); padding: 5rem 0; }

.cta-inner {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-orb-1 {
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.15);
  top: -100px; right: -50px;
}

.cta-orb-2 {
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.1);
  bottom: -80px; left: -40px;
}

.cta-inner .badge { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.2); }

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  margin-bottom: 1rem;
  position: relative;
}

.cta-inner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
  background: white;
  color: var(--accent-1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: auto; }
  .hero-stats { gap: 1.25rem; padding: 1rem 1.5rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3.2rem; }
  .cta-inner { padding: 3rem 1.5rem; }
}
