/* ===========================================================
   SlayMyProject — stylesheet
   =========================================================== */

:root {
  --blue: #1A56DB;
  --blue-dark: #123EA0;
  --blue-light: #E8F1FD;
  --blue-mid: #C5D8F5;
  --ink: #0B1120;
  --ink-soft: #16213D;
  --gold: #FFC107;
  --gold-dark: #7A4F00;
  --text-dark: #0D2E6B;
  --text-muted: #5280B8;
  --surface: #F7FAFF;
  --white: #FFFFFF;
  --border: #DAEAFC;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --max-w: 1120px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- focus visibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #B9C8E8;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: 100px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.35), transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.06;
  font-weight: 700;
  margin: 0 0 18px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p.lead {
  font-size: 17px;
  line-height: 1.65;
  color: #AFC2E8;
  max-width: 480px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold);
  color: var(--gold-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #C9D7F2;
}

/* pipeline card — signature element */
.pipeline-card {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.pipeline-card .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7C93C2;
  margin-bottom: 18px;
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pipeline-step:last-child { border-bottom: none; }

.pipeline-step .dotnum {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 86, 219, 0.25);
  color: #8FB3F7;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pipeline-step.is-active .dotnum {
  background: var(--gold);
  color: var(--gold-dark);
}

.pipeline-step .ptext strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
}

.pipeline-step .ptext span {
  font-size: 12px;
  color: #8094BC;
}

.pipeline-step .status {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  color: #8094BC;
  flex-shrink: 0;
}

.pipeline-step.is-active .status {
  background: rgba(255, 193, 7, 0.15);
  color: var(--gold);
}

/* ===========================================================
   STATS BAR
   =========================================================== */
.stats {
  background: var(--blue);
}

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

.stat {
  text-align: center;
  padding: 28px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stat:last-child { border-right: none; }

.stat .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  display: block;
}

.stat .lbl {
  font-size: 12px;
  color: #BDD7FA;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* ===========================================================
   SECTIONS — shared
   =========================================================== */
section { padding: 88px 0; }

.section-head {
  max-width: 600px;
  margin: 0 0 56px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 14px;
}

.section-head p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================================================
   SERVICES (offer grid)
   =========================================================== */
.services { background: var(--surface); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================================================
   HOW IT WORKS
   =========================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-top: 8px;
}

.step-card .stepnum {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--blue-light);
  -webkit-text-stroke: 1.5px var(--blue);
  margin-bottom: 14px;
  display: block;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}

.step-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================================================
   WHY US
   =========================================================== */
.why { background: var(--ink); color: var(--white); }

.why .section-head h2 { color: var(--white); }
.why .section-head p { color: #9FB3DC; }
.why .section-label { color: var(--gold); }

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

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.why-item .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.15);
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--white);
  margin-bottom: 3px;
}

.why-item span {
  font-size: 13px;
  color: #93A6CC;
  line-height: 1.5;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq { background: var(--surface); }

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--blue);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: '\2013'; }

.faq-item .faq-body {
  padding: 0 24px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ===========================================================
   CTA / CONTACT
   =========================================================== */
.cta {
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 14px;
}

.cta p {
  font-size: 16px;
  color: #CBDDFB;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  text-align: left;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card .cicon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.contact-card .clabel {
  font-size: 11px;
  color: #BDD7FA;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-card .cval {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  margin-top: 2px;
  word-break: break-word;
}

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
  background: var(--ink);
  color: #7C8FB5;
  padding: 36px 0;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer a { color: var(--gold); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.16); }
  .service-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

/* mobile nav drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 24px 18px;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile a {
  padding: 12px 0;
  font-size: 15px;
  color: #C9D7F2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile .nav-cta {
  margin-top: 14px;
  text-align: center;
  display: block;
}
