/* ============================================================
   PROCESS OPS — STYLESHEET
   Design: Dark charcoal + teal/blue/green gradient, Montserrat + Inter
   Brand colours: #202020 bg · #00ff8f green · #00a1ff blue · #ffffff text
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Design Tokens --- */
:root {
  --black:        #111111;
  --dark:         #202020;
  --card:         #2A2A2A;
  --border:       #363636;
  --off-white:    #F5F5F5;
  --white:        #FFFFFF;

  /* Brand accent — blue as primary CTA, green as secondary highlight */
  --accent:       #00a1ff;
  --accent-dark:  #007fd4;
  --green:        #00ff8f;
  --gradient:     linear-gradient(135deg, #00ff8f 0%, #00a1ff 100%);

  /* Legacy aliases so nothing breaks */
  --orange:       #00a1ff;
  --orange-dark:  #007fd4;

  --text-muted:  #888888;
  --text-light:  #CCCCCC;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --section-pad:  120px;
  --container:    1200px;
  --radius:       8px;
  --radius-lg:    16px;
  --transition:   0.25s ease;
}

/* --- Base --- */
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 700; }

p { line-height: 1.75; }

/* --- Layout --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-pad) 0; }
.section--dark  { background: var(--black); color: var(--white); }
.section--light { background: var(--off-white); color: var(--dark); }
.section--white { background: var(--white); color: var(--dark); }
.section--orange { background: var(--orange); color: var(--white); }

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.section--orange .section__label { color: var(--white); opacity: 0.8; }

.section__header { max-width: 720px; margin-bottom: 64px; }
.section__header--center { text-align: center; margin: 0 auto 64px; }

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

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn--dark:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn--outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.link-arrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.link-arrow:hover { gap: 10px; }
.section--dark .link-arrow { color: var(--orange); }
.section--light .link-arrow { color: var(--orange); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}
/* Fallback text style if image fails to load */
.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.nav__mobile.open { display: block; }
.nav__mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 14px 32px;
  transition: color var(--transition), background var(--transition);
}
.nav__mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav__mobile .btn {
  margin: 16px 32px 8px;
  display: block;
  text-align: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 50%, rgba(0, 161, 255, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(0, 255, 143, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero__inner {
  padding: 100px 0;
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 161, 255, 0.1);
  border: 1px solid rgba(0, 161, 255, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  animation: pulse 2s infinite;
}

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

.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero h1 .highlight { color: var(--orange); }

.hero__sub {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero__trust {
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}

.problem__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border-bottom: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background var(--transition);
}
.problem__item:hover { background: rgba(0, 161, 255, 0.04); }
.problem__item:nth-child(even) { border-right: none; }
.problem__item:nth-last-child(-n+2) { border-bottom: none; }
.problem__item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.problem__closer {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  padding: 32px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
}
.problem__closer span { color: var(--orange); }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }

.step__num {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.05em;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.step__body {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================================
   WHO WE WORK WITH
   ============================================================ */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}
.checklist__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #E8E8E8;
  font-size: 1rem;
  font-weight: 500;
}
.checklist__item:last-child { border-bottom: none; }
.checklist__icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.checklist__icon::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.cta-inline {
  background: var(--off-white);
  border: 2px solid #E0E0E0;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inline__text h3 { margin-bottom: 8px; }
.cta-inline__text p { color: #666; font-size: 0.9rem; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(0, 161, 255, 0.3);
  transform: translateY(-4px);
}

.service-card__tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 161, 255, 0.1);
  border: 1px solid rgba(0, 161, 255, 0.2);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 24px;
}

.service-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 32px;
}

