/* =========================================================
   WorkToDone.com — Main Stylesheet
   Pastel, contrasted, professional. Font: Montserrat.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── Variables — OC DARK THEME (demo) ──────────────────── */
:root {
  --bg:          transparent;          /* lets the animated canvas show through */
  --surface:     rgba(255,255,255,.045);
  --surface-alt: rgba(255,255,255,.08);
  --navy:        rgba(10,16,24,.55);
  --navy-dark:   rgba(5,9,14,.72);
  --accent:      #4DD9C0;              /* OC teal */
  --accent-dark: #34b9a2;
  --accent-light:#8fe8d8;
  --warm:        #FF7E8A;             /* coral — complements teal */
  --warm-light:  rgba(255,126,138,.14);
  --text-h:      rgba(255,255,255,.95);
  --text-b:      rgba(255,255,255,.72);
  --text-m:      rgba(255,255,255,.5);
  --text-w:      #FFFFFF;
  --border:      rgba(255,255,255,.12);
  --shadow-sm:   0 2px 10px rgba(0,0,0,.4);
  --shadow-md:   0 6px 26px rgba(0,0,0,.5);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.6);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --font:        'Montserrat', sans-serif;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --transition:  .25s ease;
  --max-w:       1200px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 115px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-b);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ── Typography ────────────────────────────────────────── */
h1,h2,h3,h4,h5 { color: var(--text-h); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: .95rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--text-b); line-height: 1.75; }
.text-accent  { color: var(--accent); }
.text-warm    { color: var(--warm); }
.text-muted   { color: var(--text-m); }
.text-white   { color: var(--text-w); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
strong { font-weight: 700; }

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--lg { padding: 110px 0; }
.section-dark { background: var(--navy); }
.section-darker { background: var(--navy-dark); }
.section-alt { background: var(--surface-alt); }
.section-warm { background: var(--warm-light); }
.section-white { background: #F0F5FB; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.checklist-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.mt-8  { margin-top: 8px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-size: .95rem; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap; border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark); border-color: var(--accent-dark);
  color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-sm);
}
.btn-warm {
  background: var(--warm); color: #fff; border-color: var(--warm);
}
.btn-warm:hover {
  background: #b8663e; border-color: #b8663e;
  color: #fff; transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent); color: #fff;
}
.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: #fff;
}
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

/* ── Section Header ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
  display: inline-block; background: var(--surface-alt);
  color: var(--accent); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 620px; margin: 0 auto; color: var(--text-b); font-size: 1.05rem; }
.section-dark .section-header .eyebrow { background: rgba(255,255,255,.1); color: var(--accent-light); }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p { color: rgba(255,255,255,.75); }

/* ── Top Utility Bar ───────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  padding: 10px 0;
  position: sticky; top: 0; z-index: 1000;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.topbar__left { display: flex; align-items: center; gap: 24px; }
.topbar__phone {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500;
}
.topbar__phone svg { width: 16px; height: 16px; fill: var(--accent-light); }
.topbar__phone a { color: rgba(255,255,255,.85); }
.topbar__phone a:hover { color: #fff; }
.topbar__tagline { color: rgba(255,255,255,.5); font-size: .8rem; }
.topbar__cta {
  background: var(--warm); color: #fff;
  padding: 8px 22px; border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 700;
  transition: all var(--transition);
}
.topbar__cta:hover { background: #b8663e; color: #fff; transform: translateY(-1px); }

/* ── Navigation ────────────────────────────────────────── */
.nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 45px; z-index: 999;
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px; height: 64px;
  max-width: var(--max-w); margin: 0 auto;
}
.nav__logo {
  font-size: 1.25rem; font-weight: 800; color: var(--text-h);
  letter-spacing: -.02em;
}
.nav__logo span { color: var(--accent); }
.nav__logo:hover { color: var(--text-h); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: var(--text-b);
  transition: all var(--transition);
}
.nav__links a:hover { background: var(--surface-alt); color: var(--text-h); }
.nav__links a.active { color: var(--accent); background: var(--surface-alt); }
.nav__links a.nav-cta {
  background: var(--accent); color: #fff;
  padding: 9px 18px; margin-left: 8px;
}
.nav__links a.nav-cta:hover { background: var(--accent-dark); color: #fff; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 6px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-h); border-radius: 2px;
  transition: all var(--transition);
}
.nav.open .nav__hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav.open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav.open .nav__hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2D5578 100%);
  padding: 100px 0 90px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235A8FC2' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(90,143,194,.2); color: var(--accent-light);
  font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 24px;
  border: 1px solid rgba(90,143,194,.3);
}
.hero__title { color: #fff; margin-bottom: 20px; font-size: clamp(2rem,5vw,3.2rem); }
.hero__title span { color: var(--accent-light); }
.hero__text { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 36px; line-height: 1.75; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 36px; backdrop-filter: blur(10px);
}
.hero__card-label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--accent-light); margin-bottom: 12px;
}
.hero__card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.hero__card p { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 24px; }
.hero__card .btn { width: 100%; justify-content: center; }

/* Hero variants */
.hero--sm { padding: 60px 0 50px; }
.hero--sm .hero__inner { grid-template-columns: 1fr; max-width: 700px; }

/* ── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stats-bar__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; text-align: center;
}
.stats-bar__item {}
.stats-bar__number {
  font-size: 1.8rem; font-weight: 800; color: #fff;
  line-height: 1; margin-bottom: 4px;
}
.stats-bar__number span { color: var(--accent-light); }
.stats-bar__label {
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .06em;
}
.stats-bar__divider {
  width: 1px; background: rgba(255,255,255,.12);
  margin: 0 auto;
}

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  height: 100%;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent-light);
}
.card__icon {
  width: 52px; height: 52px;
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card__icon svg { width: 26px; height: 26px; fill: var(--accent); }
.card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.card p { color: var(--text-b); font-size: .92rem; }
.card--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.card--dark:hover { border-color: var(--accent-light); }
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255,255,255,.7); }
.card--dark .card__icon { background: rgba(255,255,255,.08); }
.card--dark .card__icon svg { fill: var(--accent-light); }
.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.card--link h3 { color: var(--text-h); }
.card--link:hover h3 { color: var(--accent); }

/* Role cards */
.role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.role-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.role-card__tag {
  display: inline-block;
  background: var(--surface-alt); color: var(--accent);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.role-card h4 { margin-bottom: 10px; color: var(--text-h); }
.role-card p { font-size: .9rem; color: var(--text-b); margin: 0; }
a.role-card { display: block; text-decoration: none; cursor: pointer; }
a.role-card:hover { transform: translateY(-2px); }
.role-card__more {
  display: inline-block; margin-top: 16px;
  font-size: .8rem; font-weight: 700; color: var(--accent);
  letter-spacing: .02em; opacity: 0; transform: translateX(-4px);
  transition: all var(--transition);
}
a.role-card:hover .role-card__more { opacity: 1; transform: translateX(0); }

/* ── Testimonials ──────────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; left: 24px;
  font-size: 4rem; color: var(--accent-light);
  font-family: Georgia, serif; line-height: 1;
  opacity: .4;
}
.testimonial-card__text {
  font-size: .95rem; color: var(--text-b);
  font-style: italic; margin-bottom: 20px;
  padding-top: 20px; line-height: 1.75;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-alt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; color: var(--accent);
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; font-size: .9rem; color: var(--text-h); }
.testimonial-card__role { font-size: .8rem; color: var(--text-m); }

/* ── Process Steps ─────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute; top: 28px; left: 12.5%; right: 12.5%;
  height: 2px; background: rgba(255,255,255,.15);
}
.step { text-align: center; padding: 0 20px; position: relative; }
.step__number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 6px rgba(90,143,194,.2);
}
.step h4 { color: #fff; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.68); font-size: .88rem; }

/* ── Pricing ───────────────────────────────────────────── */
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.pricing-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 5px 18px; border-radius: 999px;
  white-space: nowrap;
}
.pricing-card__badge--warm { background: var(--warm); }
.pricing-card__name { font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin-bottom: 8px; }
.pricing-card__price { margin-bottom: 6px; }
.pricing-card__price .amount {
  font-size: 2.6rem; font-weight: 800; color: var(--text-h); line-height: 1;
}
.pricing-card__price .period { font-size: .9rem; color: var(--text-m); margin-left: 4px; }
.pricing-card__desc { font-size: .88rem; color: var(--text-m); margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border); }
.pricing-card__fit { font-size: .8rem; font-weight: 600; color: var(--text-m);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.pricing-card__features { flex: 1; margin-bottom: 28px; }
.pricing-card__features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--text-b);
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '✓'; color: var(--accent); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Portfolio ─────────────────────────────────────────── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.portfolio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent-light);
}
.portfolio-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent-dark) 100%);
  padding: 28px 24px 24px;
}
.portfolio-card__num {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent-light); margin-bottom: 8px;
}
.portfolio-card__title { color: #fff; font-size: 1.05rem; line-height: 1.35; }
.portfolio-card__body { padding: 24px; }
.portfolio-card__metrics {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px;
}
.portfolio-card__metric {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .85rem; color: var(--text-b);
}
.portfolio-card__metric strong { color: var(--accent); font-size: .95rem; }
.portfolio-card__tag {
  display: inline-block;
  background: var(--surface-alt); color: var(--accent);
  font-size: .75rem; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
}
.portfolio-card__expand { display: none; padding: 0 24px 24px; }
.portfolio-card.expanded .portfolio-card__expand { display: block; }
.portfolio-card__expand-title {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-m); margin-bottom: 6px; margin-top: 16px;
}
.portfolio-card__expand-title:first-child { margin-top: 0; }
.portfolio-card__expand p { font-size: .88rem; color: var(--text-b); margin-bottom: 8px; }
.portfolio-card__expand ul { padding-left: 0; }
.portfolio-card__expand ul li {
  font-size: .88rem; color: var(--text-b);
  padding: 3px 0; padding-left: 16px; position: relative;
}
.portfolio-card__expand ul li::before {
  content: '·'; position: absolute; left: 4px; color: var(--accent);
}
.portfolio-card__toggle {
  width: 100%; padding: 12px 24px;
  background: var(--surface-alt); border: none; border-top: 1px solid var(--border);
  color: var(--accent); font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.portfolio-card__toggle:hover { background: var(--border); }
.portfolio-card__toggle-icon { transition: transform var(--transition); }
.portfolio-card.expanded .portfolio-card__toggle-icon { transform: rotate(180deg); }
a.portfolio-card { display: block; text-decoration: none; }
.portfolio-card__more {
  display: inline-block; margin-top: 14px;
  font-size: .82rem; font-weight: 700; color: var(--accent);
  letter-spacing: .02em; transition: transform var(--transition);
}
a.portfolio-card:hover .portfolio-card__more { transform: translateX(3px); }

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  background: var(--surface);
  overflow: hidden;
}
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 600; color: var(--text-h);
  text-align: left; transition: all var(--transition);
  font-family: var(--font);
}
.faq-item__q:hover { background: var(--surface-alt); }
.faq-item__icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface-alt); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem; font-weight: 300;
  transition: all var(--transition);
}
.faq-item.open .faq-item__icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-item__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-item.open .faq-item__a { max-height: 600px; }
.faq-item__a-inner {
  padding: 0 24px 20px;
  font-size: .92rem; color: var(--text-b); line-height: 1.75;
}

