/* ============================================================
   OPERIZE — Main Stylesheet
   Brand: AI-Powered Operations for Growing Businesses
   ============================================================ */

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

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --color-navy:        #0F1B35;
  --color-navy-light:  #162347;
  --color-navy-mid:    #1e3a5f;
  --color-teal:        #00C9B1;
  --color-teal-dark:   #00a896;
  --color-teal-light:  #e6faf8;
  --color-white:       #FFFFFF;
  --color-gray-light:  #F5F7FA;
  --color-gray-mid:    #64748B;
  --color-gray-border: #E2E8F0;
  --color-gray-200:    #CBD5E1;
  --color-success:     #22C55E;
  --color-text-dark:   #0F1B35;
  --color-text-body:   #374151;
  --color-text-muted:  #64748B;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-padding-y: 96px;
  --section-padding-y-sm: 64px;
  --container-max: 1200px;
  --container-pad: 24px;

  /* Radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Nav */
  --nav-height: 72px;
}

/* ---- Reset & Normalize ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-body);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text-dark);
  font-weight: 700;
}

/* ---- Typography Scale ---- */
.text-xs    { font-size: 0.75rem; }
.text-sm    { font-size: 0.875rem; }
.text-base  { font-size: 1rem; }
.text-lg    { font-size: 1.125rem; }
.text-xl    { font-size: 1.25rem; }
.text-2xl   { font-size: 1.5rem; }
.text-3xl   { font-size: 1.875rem; }
.text-4xl   { font-size: 2.25rem; }
.text-5xl   { font-size: 3rem; }
.text-6xl   { font-size: 3.75rem; }

.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold{ font-weight: 800; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

/* ---- Color Backgrounds ---- */
.bg-navy       { background-color: var(--color-navy); }
.bg-navy-light { background-color: var(--color-navy-light); }
.bg-white      { background-color: var(--color-white); }
.bg-gray-light { background-color: var(--color-gray-light); }
.bg-teal       { background-color: var(--color-teal); }

/* ---- Text Colors ---- */
.text-white   { color: var(--color-white); }
.text-teal    { color: var(--color-teal); }
.text-navy    { color: var(--color-navy); }
.text-muted   { color: var(--color-text-muted); }
.text-gray    { color: var(--color-gray-mid); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

/* ---- Utility ---- */
.flex         { display: flex; }
.flex-col     { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2        { gap: 8px; }
.gap-3        { gap: 12px; }
.gap-4        { gap: 16px; }
.gap-6        { gap: 24px; }
.gap-8        { gap: 32px; }
.gap-12       { gap: 48px; }
.w-full       { width: 100%; }
.relative     { position: relative; }
.overflow-hidden { overflow: hidden; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: -0.01em;
}

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

.btn--primary:hover {
  background-color: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 201, 177, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-1px);
}

.btn--ghost-navy {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-gray-border);
}

.btn--ghost-navy:hover {
  border-color: var(--color-navy);
  transform: translateY(-1px);
}

.btn--lg {
  font-size: 1.0625rem;
  padding: 17px 36px;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 10px 20px;
}

.text-link {
  color: var(--color-teal);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}

.text-link:hover {
  gap: 8px;
}

.text-link-white {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-style: italic;
  text-decoration: none;
  transition: color var(--transition-base);
}
.text-link-white:hover {
  color: var(--color-white);
}

/* ---- Badges / Pills ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge--teal {
  background-color: rgba(0, 201, 177, 0.12);
  color: var(--color-teal);
  border: 1px solid rgba(0, 201, 177, 0.25);
}

.badge--navy {
  background-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
}

/* ---- Section Header ---- */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Cards ---- */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition-base), transform var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(0, 201, 177, 0.2);
}

.card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
  color: var(--color-white);
}

.card--dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0, 201, 177, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: var(--color-teal-light);
  flex-shrink: 0;
}

.card-icon--dark {
  background: rgba(0, 201, 177, 0.12);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

.card--dark .card-title {
  color: var(--color-white);
}

.card-body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.card--dark .card-body {
  color: rgba(255,255,255,0.65);
}

/* ---- Stat Blocks ---- */
.stat-block {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.nav--transparent {
  background-color: transparent;
}

.nav--solid {
  background-color: var(--color-navy);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.nav__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--color-teal);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-white);
  background-color: rgba(255,255,255,0.06);
}

