/* ===========================
   Design Tokens
   =========================== */

:root {
  --brand-blue: #3B82F6;
  --brand-blue-dark: #2563EB;
  --brand-violet: #8B5CF6;

  --ink: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;

  --bg-subtle: #f8fafc;
  --bg-muted: #f1f5f9;
}

/* ===========================
   Reset & Base
   =========================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}

.title-italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

/* ===========================
   Layout
   =========================== */

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn--primary {
  background-color: var(--brand-blue);
  color: #fff;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.35);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.btn--text {
  background: none;
  color: var(--brand-blue);
  padding: 14px 0;
  font-weight: 600;
}

.btn--text:hover {
  color: var(--brand-blue-dark);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-block;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--cta-primary {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: #fff;
  color: var(--brand-blue);
  transition: all 0.15s ease;
}

.btn--cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ===========================
   Navigation
   =========================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid var(--border);
}

.nav__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  color: var(--ink);
}

.nav__logo-svg {
  height: 32px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

.nav__link:hover {
  color: var(--brand-blue);
}

.nav__link--cta {
  background-color: var(--brand-blue);
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
}

.nav__link--cta:hover {
  background-color: var(--brand-blue-dark);
  color: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===========================
   Animations
   =========================== */

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

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes floatReverse {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes floatSlow {
  0%, 100% { transform: translate(-50%, -50%) rotate(-1deg); }
  50% { transform: translate(-50%, calc(-50% - 10px)) rotate(1deg); }
}

.animate-up {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.device-float { animation: float 6s ease-in-out infinite; }
.device-float-reverse { animation: floatReverse 7s ease-in-out infinite; }
.device-float-slow { animation: floatSlow 8s ease-in-out infinite; }

/* ===========================
   Hero — Two-column with device mockup
   =========================== */

.hero {
  position: relative;
  padding: 96px 0 88px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 30%, #C7D2FE 60%, #DDD6FE 100%);
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
}

.hero__bg-orb--1 {
  width: 480px;
  height: 480px;
  top: -80px;
  right: 8%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
  filter: blur(50px);
}

.hero__bg-orb--2 {
  width: 320px;
  height: 320px;
  bottom: 5%;
  left: 3%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  filter: blur(35px);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.hero__intro {
  text-align: left;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-blue);
  background: rgba(59, 130, 246, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero__ctas-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Device mockup */
.hero__mockup {
  position: relative;
  height: 480px;
}

.hero__device-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__laptop {
  position: absolute;
  width: 520px;
  left: 50%;
  top: calc(40% + 30px);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero__laptop-screen {
  background: var(--ink);
  border-radius: 14px 14px 0 0;
  padding: 10px;
  border: 3px solid #1e293b;
  border-bottom: none;
}

.hero__laptop-content {
  background: #1e293b;
  border-radius: 7px;
  overflow: hidden;
}

.hero__laptop-header-bar {
  display: flex;
  gap: 7px;
  padding: 11px 13px;
  background: var(--ink);
}

.hero__laptop-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #374151;
}

.hero__laptop-dot--red { background: #ef4444; }
.hero__laptop-dot--yellow { background: #f59e0b; }
.hero__laptop-dot--green { background: #10b981; }

.hero__laptop-body {
  display: flex;
  height: 275px;
}

.hero__laptop-sidebar {
  width: 62px;
  background: rgba(59, 130, 246, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__laptop-main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__laptop-nav-bar {
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.hero__laptop-cards {
  display: flex;
  gap: 12px;
}

.hero__laptop-card {
  flex: 1;
  height: 68px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border-radius: 8px;
}

.hero__laptop-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__laptop-base {
  background: linear-gradient(180deg, #4b5563 0%, #374151 100%);
  height: 15px;
  border-radius: 0 0 5px 5px;
  position: relative;
}

.hero__laptop-base-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
  height: 5px;
  background: #6b7280;
  border-radius: 0 0 5px 5px;
}

.hero__tablet {
  position: absolute;
  width: 190px;
  height: 244px;
  background: var(--ink);
  border-radius: 16px;
  padding: 9px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  left: 3%;
  top: calc(55% + 30px);
  z-index: 2;
}

.hero__tablet-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1e293b 0%, var(--ink) 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 12px;
}

.hero__tablet-header {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.hero__tablet-time {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
}

.hero__tablet-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__tablet-hero-card {
  height: 90px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
  border-radius: 9px;
}

.hero__tablet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.hero__tablet-grid-item {
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 7px;
}

.hero__phone {
  position: absolute;
  width: 106px;
  height: 212px;
  background: var(--ink);
  border-radius: 18px;
  padding: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  right: 4%;
  top: calc(50% + 30px);
  z-index: 3;
}

.hero__phone-notch {
  width: 38px;
  height: 14px;
  background: var(--ink);
  border-radius: 0 0 9px 9px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.hero__phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1e293b 0%, var(--ink) 100%);
  border-radius: 14px;
  overflow: hidden;
  padding: 21px 8px 8px;
}

.hero__phone-time {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 8px;
  font-weight: 600;
  margin-bottom: 9px;
}

.hero__phone-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__phone-card {
  height: 38px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-radius: 6px;
}

.hero__phone-stats {
  display: flex;
  gap: 5px;
}

.hero__phone-stat {
  flex: 1;
  height: 27px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.hero__phone-list-item {
  height: 18px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
  margin-top: 3px;
}

.hero__phone-nav {
  position: absolute;
  bottom: 12px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.hero__phone-nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hero__phone-nav-dot--active {
  background: var(--brand-blue);
  width: 14px;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .animate-up {
    animation: none;
    opacity: 1;
  }

  .device-float,
  .device-float-reverse,
  .device-float-slow {
    animation: none;
  }
}

/* ===========================
   Capabilities
   =========================== */

.capabilities {
  padding: 80px 0 88px;
  background-color: #fff;
}

.capabilities__groups {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

.capabilities__group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.capabilities__group-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.capabilities__group--core .capabilities__group-label {
  color: var(--ink);
}

.capabilities__group--support .capabilities__group-label {
  color: var(--text-muted);
  font-weight: 600;
}

.capabilities__group-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  flex: 1;
}

.capabilities__divider {
  width: 1px;
  flex-shrink: 0;
  background: var(--border);
}

.capability-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.capability-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.capability-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.capability-card__icon svg {
  width: 22px;
  height: 22px;
}

.capability-card__icon--blue   { background: rgba(59, 130, 246, 0.12); color: var(--brand-blue); }
.capability-card__icon--green  { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.capability-card__icon--purple { background: rgba(139, 92, 246, 0.15); color: var(--brand-violet); }
.capability-card__icon--orange { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.capability-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}

.capability-card__desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 20px;
}

.capability-card__list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.capability-card__list li {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 3px 0;
}


@media (prefers-reduced-motion: reduce) {
  .capability-card {
    transition: none;
  }

  .capability-card:hover {
    transform: none;
  }
}

/* ===========================
   Device Showcase
   =========================== */

.showcase {
  padding: 88px 0;
  background: var(--bg-muted);
}

.showcase__title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.showcase__subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.showcase__control {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 48px;
  background: var(--border);
  border-radius: 12px;
  padding: 6px;
}

.showcase__control input {
  display: none;
}

.showcase__control label {
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.showcase__control label:hover {
  color: var(--ink);
}

.showcase__control input:checked + label {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.showcase__stage {
  position: relative;
  min-height: 600px;
}

.showcase__panel {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.showcase__control:has(#showcase-webapp:checked) ~ .showcase__stage .showcase__panel--webapp,
.showcase__control:has(#showcase-mobileapp:checked) ~ .showcase__stage .showcase__panel--mobile,
.showcase__control:has(#showcase-marketing:checked) ~ .showcase__stage .showcase__panel--marketing {
  display: block;
}

/* Laptop mockup (webapp + marketing panels) */
.showcase__laptop {
  width: 640px;
}

.showcase__laptop-screen {
  background: var(--ink);
  border-radius: 16px 16px 0 0;
  padding: 12px;
  border: 3px solid #1e293b;
  border-bottom: none;
}

.showcase__laptop-content {
  background: #1e293b;
  border-radius: 8px;
  overflow: hidden;
}

.showcase__laptop-header-bar {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: var(--ink);
}

.showcase__laptop-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #374151;
}

.showcase__laptop-dot--red { background: #ef4444; }
.showcase__laptop-dot--yellow { background: #f59e0b; }
.showcase__laptop-dot--green { background: #10b981; }

.showcase__laptop-body {
  display: flex;
  height: 340px;
}

.showcase__laptop-sidebar {
  width: 72px;
  background: rgba(59, 130, 246, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase__laptop-main {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase__laptop-nav-bar {
  height: 34px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.showcase__laptop-cards {
  display: flex;
  gap: 14px;
}

.showcase__laptop-card {
  flex: 1;
  height: 86px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border-radius: 8px;
}

.showcase__laptop-chart {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase__laptop-base {
  background: linear-gradient(180deg, #4b5563 0%, #374151 100%);
  height: 18px;
  border-radius: 0 0 6px 6px;
  position: relative;
}

.showcase__laptop-base-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 6px;
  background: #6b7280;
  border-radius: 0 0 6px 6px;
}

/* Marketing layout (fills laptop body in the marketing panel) */
.showcase__marketing-main {
  flex: 1;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.showcase__marketing-nav {
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

.showcase__marketing-hero {
  display: flex;
  gap: 22px;
  flex: 1;
}

.showcase__marketing-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.showcase__marketing-headline {
  height: 34px;
  width: 80%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.showcase__marketing-subline {
  height: 18px;
  width: 60%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.showcase__marketing-cta {
  height: 30px;
  width: 100px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-radius: 6px;
}

.showcase__marketing-hero-image {
  flex: 1;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-radius: 10px;
}

.showcase__marketing-features {
  display: flex;
  gap: 14px;
}

.showcase__marketing-feature {
  flex: 1;
  height: 70px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Phone mockup (mobile panel) */
.showcase__phone {
  width: 280px;
  height: 560px;
  background: var(--ink);
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  position: relative;
}

.showcase__phone-notch {
  width: 100px;
  height: 32px;
  background: var(--ink);
  border-radius: 0 0 20px 20px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.showcase__phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1e293b 0%, var(--ink) 100%);
  border-radius: 36px;
  overflow: hidden;
  padding: 48px 16px 16px;
  position: relative;
}

.showcase__phone-time {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.showcase__phone-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase__phone-card {
  height: 100px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
  border-radius: 16px;
}

.showcase__phone-stats {
  display: flex;
  gap: 12px;
}

.showcase__phone-stat {
  flex: 1;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.showcase__phone-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.showcase__phone-list-item {
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.showcase__phone-nav {
  position: absolute;
  bottom: 24px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.showcase__phone-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.showcase__phone-nav-dot--active {
  background: var(--brand-blue);
  width: 28px;
  border-radius: 5px;
}

@media (prefers-reduced-motion: reduce) {
  .showcase__control label,
  .showcase__panel {
    transition: none;
  }
}

/* ===========================
   Pain Points / Sticky Notes
   =========================== */

.painpoints {
  padding: 80px 0;
  background-color: #fff;
  border-bottom: 1px solid var(--border);
}

.painpoints__title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.painpoints__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.sticky-note {
  padding: 28px 24px;
  border-radius: 4px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.08), 0 1px 2px rgba(59, 130, 246, 0.06);
  transform: rotate(var(--rotate, 0deg));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-note:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.12);
  z-index: 1;
}

.sticky-note:nth-child(1) { --rotate: -1.5deg; }
.sticky-note:nth-child(2) { --rotate: 0.8deg; }
.sticky-note:nth-child(3) { --rotate: -0.5deg; }
.sticky-note:nth-child(4) { --rotate: 1deg; }
.sticky-note:nth-child(5) { --rotate: -1deg; }
.sticky-note:nth-child(6) { --rotate: 0.5deg; }

.sticky-note--yellow { background-color: #fff9c4; }
.sticky-note--blue   { background-color: #deebff; }
.sticky-note--green  { background-color: #e3fcef; }
.sticky-note--pink   { background-color: #ffe0e6; }
.sticky-note--orange { background-color: #fff3e0; }
.sticky-note--purple { background-color: #ede7f6; }

/* ===========================
   Our Work
   =========================== */

.work {
  padding: 88px 0;
  background: var(--bg-subtle);
}

.work__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.work__eyebrow-tag {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

.work__section-title {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.work__controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.work__tabs {
  display: flex;
  gap: 8px;
}

.work__nav {
  display: flex;
  gap: 8px;
}

.work__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.work__nav-btn svg {
  width: 18px;
  height: 18px;
}

.work__nav-btn:hover:not(:disabled) {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.work__nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.work__tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.work__tab:hover:not(.work__tab--active) {
  background: rgba(59, 130, 246, 0.1);
}

.work__tab--active {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

.work__list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: -4px;
}

.work__list::-webkit-scrollbar {
  display: none;
}

.work__card {
  flex: 0 0 auto;
  width: min(760px, 82vw);
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.work__card[hidden] {
  display: none;
}

.work__content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.work__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}

.work__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.work__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.work__tag {
  background: var(--bg-muted);
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.work__link {
  color: var(--brand-blue);
  font-size: 0.9375rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.work__link:hover {
  gap: 12px;
}

.work__visual {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work__visual--blue   { background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.3) 100%); }
.work__visual--green  { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.3) 100%); }
.work__visual--purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.3) 100%); }

.work__phone {
  width: 160px;
  height: 320px;
  background: var(--ink);
  border-radius: 28px;
  padding: 6px;
  border: 3px solid;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work__phone-content {
  width: 100%;
  height: 100%;
  background: #1e293b;
  border-radius: 22px;
  overflow: hidden;
}

.work__phone-header {
  height: 60px;
}

.work__phone-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work__phone-card {
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

/* ===========================
   Low-Risk Way to Start
   =========================== */

.lowrisk {
  padding: 88px 0;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lowrisk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 24px;
}

/* Intro column */
.lowrisk__intro {
  display: flex;
  flex-direction: column;
}

.lowrisk__eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-blue);
  margin-bottom: 14px;
}

.lowrisk__title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.lowrisk__title-mark {
  text-decoration: underline;
  text-decoration-color: var(--brand-blue);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.lowrisk__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}

.lowrisk__cta {
  align-self: flex-start;
  margin-bottom: 14px;
}

.lowrisk__reassurance {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Comparison card */
.lowrisk__compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.lowrisk__compare-col {
  padding: 32px 28px;
}

.lowrisk__compare-col:first-child {
  border-right: 1px solid var(--border);
}

.lowrisk__compare-vs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  z-index: 1;
}

.lowrisk__compare-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.lowrisk__compare-label--pragmatic {
  color: var(--brand-blue);
}

.lowrisk__compare-price {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}

.lowrisk__compare-price--pragmatic {
  color: var(--brand-blue);
}

.lowrisk__compare-sublabel {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.lowrisk__compare-list {
  margin-top: 20px;
}

.lowrisk__compare-col:first-child .lowrisk__compare-list {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.lowrisk__compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.4;
  padding: 6px 0;
}

.lowrisk__compare-list--cross li {
  color: var(--text-muted);
}

.lowrisk__compare-list li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.lowrisk__compare-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(59, 130, 246, 0.08);
  color: var(--brand-blue-dark);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 20px;
}

.lowrisk__compare-callout svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--brand-blue);
}

.lowrisk__disclaimer {
  font-size: 0.6875rem;
  color: #94a3b8;
  line-height: 1.5;
  max-width: 640px;
}

/* Feature strip */
.lowrisk__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.lowrisk__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--brand-blue);
}

.lowrisk__feature-icon svg {
  width: 24px;
  height: 24px;
}

.lowrisk__feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.lowrisk__feature-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Unifying framing line */
.lowrisk__framing {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 48px;
}

/* ===========================
   Deliverables — Hand-Drawn Post-it Board
   =========================== */

.deliverables {
  padding: 80px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.deliverables__title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.deliverables__subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
}

/* Tab control */
.deliverables__control {
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 40px;
  background: var(--border);
  border-radius: 12px;
  padding: 6px;
  flex-wrap: wrap;
}

.deliverables__control input {
  display: none;
}

.deliverables__control label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.deliverables__control label svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.deliverables__control label:hover {
  color: var(--ink);
}

.deliverables__control input:checked + label {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Panels */
.deliverables__stage {
  position: relative;
}

.deliverables__panel {
  display: none;
}

.deliverables__control:has(#deliverables-pm:checked) ~ .deliverables__stage .deliverables__panel--pm,
.deliverables__control:has(#deliverables-design:checked) ~ .deliverables__stage .deliverables__panel--design,
.deliverables__control:has(#deliverables-fe:checked) ~ .deliverables__stage .deliverables__panel--fe,
.deliverables__control:has(#deliverables-marketing:checked) ~ .deliverables__stage .deliverables__panel--marketing {
  display: block;
}

/* Washi tape label */
.deliverables__tape {
  display: block;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 12px 32px;
  background: #efe6d0;
  color: #4a4335;
  font-family: 'Kalam', cursive;
  font-size: 1.1875rem;
  text-align: center;
  transform: rotate(-1.5deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  clip-path: polygon(0% 0%, 4% 25%, 0% 50%, 4% 75%, 0% 100%, 96% 100%, 100% 75%, 96% 50%, 100% 25%, 96% 0%);
}

.deliverables__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.deliverables__postit {
  aspect-ratio: 1;
  border-radius: 2px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.deliverables__postit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.deliverables__postit-icon {
  display: block;
  width: 56px;
  height: 56px;
  color: var(--ink);
}

.deliverables__postit-icon svg {
  width: 100%;
  height: 100%;
}

.deliverables__postit-label {
  font-family: 'Kalam', cursive;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}

.deliverables__postit--yellow { background-color: #fff3b0; }
.deliverables__postit--blue   { background-color: #dbeafe; }
.deliverables__postit--orange { background-color: #ffe3c2; }
.deliverables__postit--green  { background-color: #d1fae5; }

@media (prefers-reduced-motion: reduce) {
  .deliverables__postit {
    transition: none;
  }

  .deliverables__postit:hover {
    transform: none;
  }
}

/* ===========================
   How It Starts — 3 steps
   =========================== */

.howstart {
  padding: 88px 0;
  background-color: #fff;
}

.howstart__header {
  text-align: center;
  margin-bottom: 56px;
}

.howstart__title {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.howstart__subtitle {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.howstart__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.howstart__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.howstart__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--brand-blue);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.howstart__step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.howstart__step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.howstart__connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 10px;
  color: var(--border);
}

.howstart__connector svg {
  width: 40px;
  height: 16px;
}

/* ===========================
   Why Not Hire — Cost comparison
   =========================== */

.whynothire {
  padding: 80px 0;
  background-color: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.whynothire__header {
  text-align: center;
  margin-bottom: 48px;
}

.whynothire__title {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.whynothire__subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.whynothire__equation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1076px;
  margin: 0 auto;
}

.whynothire__operator {
  flex-shrink: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #94a3b8;
}

.whynothire__operator--equals {
  font-size: 2.25rem;
  color: var(--brand-blue);
}

.whynothire__badresult {
  flex: 0 1 auto;
  min-width: 190px;
  max-width: 210px;
  text-align: center;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 20px 18px;
  opacity: 0.85;
}

.whynothire__badresult-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #dc2626;
  margin-bottom: 8px;
}

.whynothire__badresult-price {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.whynothire__badresult-note {
  display: block;
  font-size: 0.75rem;
  color: #f87171;
  margin-top: 8px;
}

.whynothire__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 640px;
  margin: 32px auto;
}

.whynothire__divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.whynothire__divider-label {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.whynothire__role {
  flex: 1 1 130px;
  max-width: 170px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 14px 20px;
  transition: box-shadow 0.2s ease;
}

.whynothire__role:hover {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}

.whynothire__role-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.whynothire__role-icon svg {
  width: 20px;
  height: 20px;
}

.whynothire__role-icon--yellow { background: rgba(247, 201, 72, 0.15); color: #d4a017; }
.whynothire__role-icon--teal   { background: rgba(0, 184, 217, 0.15); color: #00838f; }
.whynothire__role-icon--red    { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.whynothire__role-icon--orange { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }

.whynothire__role-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.whynothire__role-salary {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.whynothire__result {
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 32px auto 0;
  padding: 48px;
  background: linear-gradient(135deg, #1e293b 0%, var(--brand-blue) 100%);
  border-radius: 20px;
  box-shadow: 0 24px 56px rgba(59, 130, 246, 0.35), 0 4px 16px rgba(59, 130, 246, 0.3);
}

.whynothire__result::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.whynothire__result-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.whynothire__result-grid {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}

.whynothire__result-price-block {
  flex: 0 0 auto;
  padding-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.whynothire__result-pretitle {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.whynothire__result-price {
  display: block;
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.whynothire__result-price small {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.whynothire__result-annual {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 10px;
  max-width: 220px;
  line-height: 1.5;
}

.whynothire__result-details {
  flex: 1 1 320px;
}

.whynothire__result-hook {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 16px;
}

.whynothire__result-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.whynothire__result-list li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.whynothire__result-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
}

.whynothire__result-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--brand-blue);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 8px;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whynothire__result-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  color: var(--brand-blue);
}

/* ===========================
   FAQ
   =========================== */

.faq {
  padding: 80px 0;
  background-color: #fff;
}

.faq__title {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.faq__question {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

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

/* ===========================
   Pricing
   =========================== */

.pricing {
  padding: 88px 0;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border);
}

.pricing__title {
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

/* --- Hero header (title/subtitle + feature badges) --- */

.pricing__hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.pricing__hero-header-text {
  max-width: 620px;
}

.pricing__hero-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 16px;
}

.pricing__hero-features {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.pricing__hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 150px;
}

.pricing__hero-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing__hero-feature-icon svg {
  width: 18px;
  height: 18px;
}

.pricing__hero-feature p {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--ink);
}

.pricing__hero-feature p strong {
  font-weight: 700;
}

/* --- Sprint hero (featured card + role grid) --- */

.pricing__hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.pricing__hero-card {
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  border: 2px solid var(--brand-blue);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
  display: flex;
  flex-direction: column;
}

.pricing__hero-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-blue);
  background: rgba(59, 130, 246, 0.1);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.pricing__hero-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.pricing__hero-price {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: -0.03em;
}

.pricing__hero-divider {
  display: block;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.pricing__hero-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing__hero-cta {
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
}

.pricing__hero-link {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.pricing__hero-roles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pricing__hero-role {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing__hero-role:hover {
  box-shadow: 0 10px 24px rgba(59, 130, 246, 0.1);
  transform: translateY(-3px);
}

.pricing__hero-role--green  { border-top-color: #10B981; }
.pricing__hero-role--purple { border-top-color: var(--brand-violet); }
.pricing__hero-role--blue   { border-top-color: var(--brand-blue); }
.pricing__hero-role--orange { border-top-color: #f59e0b; }
.pricing__hero-role--gray   { border-top-color: var(--text-muted); }

.pricing__hero-role-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pricing__hero-role-icon svg {
  width: 20px;
  height: 20px;
}

.pricing__hero-role-icon--green  { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.pricing__hero-role-icon--purple { background: rgba(139, 92, 246, 0.15); color: var(--brand-violet); }
.pricing__hero-role-icon--blue   { background: rgba(59, 130, 246, 0.12); color: var(--brand-blue); }
.pricing__hero-role-icon--orange { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.pricing__hero-role-icon--gray   { background: var(--bg-muted); color: var(--text-secondary); }

.pricing__hero-role h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.pricing__hero-role p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing__hero-role-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing__hero-role-footer svg {
  width: 14px;
  height: 14px;
  padding: 3px;
  box-sizing: content-box;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--text-muted);
  flex-shrink: 0;
}

/* --- Retainer block --- */

.pricing__retainer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 48px;
  margin-bottom: 32px;
}

.pricing__retainer-top {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing__retainer-intro {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 320px;
}

.pricing__retainer-intro-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing__retainer-intro-icon svg {
  width: 20px;
  height: 20px;
}

.pricing__retainer-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #10B981;
  margin-bottom: 8px;
}

.pricing__retainer-headline {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}

.pricing__retainer-sub {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing__retainer-selector {
  flex: 1 1 280px;
  text-align: center;
  padding: 0 32px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.pricing__retainer-selector-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pricing__capacity-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.pricing__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.pricing__pill:hover {
  border-color: #94a3b8;
}

.pricing__pill:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.pricing__pill[aria-checked="true"] {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  background: rgba(59, 130, 246, 0.06);
}

.pricing__pill-check {
  display: none;
  width: 12px;
  height: 12px;
}

.pricing__pill[aria-checked="true"] .pricing__pill-check {
  display: block;
}

.pricing__retainer-selector-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.pricing__retainer-billing {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing__retainer-billing-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing__retainer-billing-icon svg {
  width: 18px;
  height: 18px;
}

.pricing__retainer-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pricing__tier {
  width: 100%;
  font-family: inherit;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pricing__tier:hover {
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.08);
}

.pricing__tier:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.pricing__tier[aria-pressed="true"] {
  border-color: var(--brand-blue);
  background: linear-gradient(180deg, #eff6ff 0%, #fff 100%);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.pricing__tier-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing__tier-selected-label {
  display: none;
  position: absolute;
  top: 12px;
  right: 14px;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-blue);
}

.pricing__tier-selected-label svg {
  width: 13px;
  height: 13px;
}

.pricing__tier[aria-pressed="true"] .pricing__tier-selected-label {
  display: inline-flex;
}

.pricing__tier-hours {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.pricing__tier[aria-pressed="true"] .pricing__tier-hours {
  color: var(--brand-blue);
}

.pricing__tier-price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.pricing__tier-price small {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing__tier-annual {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #10B981;
  margin-top: 12px;
}

.pricing__tier-weekly {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
}

.pricing__tier-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-blue);
  margin-bottom: 6px;
}

.pricing__tier-desc {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  min-height: 4.05em;
  margin-bottom: 4px;
}

.pricing__tier-longdesc {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing__tier-divider {
  display: block;
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.pricing__tier-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.pricing__tier-check svg {
  width: 14px;
  height: 14px;
  padding: 3px;
  box-sizing: content-box;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--brand-blue);
  flex-shrink: 0;
}

.pricing__retainer-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 16px;
}

.pricing__retainer-note a {
  color: var(--brand-blue);
  font-weight: 600;
}

/* --- Footnote --- */

.pricing__footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0;
}

.pricing__footnote a {
  color: var(--brand-blue);
  font-weight: 600;
}

/* ===========================
   About — Content + Values
   =========================== */

.about {
  padding: 88px 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about__title {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__desc:last-child {
  margin-bottom: 0;
}

/* Value propositions */
.about__values {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-blue);
}

.about__value-icon svg {
  width: 22px;
  height: 22px;
}

.about__value h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.about__value p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===========================
   CTA Section — Centered
   =========================== */

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-dark) 50%, #1d4ed8 100%);
  color: #fff;
}

.cta-section__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-section__orb--1 {
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.cta-section__orb--2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-section__desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-section__actions {
  margin-bottom: 0;
}

.cta-section__email {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.cta-section__email a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s ease;
}

.cta-section__email a:hover {
  opacity: 0.8;
}

/* ===========================
   Footer — Three-column
   =========================== */

.footer {
  background-color: var(--ink);
  color: #fff;
  padding-top: 48px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 12px;
}

.footer__logo-svg {
  height: 30px;
  width: auto;
}

.footer__tagline {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__social a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.footer__social a:hover {
  color: #fff;
}

.footer__bottom {
  padding: 24px 0;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===========================
   Scroll Reveal
   =========================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive — Tablet (1024px)
   =========================== */

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle br {
    display: none;
  }

  .hero__mockup {
    height: 380px;
  }

  .hero__device-wrapper {
    transform: scale(0.82);
    transform-origin: top center;
  }

  .capabilities__groups {
    flex-direction: column;
    gap: 32px;
  }

  .capabilities__divider {
    width: 100%;
    height: 1px;
  }

  .showcase__stage {
    min-height: 500px;
  }

  .showcase__panel {
    transform: translate(-50%, -50%) scale(0.85);
  }

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

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

  .pricing__hero-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .pricing__hero-features {
    flex-wrap: wrap;
    gap: 20px;
  }

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

  .pricing__hero-roles {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing__retainer-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Our Work */
  .work__card {
    width: min(600px, 85vw);
  }

}

/* ===========================
   Responsive — Mobile (768px)
   =========================== */

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Nav */
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-top: 1px solid var(--border);
  }

  .nav__menu.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__link {
    font-size: 1rem;
  }

  .nav__link--cta {
    text-align: center;
    display: block;
    padding: 12px 24px;
  }

  .nav__toggle.is-active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__toggle.is-active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.is-active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero {
    padding: 56px 0 48px;
  }

  .hero__content {
    gap: 40px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__title br {
    display: none;
  }

  .hero__subtitle br {
    display: none;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    text-align: center;
    width: 100%;
  }

  .hero__mockup {
    height: 280px;
  }

  .hero__device-wrapper {
    transform: scale(0.55);
    transform-origin: top center;
  }

  /* Capabilities */
  .capabilities__group-cards {
    grid-template-columns: 1fr;
  }

  /* Device showcase */
  .showcase__control {
    padding: 4px;
  }

  .showcase__control label {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .showcase__stage {
    min-height: 300px;
  }

  .showcase__panel {
    transform: translate(-50%, -50%) scale(0.5);
  }

  /* Pain points */
  .painpoints {
    padding: 64px 0;
  }

  .painpoints__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Sections padding */
  .capabilities,
  .showcase,
  .work,
  .lowrisk,
  .howstart,
  .whynothire,
  .faq,
  .pricing,
  .about {
    padding: 64px 0;
  }

  /* Our Work */
  .work__header {
    align-items: flex-start;
  }

  .work__controls {
    flex-wrap: wrap;
    gap: 12px;
  }

  .work__card {
    width: 88vw;
  }

  .work__content {
    padding: 32px;
  }

  .work__nav-btn {
    width: 36px;
    height: 36px;
  }

  /* Low-risk way to start */
  .lowrisk__grid {
    gap: 32px;
  }

  .lowrisk__compare-col {
    padding: 24px 20px;
  }

  .lowrisk__features {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Deliverables */
  .deliverables {
    padding: 64px 0;
  }

  .deliverables__control {
    padding: 4px;
  }

  .deliverables__control label,
  .deliverables__control-label {
    padding: 10px 14px;
    font-size: 0.8125rem;
  }

  .deliverables__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .deliverables__postit-icon {
    width: 44px;
    height: 44px;
  }

  .deliverables__postit-label {
    font-size: 0.9375rem;
  }

  /* How it starts */
  .howstart__steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .howstart__step {
    max-width: 360px;
  }

  .howstart__connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  /* Why not hire */
  .whynothire__equation {
    flex-direction: column;
  }

  .whynothire__role {
    max-width: 280px;
    width: 100%;
  }

  .whynothire__operator {
    transform: rotate(90deg);
  }

  .whynothire__operator--equals {
    transform: none;
  }

  .whynothire__badresult {
    width: 100%;
    max-width: 280px;
  }

  .whynothire__divider {
    margin: 24px auto;
  }

  .whynothire__result {
    padding: 32px 24px;
  }

  .whynothire__result-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .whynothire__result-price-block {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .whynothire__result-list {
    grid-template-columns: 1fr;
  }

  .whynothire__result-cta {
    width: 100%;
  }

  .whynothire__title {
    font-size: 1.5rem;
  }

  /* FAQ */
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Pricing */
  .pricing__title {
    font-size: 1.5rem;
  }

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

  .pricing__hero-roles {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing__retainer {
    padding: 32px 24px;
  }

  .pricing__retainer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .pricing__retainer-selector {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }

  .pricing__capacity-pills {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .pricing__pill {
    flex-shrink: 0;
  }

  .pricing__retainer-tiers {
    grid-template-columns: 1fr;
  }

  .pricing__tier-desc {
    min-height: 0;
  }

  /* About */
  .about__title {
    font-size: 1.5rem;
  }

  /* CTA */
  .cta-section {
    padding: 64px 0;
  }

  .cta-section__title {
    font-size: 1.75rem;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__social {
    flex-direction: row;
    gap: 16px;
  }

  .footer__bottom {
    text-align: center;
  }
}

/* ===========================
   Responsive — Small Mobile (480px)
   =========================== */

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .btn--text {
    text-align: center;
  }

  .lowrisk__title {
    font-size: 1.625rem;
  }

  .lowrisk__title br {
    display: none;
  }

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

  .lowrisk__compare-col:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .lowrisk__compare-vs {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .work__card {
    grid-template-columns: 1fr;
    width: 90vw;
  }

  .work__visual {
    padding: 24px;
  }

  .work__phone {
    width: 120px;
    height: 240px;
  }
}