/* ── Calculator ────────────────────────────────────────── */
.calc-wrap {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}
.calc-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.calc-step { margin-bottom: 36px; }
.calc-step:last-child { margin-bottom: 0; }
.calc-step__label {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 1rem; font-weight: 700; color: var(--text-h);
  margin-bottom: 16px;
}
.calc-step__num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.calc-radios { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-radio { display: none; }
.calc-radio-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  font-size: .88rem; font-weight: 600; color: var(--text-b);
  cursor: pointer; transition: all var(--transition);
  background: var(--surface);
}
.calc-radio-label:hover { border-color: var(--accent-light); color: var(--accent); }
.calc-radio:checked + .calc-radio-label {
  border-color: var(--accent); background: var(--surface-alt); color: var(--accent);
}
.calc-slider-wrap { padding: 8px 0; }
.calc-slider-display {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.calc-slider-value {
  font-size: 1.6rem; font-weight: 800; color: var(--accent);
}
.calc-slider-unit { font-size: .85rem; color: var(--text-m); }
.calc-slider {
  -webkit-appearance: none; width: 100%; height: 6px;
  background: var(--border); border-radius: 3px; outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: var(--accent);
  cursor: pointer; box-shadow: 0 2px 6px rgba(90,143,194,.4);
  border: 3px solid #fff;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); cursor: pointer;
  border: 3px solid #fff; box-shadow: 0 2px 6px rgba(90,143,194,.4);
}
.calc-slider-labels {
  display: flex; justify-content: space-between;
  font-size: .75rem; color: var(--text-m); margin-top: 4px;
}
.calc-input-wrap { position: relative; }
.calc-input-prefix {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: var(--text-m); font-size: 1rem;
}
.calc-input {
  width: 100%; padding: 14px 14px 14px 32px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1.1rem; font-weight: 700; color: var(--text-h);
  font-family: var(--font); outline: none; transition: border-color var(--transition);
}
.calc-input:focus { border-color: var(--accent); }
.calc-sidebar {}
.calc-result-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: sticky; top: 120px;
}
.calc-result-panel h3 { color: #fff; margin-bottom: 6px; }
.calc-result-panel .subtitle { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 28px; }
.calc-result-row {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.calc-result-row:last-of-type { border-bottom: none; }
.calc-result-label { font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.calc-result-val {
  font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1;
}
.calc-result-val.highlight { color: var(--warm); }
.calc-result-val.good { color: #6FCF97; }
.calc-lead-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 24px; margin-top: 24px;
}
.calc-lead-box p {
  color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 14px;
}
.calc-lead-input {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1);
  color: #fff; font-family: var(--font); font-size: .9rem;
  margin-bottom: 10px; outline: none; transition: border-color var(--transition);
}
.calc-lead-input::placeholder { color: rgba(255,255,255,.4); }
.calc-lead-input:focus { border-color: var(--accent-light); }
.calc-lead-box .btn { width: 100%; justify-content: center; }
.calc-disclaimer { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 12px; text-align: center; }

/* ── Calculator v2 — Checkboxes ────────────────────────── */
.calc-checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
.calc-check-item {
  display: flex; align-items: flex-start; gap: 10px; padding: 11px 14px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color .18s, background .18s; user-select: none;
}
.calc-check-item:hover { border-color: var(--accent); background: rgba(90,143,194,.03); }
.calc-check-item.is-checked { border-color: var(--accent); background: rgba(90,143,194,.06); }
.calc-check-input { position: absolute; opacity: 0; pointer-events: none; }
.calc-check-box {
  width: 20px; height: 20px; min-width: 20px; border: 2px solid var(--border);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: transparent; margin-top: 1px;
  transition: border-color .18s, background .18s, color .18s;
}
.calc-check-item.is-checked .calc-check-box { border-color: var(--accent); background: var(--accent); color: #fff; }
.calc-check-text { font-size: .84rem; color: var(--text-b); font-weight: 500; line-height: 1.35; }
.calc-check-item.is-checked .calc-check-text { color: var(--text-h); font-weight: 600; }
.calc-step__hint { display: block; font-size: .76rem; color: var(--text-m); font-weight: 400; margin-top: 2px; }

/* Type config blocks */
#calc-type-blocks { margin-top: 4px; }
.calc-type-block {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 14px;
}
.calc-type-block__header {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 13px 16px; background: var(--surface); border: none; cursor: pointer; gap: 10px;
  font-family: var(--font);
}
.calc-type-block__header:hover { background: var(--surface-alt); }
.calc-type-block__left { display: flex; align-items: center; gap: 9px; min-width: 0; }
.calc-type-block__icon { font-size: 1rem; flex-shrink: 0; }
.calc-type-block__name { font-size: .88rem; font-weight: 600; color: var(--text-h); text-align: left; }
.calc-type-block__right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.calc-type-block__weekly { font-size: .82rem; color: var(--accent); font-weight: 700; white-space: nowrap; }
.calc-type-block__chevron { font-size: .65rem; color: var(--text-m); transition: transform .2s; display: inline-block; }
.calc-type-block.is-collapsed .calc-type-block__chevron { transform: rotate(-90deg); }
.calc-type-block__body { padding: 22px 18px; border-top: 1px solid var(--border); background: var(--bg); }
.calc-type-block.is-collapsed .calc-type-block__body { display: none; }
.calc-type-step { margin-bottom: 20px; }
.calc-type-step:last-child { margin-bottom: 0; }
.calc-type-step__label {
  font-size: .8rem; font-weight: 600; color: var(--text-h); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.calc-type-step__num {
  width: 20px; height: 20px; min-width: 20px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Spinners */
.calc-spinner-wrap {
  display: inline-flex; align-items: stretch;
  border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.calc-spin-btn {
  width: 38px; border: none; background: var(--surface); cursor: pointer;
  font-size: 1.3rem; font-weight: 700; color: var(--accent); line-height: 1;
  transition: background .15s; flex-shrink: 0; padding: 0; font-family: var(--font);
}
.calc-spin-btn:hover { background: rgba(90,143,194,.12); }
.calc-spin-btn:active { background: rgba(90,143,194,.22); }
.calc-spin-display {
  display: flex; align-items: center; gap: 5px; padding: 9px 12px;
  min-width: 105px; justify-content: center; background: var(--bg);
}
.calc-spin-input {
  border: none; outline: none; font-family: var(--font);
  font-size: 1.15rem; font-weight: 800; color: var(--text-h);
  width: 46px; text-align: center; background: transparent;
  -moz-appearance: textfield;
}
.calc-spin-input::-webkit-inner-spin-button,
.calc-spin-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.calc-spin-unit { font-size: .76rem; color: var(--text-m); white-space: nowrap; }
.calc-input--sm { padding: 11px 11px 11px 30px; font-size: .9rem; }

/* Results breakdown (multi-type) */
#calc-breakdown { margin-bottom: 4px; }
.calc-breakdown-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.calc-breakdown-row:last-child { border-bottom: none; }
.calc-breakdown-label { font-size: .77rem; color: rgba(255,255,255,.65); }
.calc-breakdown-val { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9); }

/* Add-type button in results */
.calc-add-type-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 11px; border: 1.5px dashed rgba(255,255,255,.25);
  border-radius: var(--radius-sm); background: transparent;
  color: rgba(255,255,255,.65); font-size: .84rem; font-weight: 600;
  cursor: pointer; transition: border-color .18s, color .18s;
  margin-bottom: 20px; font-family: var(--font);
}
.calc-add-type-btn:hover { border-color: var(--accent-light); color: #fff; }

/* ── Contact Form ──────────────────────────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--text-h); margin-bottom: 7px;
}
.form-label span { color: var(--warm); }
.form-control {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--text-h);
  background: var(--surface); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(90,143,194,.15); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .85rem; color: var(--text-b); margin-bottom: 20px;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; }
.form-success {
  background: #E8F5EE; border: 1px solid #A3D9B8; border-radius: var(--radius-sm);
  padding: 16px 20px; color: #27754A; font-weight: 600;
  display: none; margin-bottom: 20px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-block {}
.contact-info-block h4 { color: var(--text-h); margin-bottom: 8px; }
.contact-info-block p { font-size: .92rem; color: var(--text-b); }
.contact-info-block a { color: var(--accent); font-weight: 600; }
.contact-badge {
  background: var(--surface-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-badge__icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.2rem;
}
.contact-badge h5 { color: var(--text-h); margin-bottom: 4px; font-size: .9rem; }
.contact-badge p { font-size: .85rem; color: var(--text-b); }

/* ── Contact Page Layout ───────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.contact-form-wrap {}
.contact-sidebar { display: flex; flex-direction: column; gap: 0; }
.form-input {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--text-h);
  background: var(--surface); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(90,143,194,.15); }
.form-select {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--text-h);
  background: var(--surface); outline: none; cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A8FC2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  padding-right: 42px;
}
.form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(90,143,194,.15); }
.form-textarea {
  width: 100%; padding: 13px 16px; min-height: 150px; resize: vertical;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--text-h);
  background: var(--surface); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(90,143,194,.15); }
.form-radio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.form-radio-card {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; font-size: .875rem; color: var(--text-b); font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
}
.form-radio-card:hover { border-color: var(--accent); background: rgba(90,143,194,.04); }
.form-radio-card input[type="radio"] { accent-color: var(--accent); flex-shrink: 0; }
.form-radio-card input[type="radio"]:checked + span { color: var(--text-h); font-weight: 600; }
.form-radio-card:has(input:checked) { border-color: var(--accent); background: rgba(90,143,194,.06); }
.form-check-card {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; font-size: .875rem; color: var(--text-b); font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
}
.form-check-card:hover { border-color: var(--accent); background: rgba(90,143,194,.04); }
.form-check-card input { accent-color: var(--accent); flex-shrink: 0; }
.form-check-card:has(input:checked) { border-color: var(--accent); background: rgba(90,143,194,.06); }

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0; text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-section .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Why Us ────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.why-item__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.why-item h4 { margin-bottom: 6px; font-size: 1rem; }
.why-item p { font-size: .88rem; color: var(--text-b); margin: 0; }

/* ── About ─────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-split p { font-size: .98rem; color: var(--text-b); margin-bottom: 16px; }
.about-highlight {
  border-left: 4px solid var(--accent);
  padding: 20px 24px; background: var(--surface-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.about-highlight p { font-size: 1.05rem; font-weight: 600; color: var(--text-h); margin: 0; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.support-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.support-card__icon { font-size: 2rem; margin-bottom: 14px; }
.support-card h4 { margin-bottom: 10px; font-size: 1.05rem; }
.support-card p { font-size: .9rem; color: var(--text-b); margin: 0; }

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer__brand-name {
  font-size: 1.25rem; font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.footer__brand-name span { color: var(--accent-light); }
.footer__brand-desc {
  font-size: .88rem; color: rgba(255,255,255,.55);
  line-height: 1.7; margin-bottom: 20px;
}
.footer__col h5 {
  color: rgba(255,255,255,.6); font-size: .75rem;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px;
}
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul li a {
  color: rgba(255,255,255,.65); font-size: .88rem;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: #fff; }
.footer__contact-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.65); font-size: .88rem; margin-bottom: 10px;
}
.footer__contact-item a { color: rgba(255,255,255,.65); }
.footer__contact-item a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex;
  align-items: center; justify-content: space-between;
}
.footer__copy { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ── Breadcrumb ────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; margin-bottom: 16px; }
.breadcrumb a { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,.45); }

/* ── Divider ───────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ── Tags / Badges ─────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 4px 14px; border-radius: 999px;
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
}
.tag-accent { background: var(--surface-alt); color: var(--accent); }
.tag-warm   { background: var(--warm-light); color: var(--warm); }
.tag-dark   { background: rgba(255,255,255,.1); color: rgba(255,255,255,.75); }

/* ── Highlight Block ───────────────────────────────────── */
.highlight-box {
  background: var(--surface-alt);
  border-radius: var(--radius); padding: 32px;
  border-left: 5px solid var(--accent);
}
.highlight-box p { margin: 0; font-size: 1rem; color: var(--text-b); }
.highlight-box p strong { color: var(--text-h); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner,
  .hero__inner:has(.oc-video-zone) { grid-template-columns: 1fr; }
  .oc-video-zone { max-width: 100%; aspect-ratio: 16/9; margin-top: 24px; }
  .hero__card { display: none; }
  .stats-bar__grid { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-result-panel { position: static; }
  .calc-checkboxes { grid-template-columns: 1fr; }
  .calc-type-block__name { font-size: .82rem; }
  .calc-spin-display { min-width: 90px; padding: 9px 8px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  .section { padding: 56px 0; }
  .section--lg { padding: 70px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .checklist-2col { grid-template-columns: 1fr; }
  /* Catch any inline 2-col grid so it stacks on mobile */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-radio-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav__links { display: none; flex-direction: column; gap: 12px;
    align-items: stretch;
    /* opens directly below the sticky topbar (~58px) + nav (~65px) = 123px */
    position: fixed; top: 123px; left: 0; right: 0; bottom: 0;
    background: #0a1220; box-shadow: var(--shadow-md); z-index: 10000;
    padding: 20px 18px 32px; overflow-y: auto; }
  .nav__links a {
    display: flex; align-items: center; justify-content: flex-start;
    padding: 20px 22px; font-size: 1.1rem; font-weight: 600;
    background: rgba(77,217,192,.08);
    border: 1px solid rgba(77,217,192,.22);
    border-radius: 14px;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 1px 0 rgba(255,255,255,.02);
    transition: background .15s ease, transform .12s ease;
  }
  .nav__links a:active { background: rgba(77,217,192,.18); transform: scale(.985); }
  .nav__links a.nav-cta {
    background: var(--warm); color: #2a0d11 !important;
    border-color: var(--warm); justify-content: center;
    font-size: 1.15rem; margin-top: 6px;
  }
  .nav.open .nav__links { display: flex; }
  .nav__hamburger { display: flex; }
  .topbar__tagline { display: none; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-section .btn-row { flex-direction: column; align-items: center; }
  .calc-radios { flex-direction: column; }
  .stats-bar__grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 28px 20px; }
}

/* ── Blog Grid (blog.html) ─────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  display: flex; flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent-light); }
.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.blog-card__tag {
  display: inline-block; background: var(--surface-alt); color: var(--accent);
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; padding: 3px 10px; border-radius: 999px;
}
.blog-card__date { font-size: .78rem; color: var(--text-m); }
.blog-card__title { font-size: 1.05rem; font-weight: 700; color: var(--text-h); margin-bottom: 12px; line-height: 1.35; }
.blog-card__title a { color: var(--text-h); }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt { font-size: .88rem; color: var(--text-b); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.blog-card__link { font-size: .88rem; font-weight: 700; color: var(--accent); }
.blog-card__link:hover { color: var(--accent-dark); }

/* ── Blog Post Layout (individual posts) ───────────────── */
.blog-post-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 48px; align-items: start;
}
.blog-post__content {}
.blog-post__content h2 {
  font-size: 1.5rem; color: var(--text-h);
  margin-top: 40px; margin-bottom: 16px;
  padding-top: 8px;
}
.blog-post__content h2:first-of-type { margin-top: 32px; }
.blog-post__content h3 { font-size: 1.15rem; margin-top: 28px; margin-bottom: 12px; }
.blog-post__content p { font-size: .97rem; color: var(--text-b); line-height: 1.8; margin-bottom: 1.1rem; }
.blog-post__content ul, .blog-post__content ol { padding-left: 0; margin-bottom: 1.1rem; }
.blog-post__content ul li, .blog-post__content ol li {
  font-size: .97rem; color: var(--text-b); line-height: 1.75;
  padding: 5px 0 5px 20px; position: relative;
}
.blog-post__content ul li::before { content: '·'; position: absolute; left: 6px; color: var(--accent); font-size: 1.4rem; line-height: 1.35; }
.blog-post__content ol { counter-reset: ol-count; }
.blog-post__content ol li { counter-increment: ol-count; }
.blog-post__content ol li::before { content: counter(ol-count) '.'; font-weight: 700; color: var(--accent); font-size: .88rem; }
.blog-post__content a { color: var(--accent); font-weight: 600; }
.blog-post__content a:hover { color: var(--accent-dark); }
.blog-lead {
  font-size: 1.12rem; color: var(--text-b); line-height: 1.8;
  margin-bottom: 32px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.blog-post__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.blog-post__tags span {
  background: var(--surface-alt); color: var(--text-b);
  font-size: .78rem; font-weight: 600; padding: 5px 14px;
  border-radius: 999px; border: 1px solid var(--border);
}
.blog-post__sidebar { position: sticky; top: 120px; }
.blog-sidebar-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.blog-sidebar-box h4 { margin-bottom: 10px; font-size: 1rem; }
.blog-sidebar-box p { font-size: .88rem; color: var(--text-b); margin-bottom: 14px; }
.blog-sidebar-box .btn { font-size: .85rem; }
.blog-sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.blog-sidebar-links li a {
  display: block; font-size: .88rem; color: var(--accent);
  padding: 6px 0; border-bottom: 1px solid var(--border);
  font-weight: 600; transition: color var(--transition);
}
.blog-sidebar-links li:last-child a { border-bottom: none; }
.blog-sidebar-links li a:hover { color: var(--accent-dark); }

/* ── Trust / Awards Bar ────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-bar__grid {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-bar__item { display: flex; align-items: center; gap: 12px; }
.trust-bar__label { font-size: .88rem; font-weight: 700; color: var(--text-h); line-height: 1.2; }
.trust-bar__sub { font-size: .75rem; color: var(--text-m); margin-top: 2px; }
.trust-bar__divider {
  width: 1px; height: 40px; background: var(--border);
  flex-shrink: 0;
}

/* ── Legal Pages ───────────────────────────────────────── */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-section { margin-bottom: 48px; }
.legal-section h2 {
  font-size: 1.3rem; color: var(--text-h);
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.legal-section p { font-size: .95rem; color: var(--text-b); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { padding-left: 0; margin-bottom: 12px; }
.legal-section ul li {
  font-size: .95rem; color: var(--text-b); line-height: 1.75;
  padding: 4px 0 4px 18px; position: relative;
}
.legal-section ul li::before { content: '·'; position: absolute; left: 5px; color: var(--accent); font-size: 1.3rem; line-height: 1.4; }
.legal-section a { color: var(--accent); }

/* ── Services page tile grid ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 24px;
}
.service-cat-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.service-cat-header h3 { margin: 0; }
.service-cat-header p { margin: 4px 0 0; font-size:.9rem; color:var(--text-b); }
.service-cat-icon {
  width: 44px; height: 44px;
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── Testimonials Carousel ─────────────────────────────── */
.testimonials-carousel { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.testimonials-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.testimonials-slide .testimonial-card:only-child {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testimonials-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.testimonials-dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── Calculator Q1 grid (10 options) ──────────────────── */
.calc-radios--grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.calc-radios--grid .calc-radio-label {
  justify-content: flex-start; width: 100%;
}

/* ── btn-row utility ───────────────────────────────────── */
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Responsive additions ──────────────────────────────── */
@media (max-width: 1024px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-post__sidebar { position: static; }
  .trust-bar__divider { display: none; }
  .testimonials-slide { grid-template-columns: repeat(2,1fr); }
  .testimonials-slide .testimonial-card:only-child { max-width: 100%; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .trust-bar__grid { gap: 20px; justify-content: flex-start; }
  .calc-radios--grid { grid-template-columns: 1fr; }
  .testimonials-slide { grid-template-columns: 1fr; }
}

/* =========================================================
   OC DARK THEME — demo overrides (appended; win by order)
   ========================================================= */
html { background: #000; }            /* jet black */
body { background: transparent; }

/* Subtle glow sits BEHIND the canvas (negative z-index) so dots stay visible */
.oc-bg-gradient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(130% 95% at 78% 6%, rgba(18,42,58,.5) 0%, rgba(4,10,16,.35) 45%, #000 80%);
}
/* Animated dot canvas: pinned (fixed) above the glow, below content */
#oc-bg-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}
/* Lift all real content above the canvas */
.topbar, .nav, main, section, footer, .footer, .hero, .stats-bar,
.trust-bar, .cta-section { position: relative; z-index: 1; }
/* Lift topbar + nav above sibling sections so their click area isn't stolen
   by .hero (which follows them in DOM order at the same z-index, causing
   the bottom portion of nav links to be covered on desktop). */
.topbar { z-index: 10; }
.nav { z-index: 11; }

/* Display font for headings + logo + hero */
h1, h2, h3, .nav__logo, .footer__brand-name, .hero__title,
.section-header h2, .pricing-card__price .amount {
  font-family: var(--font-display); font-weight: 400; letter-spacing: .01em;
}
.hero__title, h1 { font-weight: 300; }

/* Glassy surfaces */
.card, .role-card, .pricing-card, .testimonial-card, .blog-card,
.faq-item, .why-item, .support-card, .contact-badge, .calc-form,
.blog-sidebar-box, .service-cat-icon, .card__icon {
  backdrop-filter: blur(6px);
}

/* Hero: transparent so the canvas shows (kill light gradient + blue pattern) */
.hero { background: transparent; }
.hero::before { opacity: .35; }
.section-white { background: transparent; }
.section-alt { background: rgba(255,255,255,.025); }

/* Dark sections become translucent panes over the canvas */
.section-dark, .section-darker, .stats-bar, .cta-section,
.calc-result-panel, .portfolio-card__header {
  backdrop-filter: blur(4px);
}
.cta-section { background: linear-gradient(135deg, rgba(5,9,14,.78), rgba(10,16,24,.62)); }

/* Nav / topbar translucent dark */
.nav { background: rgba(7,12,20,.72); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.topbar { background: rgba(3,6,10,.85); backdrop-filter: blur(8px); }
.nav__hamburger span { background: #fff; }
@media (max-width: 1024px){
  /* Kill backdrop-filter on nav at mobile — it creates a containing block
     that breaks position:fixed for the mobile menu overlay.
     Also bump z-index above .hero (which is z:1 from a global lift rule). */
  .nav { backdrop-filter: none; background: #0a1220; z-index: 1100; }
  /* On mobile: kill the topbar entirely. The WorkToDone logo (in .nav)
     becomes the TOP layer — no secondary band above it. */
  .topbar { display: none; }
  .nav { position: sticky; top: 0; }
  /* Mobile menu opens directly below the nav (no topbar above it). */
  .nav__links { top: 65px; }
}
@media (max-width: 768px){
  .nav__links { background: #0a1220; }
}

/* Inputs readable on dark */
.form-control, .form-input, .form-select, .form-textarea, .calc-input, .calc-spin-display, .calc-spin-input {
  background: rgba(255,255,255,.06); color: #fff;
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234DD9C0' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; background-size:18px; }
.form-success { background: rgba(77,217,192,.12); border-color: rgba(77,217,192,.4); color: var(--accent-light); }

/* Teal accents on quote marks etc. */
.testimonial-card::before { color: var(--accent); opacity:.5; }

/* =========================================================
   1. LOGO INTRO overlay (home only — body.oc-home)
   ========================================================= */
.oc-intro {
  position: fixed; z-index: 60; white-space: nowrap; pointer-events: none;
  font-family: var(--font-display); font-weight: 300; color: rgba(255,255,255,.95);
  letter-spacing: .12em; font-size: clamp(1.8rem,6vw,4rem);
  top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0;
  transition: opacity .9s ease;
}
.oc-intro .dot { color: var(--accent); }
.oc-intro.is-in { opacity: 1; }
.oc-intro.is-settled {
  top: 1.4rem; left: 1.9rem; transform: translate(0,0);
  font-size: clamp(1.1rem,2vw,1.35rem); letter-spacing: .04em;
  transition: top 1.4s cubic-bezier(.4,0,.2,1), left 1.4s cubic-bezier(.4,0,.2,1),
              transform 1.4s cubic-bezier(.4,0,.2,1), font-size 1.4s cubic-bezier(.4,0,.2,1),
              letter-spacing 1.4s cubic-bezier(.4,0,.2,1);
}
/* While intro runs on home, hide nav + fade hero in after */
body.oc-home.oc-intro-running .topbar,
body.oc-home.oc-intro-running .nav { opacity: 0; transition: opacity .6s ease; }
body.oc-home .hero__inner { opacity: 0; transition: opacity 1.2s ease; }
body.oc-home.oc-intro-done .hero__inner { opacity: 1; }

/* =========================================================
   3. Masked looping hero video (home hero right column)
   ========================================================= */
.oc-video-zone { position: relative; width: 100%; aspect-ratio: 4/3; }
/* Enlarge the home hero video column by 20% (420px → 504px) */
@media (min-width: 1025px) {
  .hero__inner:has(.oc-video-zone) { grid-template-columns: 1fr 504px; }
}
.oc-video-mask {
  position: absolute; inset: 0; overflow: hidden; border-radius: 6px;
  clip-path: polygon(10% 0,100% 0,90% 100%,0 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.oc-video-mask video { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(1.05) brightness(.92); }
.oc-video-frame { position: absolute; inset: 0; pointer-events: none;
  clip-path: polygon(10% 0,100% 0,90% 100%,0 100%); box-shadow: inset 0 0 0 1px rgba(77,217,192,.45); }
.oc-video-scan { position: absolute; inset: 0; pointer-events: none;
  clip-path: polygon(10% 0,100% 0,90% 100%,0 100%);
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.10) 0 1px, transparent 1px 3px); mix-blend-mode: overlay; }
.oc-corner { position: absolute; width: 26px; height: 26px; border: 2px solid var(--accent); }
.oc-corner.tl { top: -3px; left: 8%; border-right: 0; border-bottom: 0; }
.oc-corner.br { bottom: -3px; right: 8%; border-left: 0; border-top: 0; }

@media (prefers-reduced-motion: reduce){
  #oc-bg-canvas { display: none; }
  .oc-intro { transition: none; }
}

/* ── Outlined icon set (svgrepo Outlined style) sizing/colors ── */
.why-item__icon, .support-card__icon { color: var(--accent); display:inline-flex; }
.why-item__icon svg { width: 26px; height: 26px; }
.support-card__icon svg { width: 30px; height: 30px; }
.calc-type-block__icon { color: var(--accent); display:inline-flex; }
.calc-type-block__icon svg { width: 18px; height: 18px; }
/* contact-badge icon sits on a teal fill → use dark stroke for contrast */
.contact-badge__icon { color: #062b27; }
.contact-badge__icon svg { width: 22px; height: 22px; }
/* inline icon before form-card labels */
.form-radio-card .ficon, .form-check-card .ficon { color: var(--accent); display:inline-flex; align-items:center; flex-shrink:0; }
.form-radio-card .ficon svg, .form-check-card .ficon svg { width: 17px; height: 17px; vertical-align: middle; }

/* ── Mobile refinements for OC demo additions ── */
html, body { overflow-x: hidden; }
@media (max-width: 1024px) {
  .oc-video-zone { width: 100%; max-width: 552px; margin: 8px auto 0; }
}
@media (max-width: 768px) {
  /* Intro: keep settled logo from colliding with sticky topbar */
  .oc-intro.is-settled { top: .8rem; left: 1.1rem; font-size: clamp(1rem,5vw,1.2rem); }
  /* Video a touch shorter on phones */
  .oc-video-zone { aspect-ratio: 16/11; max-width: 100%; }
  .oc-corner { width: 20px; height: 20px; }
  /* Form project-type grid already 1-col via .form-radio-grid rule; keep icons aligned */
  .form-radio-card, .form-check-card { align-items: center; }
}
@media (max-width: 480px) {
  .oc-video-zone { aspect-ratio: 16/12; }
}

/* ── Coral accent: dark text for contrast + override hardcoded orange hovers ── */
.btn-warm { background: var(--warm); color: #2a0d11; border-color: var(--warm); }
.btn-warm:hover { background: #ff95a0; border-color: #ff95a0; color: #2a0d11; }
.topbar__cta { background: var(--warm); color: #2a0d11; }
.topbar__cta:hover { background: #ff95a0; color: #2a0d11; }
.pricing-card__badge--warm { color: #2a0d11; }

/* ── Unified icon rendering (Pass A/B/C) ── */
.oc-ic { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.oc-ic svg { width: 1em; height: 1em; display: block; }
/* standalone icon tiles → teal */
.oc-ic-host { color: var(--accent); }
/* but icons sitting on the teal badge fill stay dark for contrast */
.contact-badge__icon.oc-ic-host { color: #062b27; }
/* inline icons preceding text */
.oc-ic-inline { color: var(--accent); vertical-align: -0.16em; margin-right: .3em; }
.oc-ic-inline svg { width: 1.05em; height: 1.05em; }

/* Logo intro clone (animates real nav logo from center to navbar) */
.oc-logo-clone { display: inline-block; }