.nav__cta {
  display: none;
  flex-shrink: 0;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast);
}

.nav__hamburger:hover {
  background-color: rgba(255,255,255,0.08);
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--color-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.nav__mobile.is-open {
  display: block;
}

.nav__mobile-links {
  list-style: none;
  margin-bottom: 20px;
}

.nav__mobile-links li {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__mobile-links a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav__mobile-links a:hover {
  color: var(--color-teal);
}

/* ---- Hero Pattern (circuit grid) ---- */
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.06;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 201, 177, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 201, 177, 0.6) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 201, 177, 0.8) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: 24px 24px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 201, 177, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Hero section ---- */
.hero {
  background-color: var(--color-navy);
  color: var(--color-white);
  position: relative;
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 100px;
  overflow: hidden;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-white);
  margin-bottom: 24px;
}

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

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__trust {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

.hero__trust span {
  margin: 0 6px;
  color: rgba(0, 201, 177, 0.5);
}

/* Hero stats */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

.hero__stat-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition-base), background-color var(--transition-base);
}

.hero__stat-badge:hover {
  background: rgba(0, 201, 177, 0.06);
  border-color: rgba(0, 201, 177, 0.25);
}

.hero__stat-badge-number {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__stat-badge-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}

/* ---- Pain Points Grid ---- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(0, 201, 177, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

/* ---- Checklist ---- */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(0, 201, 177, 0.15);
  border: 2px solid var(--color-teal);
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
}

.checklist li::after {
  content: '';
  display: block;
}

/* Simpler checkmark approach */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.check-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 201, 177, 0.12);
  border: 2px solid var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
  color: var(--color-teal);
  font-weight: 700;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 201, 177, 0.15);
  color: var(--color-teal);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-list--dark li {
  color: var(--color-text-body);
}

.check-list--dark li::before {
  background: rgba(0, 201, 177, 0.12);
}

/* ---- Price Callout ---- */
.price-callout {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.price-callout__amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-callout__meta {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
}

/* ---- How It Works Steps ---- */
.steps-container {
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

.step {
  display: flex;
  gap: 20px;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), #009e8f);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 201, 177, 0.35);
}

.step__content {}

.step__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 6px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step__body {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ---- ROI Calculator ---- */
.calculator {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.calculator__field {
  margin-bottom: 32px;
}

.calculator__label {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calculator__label-value {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-teal);
}

.calculator__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--color-gray-border);
  outline: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.calculator__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-teal);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 201, 177, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.calculator__slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 14px rgba(0, 201, 177, 0.5);
}

.calculator__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-teal);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 201, 177, 0.4);
}

.calculator__result {
  background: linear-gradient(135deg, var(--color-navy), var(--color-navy-mid));
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-top: 8px;
}

.calculator__result-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.calculator__result-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-teal);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.calculator__result-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ---- Stats Section ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}

/* ---- Founder Section ---- */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.founder-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--color-navy-light), var(--color-navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 1px solid rgba(0, 201, 177, 0.15);
  overflow: hidden;
  position: relative;
}

.founder-photo::after {
  content: 'JA';
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 201, 177, 0.4);
  letter-spacing: -0.02em;
}

/* ---- Industries ---- */
.industries-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.industry-pill {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: all var(--transition-base);
  cursor: default;
}

.industry-pill:hover {
  background: rgba(0, 201, 177, 0.06);
  border-color: rgba(0, 201, 177, 0.35);
  color: var(--color-teal);
  transform: translateY(-1px);
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--color-navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ---- Guarantee Box ---- */
.guarantee-box {
  border: 2px solid var(--color-teal);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: rgba(0, 201, 177, 0.04);
  position: relative;
}

.guarantee-box__label {
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--color-teal);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

/* ---- Timeline (Day-by-day) ---- */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-teal), rgba(0, 201, 177, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 201, 177, 0.2);
}

.timeline-item__day {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.timeline-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.timeline-item__body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- FAQ Accordion ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  cursor: pointer;
  transition: background-color var(--transition-fast);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-dark);
  border: none;
}

.faq-question:hover {
  background: var(--color-gray-light);
}