.service-card__price {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.service-card__price strong {
  color: var(--white);
  font-size: 1rem;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   SCORECARD CTA SECTION
   ============================================================ */
.scorecard-cta {
  padding: var(--section-pad) 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.scorecard-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 161, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 50%, rgba(0, 255, 143, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.scorecard-cta > * { position: relative; z-index: 1; }
.scorecard-cta h2 { color: var(--white); margin-bottom: 20px; }
.scorecard-cta p { color: var(--text-light); font-size: 1.125rem; max-width: 560px; margin: 0 auto 40px; }

/* ============================================================
   ABOUT TEASER / SPLIT SECTION
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__image { order: -1; }

.split__content .section__label { margin-bottom: 16px; }
.split__content h2 { margin-bottom: 24px; }
.split__content p { color: #555; margin-bottom: 16px; line-height: 1.8; }
.split__content p:last-of-type { margin-bottom: 32px; }

.split__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #E8E8E8;
  aspect-ratio: 4/5;
}
.split__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   BELIEFS / VALUES
   ============================================================ */
.belief-list { display: flex; flex-direction: column; gap: 0; }
.belief {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}
.belief:last-child { border-bottom: none; }
.belief__label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  padding-top: 4px;
}
.belief__body h4 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.belief__body p { color: var(--text-light); font-size: 0.9375rem; line-height: 1.75; }

/* ============================================================
   CREDENTIALS
   ============================================================ */
.creds {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cred {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cred__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}
.cred p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================
   SCORECARD PAGE
   ============================================================ */
.steps-scorecard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.step-card:hover {
  border-color: rgba(0, 161, 255, 0.3);
  transform: translateY(-4px);
}
.step-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 161, 255, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.step-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; }
.step-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

.what-you-get {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.get-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid #E0E0E0;
}
.get-item__icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.get-item__icon::after {
  content: '';
  width: 12px;
  height: 8px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}
.get-item h4 { font-size: 0.9375rem; margin-bottom: 6px; }
.get-item p { font-size: 0.875rem; color: #666; line-height: 1.6; }

.upgrade-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.upgrade-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  text-align: center;
}
.upgrade-step__label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.upgrade-step__name { color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 1rem; }
.upgrade-step__price { color: var(--orange); font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; margin-top: 4px; }
.upgrade-arrow {
  text-align: center;
  padding: 8px 0;
  color: var(--orange);
  font-size: 1.5rem;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.service-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.service-detail__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 161, 255, 0.1);
  border: 1px solid rgba(0, 161, 255, 0.2);
  border-radius: 100px;
  padding: 4px 14px;
  width: fit-content;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.includes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9375rem;
}
.includes-list li:last-child { border-bottom: none; }
.includes-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.price-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky;
  top: 100px;
}
.price-box__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.price-box__amount {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.price-box__note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.price-box .btn { width: 100%; justify-content: center; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-item__label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item__value { color: var(--white); font-weight: 500; }
.contact-item__dot {
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.booking-embed {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.booking-embed p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.what-to-expect { margin-top: 48px; }
.what-to-expect h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}
.expect-list { display: flex; flex-direction: column; gap: 0; }
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9rem;
}
.expect-item:last-child { border-bottom: none; }
.expect-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ============================================================
   PAGE HERO (INNER PAGES)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(0, 161, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section__label { margin-bottom: 16px; }
.page-hero h1 { color: var(--white); margin-bottom: 24px; max-width: 800px; }
.page-hero p { color: var(--text-light); font-size: 1.125rem; max-width: 640px; line-height: 1.8; }

/* ============================================================
   FULL-WIDTH CTA BAND
   ============================================================ */
.cta-band {
  padding: var(--section-pad) 0;
  background: var(--black);
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 20px; }
.cta-band p { color: var(--text-light); font-size: 1.125rem; max-width: 520px; margin: 0 auto 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.footer__brand .nav__logo { display: inline-flex; margin-bottom: 20px; }
.footer__brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__linkedin:hover { color: var(--orange); }

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact a, .footer__contact span {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   VALUES PAGE
   ============================================================ */

/* Hero */
.values-hero {
  background: var(--black);
  padding: 160px 0 0;
  position: relative;
  overflow: hidden;
}
.values-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(0, 161, 255, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 5% 70%, rgba(0, 255, 143, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.values-hero__inner {
  max-width: 800px;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.values-hero h1 {
  color: var(--white);
  margin-bottom: 28px;
}
.values-hero p {
  color: var(--text-light);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 620px;
}
.values-hero__line {
  height: 1px;
  background: linear-gradient(to right, var(--accent), var(--green), transparent);
  position: relative;
  z-index: 1;
}

/* Value blocks */
.values-list { display: flex; flex-direction: column; }

.value-block {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.value-block--light {
  background: var(--off-white);
  border-bottom: 1px solid #E0E0E0;
}
.value-block__inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  padding: 80px 0;
  align-items: start;
}

/* Number column */
.value-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.05em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 8px;
  display: block;
  user-select: none;
}
.value-num--dark {
  background: linear-gradient(135deg, #00a1ff 0%, #00ff8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Right column */
.value-block__right { padding-left: 48px; border-left: 1px solid var(--border); }
.value-block--light .value-block__right { border-left-color: #D8D8D8; }

/* Contrast treatment: X over Y */
.value-contrast {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}
.value-contrast__primary {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.value-contrast--dark .value-contrast__primary { color: var(--dark); }

.value-contrast__over {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 4px;
}
.value-contrast__over--dark { color: #999; }

.value-contrast__secondary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--text-muted);
  line-height: 1;
  letter-spacing: -0.02em;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.15);
  text-decoration-thickness: 2px;
}
.value-contrast__secondary--dark {
  color: #AAAAAA;
  text-decoration-color: rgba(0,0,0,0.15);
}

/* Statement treatment: single heading */
.value-statement {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.value-statement--dark { color: var(--dark); }

/* Body and tag */
.value-body {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 28px;
}
.value-body--dark { color: #444; }

.value-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(0, 161, 255, 0.08);
  border: 1px solid rgba(0, 161, 255, 0.2);
  border-radius: 6px;
  padding: 10px 16px;
  line-height: 1.5;
}
.value-tag--dark {
  color: var(--dark);
  background: rgba(0, 161, 255, 0.08);
  border-color: rgba(0, 161, 255, 0.25);
}

/* Closer / manifesto */
.values-closer {
  background: var(--black);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.values-closer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0, 255, 143, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.values-closer__inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}
.values-closer__accent {
  width: 48px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin-bottom: 40px;
}
.values-closer h2 {
  color: var(--white);
  margin-bottom: 24px;
}
.values-closer p {
  color: var(--text-light);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* About page: values teaser grid — stack on mobile */
@media (max-width: 768px) {
  .values-teaser-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
}

/* Responsive — values page */
@media (max-width: 900px) {
  .value-block__inner {
    grid-template-columns: 100px 1fr;
    padding: 60px 0;
  }
  .value-num { font-size: 3.8rem; }
  .value-block__right { padding-left: 32px; }
  .value-contrast__primary { font-size: clamp(2rem, 5vw, 3rem); }
  .value-statement { font-size: clamp(1.5rem, 4vw, 2.4rem); }
}

@media (max-width: 640px) {
  .values-hero { padding-top: 120px; }
  .values-hero__inner { padding-bottom: 56px; }
  .values-hero h1 br { display: none; }
  .values-hero p { font-size: 1rem; }

  .value-block__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 48px 0;
  }
  .value-num {
    font-size: 3rem;
    padding-top: 0;
  }
  .value-block__right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border);
    padding-top: 24px;
  }
  .value-block--light .value-block__right {
    border-top-color: #D8D8D8;
    border-left: none;
  }
  .value-contrast { margin-bottom: 20px; }
  .value-contrast__primary { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .value-contrast__secondary { font-size: 1.2rem; }
  .value-statement { font-size: clamp(1.4rem, 6vw, 2rem); margin-bottom: 20px; }
  .value-body { font-size: 0.9375rem; }
  .values-closer__inner { max-width: 100%; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-orange  { color: var(--accent); }
.text-accent  { color: var(--accent); }
.text-green   { color: var(--green); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Tablet (1024px and below) --- */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps-scorecard { grid-template-columns: repeat(2, 1fr); }

  /* Split sections: stack vertically, image below content */
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__image { order: 0; }

  /* Cap image height when stacked so it doesn't dominate */
  .split__image-wrap {
    aspect-ratio: 3/2;
    max-height: 420px;
  }

  .belief { grid-template-columns: 150px 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }

  /* Service details: stack on tablet */
  .service-detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .price-box { position: static; }
}

/* --- Mobile (768px and below) --- */
@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  /* Global mobile typography */
  h1 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.4rem); }

  /* Touch targets: minimum 48px height on interactive elements */
  .btn { min-height: 48px; padding: 14px 28px; }
  a, button { -webkit-tap-highlight-color: transparent; }

  /* Nav: hide desktop links, show burger */
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { height: 64px; }

  /* Hero */
  .hero__inner { padding: 72px 0 56px; }
  .hero__scroll { display: none; }
  .hero h1 br { display: none; } /* let text reflow naturally on mobile */
  .hero__sub { font-size: 1rem; }
  .hero__trust {
    font-size: 0.72rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }

  /* Inner page hero */
  .page-hero { padding: 110px 0 56px; }
  .page-hero p { font-size: 1rem; }

  /* Grids */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps-scorecard { grid-template-columns: 1fr; }

  /* Problem grid: single column */
  .problem__grid { grid-template-columns: 1fr; }
  .problem__item { border-right: none; }
  .problem__item:nth-last-child(-n+2) { border-bottom: 1px solid #E0E0E0; }
  .problem__item:last-child { border-bottom: none; }
  .problem__closer { font-size: 1.05rem; padding: 24px 20px; }

  /* How We Work steps */
  .step { grid-template-columns: 52px 1fr; gap: 16px; padding: 32px 0; }
  .step__num { font-size: 2.8rem; }

  /* Who we work with CTA inline */
  .cta-inline { flex-direction: column; align-items: stretch; gap: 20px; padding: 28px 24px; }
  .cta-inline .btn { width: 100%; justify-content: center; }

  /* Beliefs */
  .belief { grid-template-columns: 1fr; gap: 8px; padding: 28px 0; }

  /* Credentials */
  .creds { grid-template-columns: 1fr; }

  /* What you get */
  .what-you-get { grid-template-columns: 1fr; }

  /* Service detail */
  .service-detail { padding: 48px 0; }
  .service-detail__grid { grid-template-columns: 1fr; gap: 32px; }
  .price-box { position: static; padding: 28px; }
  .price-box__amount { font-size: 1.6rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .booking-embed { padding: 32px 24px; min-height: auto; }
  .contact-details { margin-top: 24px; gap: 12px; }

  /* Split photo */
  .split__image-wrap {
    aspect-ratio: 4/3;
    max-height: 320px;
  }

  /* Scorecard steps */
  .steps-scorecard { gap: 16px; }
  .step-card { padding: 28px 24px; }
  .step-card__num { font-size: 2.4rem; }

  /* Button rows: stack full width */
  .btn-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-row .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 56px 0 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Section headers */
  .section__header { margin-bottom: 40px; }
  .section__header--center { margin-bottom: 40px; }

  /* Upgrade flow */
  .upgrade-flow { max-width: 100%; }

  /* Scorecard CTA */
  .scorecard-cta h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .scorecard-cta p { font-size: 1rem; }
}

/* --- Small mobile (480px and below) --- */
@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  .container { padding: 0 18px; }

  h1 { font-size: clamp(1.75rem, 8vw, 2.2rem); }
  h2 { font-size: clamp(1.4rem, 6.5vw, 1.9rem); }

  .btn { padding: 14px 20px; font-size: 0.8rem; }

  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 1.2rem; }

  .hero__tag { font-size: 0.62rem; padding: 5px 12px; }

  .step-card { padding: 24px 20px; }

  .get-item { padding: 20px; }

  .price-box { padding: 24px 20px; }

  .booking-embed { padding: 24px 20px; }

  .cta-inline { padding: 24px 20px; }

  .problem__item { padding: 16px 20px; font-size: 0.9rem; }

  /* Keep trust line readable on tiny screens */
  .hero__trust { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
  .hero__trust .sep { display: none; }

  /* Nav logo smaller on tiny screens */
  .nav__logo img { height: 28px; }
}
