:root {
  --navy: #0B0F1A;
  --navy-mid: #111827;
  --yellow: #F5E600;
  --yellow-dim: #C8BB00;
  --white: #FFFFFF;
  --gray-light: #E5E7EB;
  --gray-mid: #9CA3AF;
  --gray-dark: #374151;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--yellow);
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  border: 1px solid var(--yellow);
  bottom: -100px;
  left: 10%;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--yellow);
  opacity: 0.03;
  top: 40%;
  right: 30%;
}

.shape-4 {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  top: 20%;
  left: 5%;
  opacity: 0.12;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 230, 0, 0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.line { display: block; }

.line-2.accent-bar {
  position: relative;
  padding-left: 24px;
}

.line-2.accent-bar::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  background: var(--navy-mid);
  border: 1px solid var(--gray-dark);
  padding: 6px 14px;
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
}

.hero-tags span:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { opacity: 0; transform: scaleY(0) translateY(-20px); }
  50% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(1) translateY(40px); }
}

/* ─── SERVICES ─── */
.services {
  background: var(--navy-mid);
  padding: 120px 48px;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
  opacity: 0.3;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}

.services-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 64px;
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--navy);
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card:hover {
  background: #161D2E;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
  font-weight: 300;
}

.service-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(245, 230, 0, 0.15);
  letter-spacing: 0.1em;
}

/* ─── PROCESS ─── */
.process {
  background: var(--navy);
  padding: 120px 48px;
}

.process-inner {
  max-width: 900px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step {
  padding: 0 8px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.2;
}

.step:hover .step-num {
  opacity: 1;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 300;
  line-height: 1.5;
}

.step-connector {
  width: 1px;
  height: 80px;
  background: var(--gray-dark);
  margin-top: 20px;
  flex-shrink: 0;
}

/* ─── MANIFESTO ─── */
.manifesto {
  background: var(--navy-mid);
  padding: 120px 48px;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
  opacity: 0.2;
}

.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-rule {
  width: 40px;
  height: 2px;
  background: var(--yellow);
  margin: 0 auto 40px;
}

blockquote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.manifesto-body {
  font-size: 16px;
  color: var(--gray-mid);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.manifesto-tags span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245, 230, 0, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
}

/* ─── NAV ─── */
.svc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 15, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.svc-nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.svc-nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.svc-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-mid);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

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

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy);
  padding: 48px;
  border-top: 1px solid var(--gray-dark);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  display: block;
}

.footer-tagline {
  font-size: 12px;
  color: var(--gray-mid);
  display: block;
  margin-top: 4px;
}

.footer-meta {
  font-size: 12px;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sep { color: var(--gray-dark); }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .services { padding: 80px 24px; }
  .process { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .site-footer { padding: 32px 24px; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .step-connector {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll-hint { display: none; }
}

/* ─── SERVICES PAGE HERO ─── */
.svc-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 100px 48px 80px;
}

.svc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.svc-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.svc-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--yellow);
  top: -200px;
  right: -150px;
}

.svc-shape-2 {
  width: 300px;
  height: 300px;
  border: 1px solid var(--yellow);
  bottom: -80px;
  left: 5%;
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.svc-hero-h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}

.svc-accent {
  color: var(--yellow);
}

.svc-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-bottom: 40px;
  max-width: 600px;
  letter-spacing: 0.02em;
}

.svc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--yellow-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-mid);
  border: 1px solid var(--gray-dark);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 32px;
}

/* ─── SERVICE DETAIL ROWS ─── */
.svc-detail-section {
  background: var(--navy-mid);
  padding: 0 48px;
  position: relative;
}

.svc-detail-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
  opacity: 0.3;
}

.svc-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.svc-detail-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.svc-detail-row:last-child {
  border-bottom: none;
}

.svc-detail-row--alt {
  grid-template-columns: 320px 1fr;
}

.svc-detail-row--alt .svc-detail-content {
  order: 2;
}

.svc-detail-row--alt .svc-detail-visual {
  order: 1;
}

.svc-detail-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 16px;
  opacity: 0.5;
}

.svc-detail-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.svc-detail-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}

.svc-detail-list {
  list-style: none;
  margin-bottom: 28px;
}

.svc-detail-list li {
  font-size: 14px;
  color: var(--gray-mid);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.svc-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.6;
}

.svc-detail-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.svc-detail-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245, 230, 0, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Visual stat card */
.svc-visual-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.svc-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow);
}

.svc-visual-icon {
  margin-bottom: 24px;
  opacity: 0.9;
}

.svc-visual-stat {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}

.svc-visual-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--yellow);
  line-height: 1;
}

/* ─── PRICING ─── */
.pricing-section {
  background: var(--navy);
  padding: 120px 48px;
  position: relative;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--white);
}

.pricing-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-bottom: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--navy-mid);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gray-dark);
  transition: background 0.3s;
}

.pricing-card:hover::before {
  background: var(--yellow);
}

.pricing-card--featured {
  background: #161D2E;
  border-color: rgba(245, 230, 0, 0.15);
}

.pricing-card--featured::before {
  background: var(--yellow);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--yellow);
  padding: 4px 10px;
  border-radius: 100px;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 20px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-mid);
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-mid);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--gray-mid);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background: var(--yellow);
  opacity: 0.7;
}

.pricing-cta {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.pricing-cta:hover {
  background: var(--yellow);
  color: var(--navy);
}

.pricing-cta--featured {
  background: var(--yellow);
  color: var(--navy);
}

.pricing-cta--featured:hover {
  background: var(--yellow-dim);
}

.pricing-custom {
  text-align: center;
  font-size: 14px;
  color: var(--gray-mid);
}

.pricing-custom a {
  color: var(--yellow);
  text-decoration: none;
}

.pricing-custom a:hover {
  text-decoration: underline;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--navy-mid);
  padding: 120px 48px;
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--yellow), transparent);
  opacity: 0.2;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 64px;
  line-height: 1.1;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-q {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
  cursor: pointer;
}

.faq-a {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-mid);
  line-height: 1.6;
}

.faq-a a {
  color: var(--yellow);
  text-decoration: none;
}

/* ─── CTA SECTION ─── */
.svc-cta-section {
  background: var(--navy);
  padding: 120px 48px;
}

.svc-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.svc-cta-rule {
  width: 40px;
  height: 2px;
  background: var(--yellow);
  margin: 0 auto 40px;
}

.svc-cta-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}

.svc-cta-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-mid);
  margin-bottom: 48px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .svc-detail-row,
  .svc-detail-row--alt {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-detail-row--alt .svc-detail-content { order: 1; }
  .svc-detail-row--alt .svc-detail-visual { order: 2; }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .svc-nav {
    padding: 16px 24px;
  }

  .svc-nav-links {
    gap: 20px;
  }

  .svc-nav-links a {
    font-size: 12px;
  }

  .svc-hero {
    padding: 100px 24px 60px;
  }
  .svc-detail-section { padding: 0 24px; }
  .pricing-section { padding: 80px 24px; }
  .faq-section { padding: 80px 24px; }
  .svc-cta-section { padding: 80px 24px; }

  .svc-detail-row,
  .svc-detail-row--alt {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .svc-hero-h1 { font-size: 40px; }
  .svc-hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .pricing-price { font-size: 40px; }
}