/* ══════════════════════════
   HOME PAGE SPECIFIC
══════════════════════════ */

/* HERO */
.hero {
  display: flex; justify-content: center;
  padding: 75px 5% 80px; /* Barely clears the 70px fixed nav */
  position: relative; overflow: hidden;
}
.hero-glow-1 {
  position: absolute; width: 900px; height: 900px; top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(14,165,233,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; width: 700px; height: 700px; bottom: -180px; left: -120px;
  background: radial-gradient(circle, rgba(13,148,136,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: 960px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(217,119,6,.08); border: 1px solid rgba(245,158,11,.22);
  border-radius: 8px; padding: .45rem 1.1rem;
  font-family: var(--ff-mono); font-size: .72rem;
  color: var(--gold2); letter-spacing: .8px;
  margin-bottom: 1.8rem;
  animation: fade-up .8s ease both;
}
.hero-badge .bdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold2); animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.5px;
  animation: fade-up .8s .07s ease both;
}
.hero h1 .h-italic { font-style: italic; color: var(--azure); display: block; }
.hero h1 .h-line3  { display: block; }

.hero-sub {
  margin: 1.6rem auto 1rem;
  font-size: 1.1rem; color: var(--off);
  max-width: 780px; line-height: 1.82;
  animation: fade-up .8s .15s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 700; }

.hero-pills {
  display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap;
  margin: 1.4rem 0 2.2rem;
  animation: fade-up .8s .22s ease both;
}
.pill {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600; color: var(--white);
  background: rgba(13,148,136,.12); border: 1px solid rgba(13,148,136,.26);
  border-radius: 100px; padding: .3rem 1rem;
}

.hero-ctas {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap;
  animation: fade-up .8s .3s ease both;
}

.hero-proof {
  display: flex; justify-content: center; gap: 2.4rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fade-up .8s .38s ease both;
  width: 100%;
}

.hp-val {
  font-family: var(--ff-head); font-size: 2.2rem;
  font-weight: 700; line-height: 1; color: var(--white);
}
.hp-val span { color: var(--azure); }
.hp-label {
  font-size: .73rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .5px; margin-top: .15rem;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ── PHASE MODEL ── */
.phases { background: var(--ink3); }
.phases-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem; margin-top: 2.5rem;
}
@media (max-width: 640px) { .phases-grid { grid-template-columns: 1fr; } }
.phase-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2); padding: 1.8rem;
  transition: border-color .2s, transform .2s;
  position: relative; overflow: hidden;
}
.phase-card:hover { border-color: rgba(14,165,233,.3); transform: translateY(-2px); }
.phase-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--teal));
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.phase-card:hover::before { transform: scaleX(1); }
.phase-num-badge {
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 700;
  color: var(--azure); background: rgba(14,165,233,.1);
  border: 1px solid var(--border); border-radius: 6px;
  padding: .2rem .65rem; display: inline-block; margin-bottom: 1rem;
}
.phase-card h3 {
  font-family: var(--ff-head); font-size: 1.4rem;
  font-weight: 700; margin-bottom: .5rem;
}
.phase-card h3 em { font-style: italic; color: var(--azure); }
.phase-card p { font-size: .86rem; color: var(--muted); line-height: 1.7; }

/* ── SERVICES TEASER ── */
.services-teaser { background: var(--ink2); }
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; margin-top: 2.5rem;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-tile {
  background: var(--ink2); padding: 2rem;
  transition: background .2s;
}
.svc-tile:hover { background: rgba(14,165,233,.055); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(14,165,233,.08); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.svc-tile h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.svc-tile p  { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.svc-tile .svc-link {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .8rem; font-size: .8rem; font-weight: 600;
  color: var(--azure); text-decoration: none;
  transition: gap .2s;
}
.svc-tile .svc-link:hover { gap: .6rem; }

/* ── FLAGSHIP CASE STUDY ── */
.flagship { background: var(--ink3); }
.flag-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 2.5rem;
}
@media (max-width: 800px) { .flag-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.flag-tag {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: 2px;
  color: var(--azure); background: rgba(14,165,233,.08);
  border: 1px solid var(--border); border-radius: 4px;
  padding: .25rem .7rem; display: inline-block; margin-bottom: 1rem;
}
.flag-left h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1rem;
}
.flag-metrics {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .8rem; margin: 1.4rem 0;
}
.fm {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.2rem;
}
.fm-val {
  font-family: var(--ff-head); font-size: 1.9rem;
  font-weight: 700; color: var(--azure); line-height: 1;
}
.fm-label { font-size: .74rem; color: var(--muted); margin-top: .12rem; letter-spacing: .3px; }

.flag-quote {
  background: rgba(217,119,6,.07);
  border-left: 3px solid var(--gold2);
  border-radius: 0 10px 10px 0;
  padding: 1.2rem 1.4rem; margin-top: 1.2rem;
}
.flag-quote p {
  font-family: var(--ff-head); font-style: italic;
  font-size: 1.05rem; color: var(--off); line-height: 1.65;
}
.flag-quote cite {
  font-style: normal; font-size: .78rem;
  color: var(--muted); margin-top: .4rem; display: block;
}

.cs-step { display: flex; gap: 1rem; margin-bottom: 1.4rem; }
.cs-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(14,165,233,.1); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: .74rem; font-weight: 700;
  color: var(--azure); flex-shrink: 0; margin-top: .1rem;
}
.cs-content h4 { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.cs-content p  { font-size: .84rem; color: var(--muted); line-height: 1.65; }

/* ── ASSESS CTA BLOCK ── */
.assess-band {
  background: var(--ink2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 5%;
}
.assess-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 4rem; align-items: center;
}
@media (max-width: 800px) { .assess-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.assess-left h2 {
  font-family: var(--ff-head); font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700; margin-bottom: .8rem;
}
.assess-left p { color: var(--off); font-size: .98rem; line-height: 1.8; }
.assess-includes {
  display: flex; flex-direction: column; gap: .65rem; margin-top: 1.4rem;
}
.ai-item {
  display: flex; align-items: center; gap: .8rem;
  font-size: .88rem; color: var(--off);
}
.ai-item::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: rgba(13,148,136,.15);
  border: 1px solid rgba(13,148,136,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: .75rem; font-weight: 700;
}
.assess-right {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r2); padding: 2rem;
  text-align: center;
}
.assess-right h3 {
  font-family: var(--ff-head); font-size: 1.5rem;
  font-weight: 700; margin-bottom: .6rem;
}
.assess-right p {
  color: var(--muted); font-size: .88rem;
  line-height: 1.7; margin-bottom: 1.4rem;
}
.assess-right .btn-primary { width: 100%; justify-content: center; }
.assess-note {
  font-size: .76rem; color: var(--muted2);
  margin-top: .8rem; font-style: italic;
}