.faq-question.is-open {
  background: var(--color-gray-light);
  color: var(--color-navy);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-base), background-color var(--transition-base);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-gray-mid);
}

.faq-question.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-teal);
  color: var(--color-navy);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer.is-open {
  max-height: 400px;
}

.faq-answer__inner {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---- Contact Form ---- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-text-dark);
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 201, 177, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ---- Calendly Embed Placeholder ---- */
.calendly-placeholder {
  width: 100%;
  min-height: 600px;
  border-radius: var(--radius-lg);
  background: var(--color-gray-light);
  border: 2px dashed var(--color-gray-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 48px;
}

.calendly-placeholder__icon {
  font-size: 3rem;
  opacity: 0.5;
}

.calendly-placeholder__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.calendly-placeholder__sub {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  max-width: 300px;
  line-height: 1.6;
}

/* ---- Values Grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ---- Photo Placeholder ---- */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-mid) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 201, 177, 0.3);
  letter-spacing: -0.02em;
  border: 1px solid rgba(0, 201, 177, 0.1);
  flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
  background-color: var(--color-navy);
  color: rgba(255,255,255,0.65);
  padding-top: 72px;
  padding-bottom: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.footer__logo span {
  color: var(--color-teal);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 16px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-teal);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
  color: var(--color-teal);
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: rgba(255,255,255,0.6);
}

/* ---- Scroll Animations ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Load animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.anim-fade-up {
  animation: fadeInUp 0.7s ease forwards;
}

.anim-fade-up.delay-1 { animation-delay: 0.1s; opacity: 0; }
.anim-fade-up.delay-2 { animation-delay: 0.2s; opacity: 0; }
.anim-fade-up.delay-3 { animation-delay: 0.3s; opacity: 0; }
.anim-fade-up.delay-4 { animation-delay: 0.45s; opacity: 0; }
.anim-fade-up.delay-5 { animation-delay: 0.6s; opacity: 0; }

/* ---- Divider ---- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--color-teal);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* ---- Minimal nav (audit page) ---- */
.nav--minimal .nav__links {
  display: none !important;
}

/* ---- Audit page specifics ---- */
.audit-hero {
  text-align: center;
  padding-bottom: 80px;
}

.audit-hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  max-width: 800px;
  margin: 0 auto 24px;
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 9px 16px;
  border-radius: var(--radius-full);
}

.trust-signal-icon {
  font-size: 1rem;
}

/* ---- Included sections layout ---- */
.included-section-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 201, 177, 0.15);
}

.included-section-title:first-child {
  margin-top: 0;
}

/* ---- Services Page ---- */
.service-full-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  transition: box-shadow var(--transition-base);
  margin-bottom: 24px;
}

.service-full-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-full-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--color-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.service-full-card__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.service-full-card__bullets li {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  padding-left: 20px;
  position: relative;
}

.service-full-card__bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-size: 0.875rem;
}

/* ---- About Page ---- */
.values-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  border-top: 3px solid var(--color-teal);
}

/* ---- Contact Page ---- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-info-item__value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

/* ---- 2-col grid layouts ---- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ============================================================
   RESPONSIVE — 640px (small)
   ============================================================ */
@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__stats {
    flex-wrap: nowrap;
  }

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

/* ============================================================
   RESPONSIVE — 768px (tablet)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --section-padding-y: 112px;
  }

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

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

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

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

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

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

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-teal), rgba(0, 201, 177, 0.2));
    z-index: 0;
  }

  .step__number {
    z-index: 1;
  }

  .founder-grid {
    grid-template-columns: auto 1fr;
  }

  .founder-photo {
    max-width: 320px;
  }
}

/* ============================================================
   RESPONSIVE — 1024px (desktop)
   ============================================================ */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

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

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

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

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

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  }

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

  .service-full-card {
    grid-template-columns: auto 1fr;
    gap: 40px;
  }

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

/* ============================================================
   RESPONSIVE — 1280px (wide)
   ============================================================ */
@media (min-width: 1280px) {
  :root {
    --container-pad: 40px;
    --section-padding-y: 120px;
  }
}

/* ---- Focus styles for accessibility ---- */
:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Print ---- */
@media print {
  .nav, .footer { display: none; }
  section { padding: 24px 0; }
}
