/* ═══════════════════════════════════════════════════════
   HOME PAGE STYLES — MOBILE FIRST
   ═══════════════════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding: 160px 0 24px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, var(--glow-primary) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, var(--glow-secondary) 0%, transparent 65%);
  pointer-events: none;
}

.hero > .container {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  flex-shrink: 0;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeSlideUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease-out-expo) 0.35s forwards;
}

.hero-headline .accent-dot { color: var(--accent); }

.hero-sub {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease-out-expo) 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease-out-expo) 0.65s forwards;
}

/* ─── HERO STATS ─── */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  opacity: 0;
  animation: fadeSlideUp 0.9s var(--ease-out-expo) 0.8s forwards;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── LOGOS + PILLARS (combined section) ─── */
.logos-pillars-section {
  padding: 100px 0 60px;
}

.logos-pillars-section .logo-marquee {
  margin-bottom: 40px;
}

.pillars-header { margin-bottom: 28px; }

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pillar-card { padding: clamp(20px, 2.5vw, 28px); }

.pillar-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  margin-bottom: 2px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.pillar-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── SOLUTIONS TEASER ─── */
.solutions-teaser {
  padding: 100px 0 80px;
}

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

.solutions-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.teaser-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  text-decoration: none;
  color: inherit;
  position: relative;
}

.teaser-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(232, 93, 4, 0.1);
}

.teaser-block::before,
.teaser-block::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--accent);
  border-style: solid;
  opacity: 0.3;
  transition: opacity 0.35s ease;
}

.teaser-block::before {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
  border-radius: 0 var(--radius-md) 0 0;
}

.teaser-block::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 var(--radius-md) 0;
}

.teaser-block:hover::before,
.teaser-block:hover::after {
  opacity: 0.7;
}

.teaser-icon {
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(232, 93, 4, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}

.teaser-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.teaser-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.teaser-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.teaser-link::after {
  content: '→';
  transition: transform 0.3s var(--ease-out-quart);
}

.teaser-block:hover .teaser-link::after {
  transform: translateX(4px);
}

/* ─── CTA BANNER (compact, fits with footer) ─── */
.cta-banner {
  padding: 20px 0 16px;
}

.cta-banner-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--glow-primary) 0%, transparent 55%);
  pointer-events: none;
}

.cta-banner h2 { position: relative; margin-bottom: 10px; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-banner p { position: relative; color: var(--text-secondary); max-width: 540px; margin: 0 auto 16px; font-size: 0.88rem; line-height: 1.6; }
.cta-banner .btn { position: relative; }

/* ═══ TABLET (min-width: 768px) ═══ */
@media (min-width: 768px) {
  .hero { padding: 160px 0 32px; }
  .hero-eyebrow { font-size: 0.8rem; margin-bottom: 16px; }
  .hero-headline { font-size: clamp(3rem, 7vw, 5rem); margin-bottom: 20px; }
  .hero-sub { font-size: 0.98rem; margin-bottom: 28px; }
  .hero-stats { padding-top: 28px; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
  .hero-stat { flex-direction: column; align-items: center; gap: 4px; position: relative; }
  .hero-stat:not(:last-child)::after { content: ''; position: absolute; top: 10%; right: 0; height: 80%; width: 1px; background: var(--border-subtle); }
  .hero-stat-value { font-size: 2rem; }
  .hero-stat-label { font-size: 0.68rem; }
  .solutions-teaser-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══ DESKTOP (min-width: 1024px) ═══ */
@media (min-width: 1024px) {
  .hero { padding: 160px 0 40px; }
  .hero-eyebrow { font-size: 0.82rem; margin-bottom: 18px; }
  .hero-headline { font-size: clamp(4rem, 7vw, 5.8rem); margin-bottom: 24px; }
  .hero-sub { font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }
  .hero-ctas { gap: 16px; }
  .hero-stats { padding-top: 32px; }
  .hero-stat-value { font-size: clamp(2rem, 3.5vw, 2.6rem); }
  .hero-stat-label { font-size: 0.72rem; }
  .logos-pillars-section { padding: 100px 0 60px; }
  .logos-pillars-section .logo-marquee { margin-bottom: 48px; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pillars-header { margin-bottom: 36px; }
  .pillar-number { font-size: 3rem; margin-bottom: 4px; }
  .pillar-title { font-size: 1.5rem; margin-bottom: 8px; }
  .pillar-text { font-size: 0.92rem; line-height: 1.75; }
}