/* ============================================================
   Home Page Styles
   ============================================================ */

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,86,219,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,219,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1a56db 0%, transparent 70%);
  top: -200px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
  bottom: -100px; left: -50px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  animation: pulse-glow 2s ease infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.025em;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 360px;
  height: 340px;
}

.hcard {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  width: 320px;
  transition: transform var(--transition-slow);
}
.hcard:hover { transform: translateY(-4px) !important; }

.hcard-1 { top: 0; left: 0; }
.hcard-2 { top: 120px; right: 0; }
.hcard-3 { bottom: 0; left: 20px; }

.hcard-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.hcard-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.hcard-sub {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 1.5px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  margin: 0 auto;
  animation: fadeInUp 1.5s ease infinite;
}

/* ── Clients Strip ─────────────────────────────────────────── */
.clients-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.clients-strip .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.clients-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.clients-list {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.clients-list span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.clients-list .dot {
  color: var(--text-muted);
  font-size: 16px;
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  background: var(--bg-light);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-header .section-subtitle { margin: 0 auto; }

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

.services-grid .card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.services-grid .card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.card-tags span {
  font-size: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--primary);
  background: rgba(26,86,219,.08);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── Why Davos ───────────────────────────────────────────── */
.why-davos {
  padding: var(--section-py) 0;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.why-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
}

.why-visual {
  position: relative;
  height: 380px;
}

.why-card-1, .why-card-2, .why-card-3, .why-card-4 {
  position: absolute;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

.why-card-1 {
  top: 0; left: 0; right: 60px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-card-2 {
  top: 140px; left: 40px; right: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-card-3 {
  bottom: 0; left: 0;
  width: 140px;
  text-align: center;
}
.why-card-4 {
  bottom: 0; right: 0;
  width: 140px;
  text-align: center;
}

.why-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(26,86,219,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.why-card-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.why-card-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.why-stat-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.why-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--grad-dark);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,.6);
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { height: 280px; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-value { font-size: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .clients-strip .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .why-visual { display: none; }
}
