/* =================================================================
   DIGITAL METEORS - DESIGN SYSTEM
   Phase 3 homepage build. Cascades to every subsequent page.
   ================================================================= */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand colors */
  --clr-primary: #000000;
  --clr-accent: #fac63c;
  --clr-accent-2: #e16e80;
  --clr-accent-soft: #ffeb95;
  --clr-bg-cream: #f4efdf;
  --clr-bg-pink-soft: #ebafb2;
  --clr-text-dark: #000000;
  --clr-text-muted: #4f430c;
  --clr-text-light: #f4efdf;

  /* Functional colors */
  --clr-border-dark: rgba(0, 0, 0, 0.12);
  --clr-border-light: rgba(244, 239, 223, 0.18);
  --clr-overlay-dark: rgba(0, 0, 0, 0.65);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --header-height: 80px;
  --trust-bar-height: 40px;

  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --transition-base: 200ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text-dark);
  background: var(--clr-bg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: inherit;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.125rem; font-weight: 600; }

p {
  margin: 0 0 var(--space-sm);
}

.lede {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

strong {
  font-weight: 600;
}

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

.section {
  padding: var(--space-2xl) 0;
}

.section--cream {
  background: var(--clr-bg-cream);
}

.section--dark {
  background: var(--clr-primary);
  color: var(--clr-text-light);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--clr-text-light);
}

.section__header {
  max-width: 760px;
  margin-bottom: var(--space-xl);
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__lede {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
  line-height: 1.55;
}

.section__lede--light {
  color: rgba(244, 239, 223, 0.75);
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.badge--accent {
  background: var(--clr-accent);
  color: var(--clr-text-dark);
}

.badge--pink {
  background: var(--clr-accent-2);
  color: var(--clr-text-light);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform var(--transition-base), background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-text-dark);
  border-color: var(--clr-accent);
}

.btn--primary:hover {
  background: var(--clr-accent-soft);
  border-color: var(--clr-accent-soft);
}

.btn--outline-light {
  background: transparent;
  color: var(--clr-text-light);
  border-color: var(--clr-text-light);
}

.btn--outline-light:hover {
  background: var(--clr-text-light);
  color: var(--clr-text-dark);
}

.btn--outline-dark {
  background: transparent;
  color: var(--clr-text-dark);
  border-color: var(--clr-text-dark);
}

.btn--outline-dark:hover {
  background: var(--clr-text-dark);
  color: var(--clr-text-light);
}

.btn--lg {
  padding: 1.0625rem 1.875rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.625rem 1.125rem;
  font-size: 0.875rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 3px solid var(--clr-accent);
  outline-offset: 2px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--clr-bg-cream);
  border-bottom: 1px solid var(--clr-border-dark);
  font-size: 0.8125rem;
  color: var(--clr-text-muted);
  height: var(--trust-bar-height);
  display: flex;
  align-items: center;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.trust-bar__location,
.trust-bar__contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.trust-bar__contact a {
  color: var(--clr-text-dark);
  font-weight: 500;
}

.trust-bar__contact a:hover {
  color: var(--clr-accent-2);
}

.trust-bar__divider {
  color: var(--clr-border-dark);
}

/* ===== SITE HEADER ===== */
.site-header {
  background: var(--clr-primary);
  color: var(--clr-text-light);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  transition: box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 50px;
  width: auto;
  display: block;
}

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header__nav a {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-text-light);
  padding: 0.5rem 0;
  position: relative;
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-base);
}

.site-header__nav a:hover::after,
.site-header__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header__nav a:hover {
  color: var(--clr-accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header__phone {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--clr-text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-header__phone:hover {
  color: var(--clr-accent);
}

.site-header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.site-header__hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--clr-text-light);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ===== MOBILE DRAWER ===== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms ease;
}

.drawer.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding: 5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 300ms ease;
  overflow-y: auto;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--clr-text-light);
  background: none;
  border: none;
}

.drawer__close:hover {
  color: var(--clr-accent);
}

.drawer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: var(--space-lg);
}

.drawer__nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 0;
  color: var(--clr-text-light);
  border-bottom: 1px solid var(--clr-border-light);
}

.drawer__nav a:hover {
  color: var(--clr-accent);
}

.drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
}

.drawer__contact {
  font-size: 0.875rem;
  color: rgba(244, 239, 223, 0.75);
  line-height: 1.6;
}

.drawer__contact a {
  color: var(--clr-accent);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  background: var(--clr-primary);
  color: var(--clr-text-light);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 100%),
    url('../images/hero/hero-home.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Subtle starfield overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 235, 149, 0.6), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(244, 239, 223, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 80% 60%, rgba(250, 198, 60, 0.5), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(244, 239, 223, 0.4), transparent),
    radial-gradient(2px 2px at 90% 90%, rgba(225, 110, 128, 0.5), transparent),
    radial-gradient(1px 1px at 10% 60%, rgba(244, 239, 223, 0.5), transparent);
  background-size: 300px 300px;
  opacity: 0.8;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
}

.hero__title {
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
  max-width: 18ch;
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(244, 239, 223, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 60ch;
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-lg);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: 0.875rem;
  color: rgba(244, 239, 223, 0.7);
}

.hero__trust li {
  display: flex;
  align-items: center;
}

.hero__trust li::before {
  content: '✓';
  color: var(--clr-accent);
  margin-right: 0.5rem;
  font-weight: 700;
}

/* ===== INTRO SECTION ===== */
.intro-section__inner {
  max-width: 880px;
}

.intro-section__title {
  margin-bottom: var(--space-md);
}

.intro-section__lede {
  font-size: 1.1875rem;
  color: var(--clr-text-dark);
  line-height: 1.6;
}

/* ===== VOICE AI FEATURE ===== */
.feature-voice-ai {
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding: var(--space-3xl) 0;
}

.feature-voice-ai__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.feature-voice-ai__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-voice-ai__content h2 {
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}

.feature-voice-ai__content .lede {
  color: rgba(244, 239, 223, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.feature-list {
  margin-bottom: var(--space-lg);
}

.feature-list li {
  position: relative;
  padding: 0.875rem 0 0.875rem 1.5rem;
  border-bottom: 1px solid var(--clr-border-light);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(244, 239, 223, 0.9);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.375rem;
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 50%;
}

.feature-list strong {
  color: var(--clr-accent);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  font-family: var(--font-display);
}

/* ===== SERVICES GRID ===== */
.services-grid-section {
  padding: var(--space-3xl) 0;
}

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

.service-card {
  background: var(--clr-bg-cream);
  color: var(--clr-text-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--clr-primary);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: var(--space-xs);
}

.service-card p {
  flex: 1;
  color: var(--clr-text-muted);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

.card-link {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clr-accent-2);
  align-self: flex-start;
}

.card-link:hover {
  color: var(--clr-text-dark);
}

/* ===== WHY US ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border-dark);
  text-align: center;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.why-card:hover {
  transform: translateY(-2px);
  border-color: var(--clr-accent);
}

.why-card__icon {
  font-size: 2.25rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ===== INDUSTRIES ===== */
.industries-section {
  background: var(--clr-bg-cream);
}

.industries-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
}

.industries-list li {
  padding: 1.5rem;
  border-left: 4px solid var(--clr-accent);
  background: #fff;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.industries-list h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-text-dark);
}

.industries-list p {
  color: var(--clr-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ===== FAQ ===== */
.faq-section__inner {
  max-width: 880px;
  margin: 0 auto;
}

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

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border-dark);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: var(--clr-accent);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: left;
  color: var(--clr-text-dark);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: transform var(--transition-base);
}

.faq-item__icon::before {
  width: 14px;
  height: 3px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 3px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.faq-item.is-open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(250, 198, 60, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(225, 110, 128, 0.12), transparent 50%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta h2 {
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}

.final-cta p {
  font-size: 1.125rem;
  color: rgba(244, 239, 223, 0.85);
  margin-bottom: var(--space-lg);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: var(--clr-primary);
  color: var(--clr-text-light);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--clr-border-light);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: var(--space-2xl);
}

.site-footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer__col a {
  color: rgba(244, 239, 223, 0.75);
  font-size: 0.9375rem;
}

.site-footer__col a:hover {
  color: var(--clr-accent);
}

.site-footer__brand p {
  color: rgba(244, 239, 223, 0.75);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 32ch;
}

.site-footer__logo {
  width: 130px;
  height: auto;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
}

.site-footer__social a {
  display: inline-block;
  padding: 0.4rem 0.875rem;
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
}

.site-footer__social a:hover {
  background: var(--clr-accent);
  color: var(--clr-text-dark);
  border-color: var(--clr-accent);
}

.site-footer__contact address {
  font-style: normal;
  color: rgba(244, 239, 223, 0.75);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.site-footer__contact a {
  color: var(--clr-text-light);
}

.site-footer__contact a:hover {
  color: var(--clr-accent);
}

.site-footer__bottom {
  border-top: 1px solid var(--clr-border-light);
  padding: 1.5rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: rgba(244, 239, 223, 0.6);
}

.site-footer__legal {
  display: flex;
  gap: 1.5rem;
}

.site-footer__legal a {
  color: rgba(244, 239, 223, 0.6);
}

.site-footer__legal a:hover {
  color: var(--clr-accent);
}

/* ===== STICKY DESKTOP SIDE CTA ===== */
.sticky-side-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  background: var(--clr-accent);
  color: var(--clr-text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  padding: 1.25rem 0.875rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: transform var(--transition-base), background var(--transition-base);
  text-decoration: none;
}

.sticky-side-cta:hover {
  background: var(--clr-accent-soft);
  transform: translateY(-50%) translateX(-4px);
}

/* ===== STICKY MOBILE BOTTOM BAR ===== */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-primary);
  border-top: 1px solid var(--clr-border-light);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 80;
}

.sticky-mobile-bar__phone,
.sticky-mobile-bar__cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.sticky-mobile-bar__phone {
  color: var(--clr-text-light);
  border-right: 1px solid var(--clr-border-light);
}

.sticky-mobile-bar__cta {
  background: var(--clr-accent);
  color: var(--clr-text-dark);
}

/* ===== POPUP FORM ===== */
.popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 300ms, opacity 300ms ease;
}

.popup.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.popup__panel {
  position: relative;
  background: var(--clr-bg-cream);
  width: min(560px, 92vw);
  max-height: 92vh;
  overflow-y: auto;
  margin: 4vh auto;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 300ms ease;
}

.popup.is-open .popup__panel {
  transform: translateY(0);
}

.popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  line-height: 1;
  color: var(--clr-text-dark);
  background: none;
  border: none;
}

.popup__close:hover {
  color: var(--clr-accent-2);
}

.popup__panel h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-xs);
}

.popup__panel > p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
}

.popup-form__field {
  margin-bottom: 1rem;
}

.popup-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 0.375rem;
  color: var(--clr-text-dark);
}

.popup-form__field input,
.popup-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.9375rem;
  transition: border-color var(--transition-base);
}

.popup-form__field input:focus,
.popup-form__field textarea:focus {
  border-color: var(--clr-accent);
  outline: none;
}

.popup-form__field textarea {
  resize: vertical;
  min-height: 90px;
}

.popup-form__consent {
  margin: 1.25rem 0;
  padding: 1rem;
  background: rgba(250, 198, 60, 0.08);
  border: 1px solid rgba(250, 198, 60, 0.3);
  border-radius: var(--radius-sm);
}

.consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--clr-text-muted);
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--clr-accent);
  cursor: pointer;
}

.consent-label a {
  color: var(--clr-text-dark);
  text-decoration: underline;
  text-decoration-color: var(--clr-accent);
}

.popup-form__note {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-align: center;
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .feature-voice-ai__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .feature-voice-ai__media {
    order: -1;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {

  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    --header-height: 70px;
  }

  /* Trust bar */
  .trust-bar {
    height: auto;
    padding: 0.5rem 0;
  }

  .trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  /* Header - collapse nav and actions */
  .site-header__nav,
  .site-header__actions {
    display: none;
  }

  .site-header__hamburger {
    display: flex;
  }

  .site-header__logo img {
    height: 42px;
  }

  /* Hero */
  .hero {
    min-height: 540px;
    padding: var(--space-xl) 0;
  }

  .hero__title {
    max-width: none;
  }

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

  .hero__ctas .btn {
    width: 100%;
  }

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

  /* Why us */
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  /* Industries */
  .industries-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Footer */
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  /* Hide desktop sticky side CTA, show mobile bottom bar */
  .sticky-side-cta {
    display: none;
  }

  .sticky-mobile-bar {
    display: flex;
  }

  /* Add padding to body so sticky mobile bar doesn't cover content */
  body {
    padding-bottom: 60px;
  }

  /* FAQ */
  .faq-item__question {
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }

  .faq-item__answer p {
    padding: 0 1.25rem 1.25rem;
  }

  /* Final CTA */
  .final-cta__actions {
    flex-direction: column;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  /* Popup */
  .popup__panel {
    padding: 2.25rem 1.25rem 1.5rem;
    margin: 2vh auto;
    max-height: 96vh;
  }
}
/* =================================================================
   PHASE 4 ADDITIONS - VOICE AI AGENT PAGE
   APPEND THIS TO THE END OF css/style.css
   These styles support the Voice AI Agent page components.
   ================================================================= */

/* ===== PAGE HERO (smaller variant for inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  background: var(--clr-primary);
  color: var(--clr-text-light);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 25% 35%, rgba(255, 235, 149, 0.5), transparent),
    radial-gradient(1px 1px at 70% 25%, rgba(244, 239, 223, 0.4), transparent),
    radial-gradient(2px 2px at 85% 65%, rgba(250, 198, 60, 0.45), transparent),
    radial-gradient(1px 1px at 15% 75%, rgba(244, 239, 223, 0.4), transparent);
  background-size: 280px 280px;
  opacity: 0.7;
}

.page-hero--voice-ai .page-hero__bg {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 100%),
    url('../images/hero/hero-voice-ai.jpg');
}

.page-hero--about .page-hero__bg {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 100%),
    url('../images/hero/hero-about.jpg');
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.page-hero__content h1 {
  color: var(--clr-text-light);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: rgba(244, 239, 223, 0.85);
  margin-bottom: var(--space-lg);
  max-width: 64ch;
  line-height: 1.6;
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== STEPS GRID (HOW IT WORKS) ===== */
.how-it-works {
  padding: var(--space-3xl) 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  padding: 2rem 1.75rem;
  background: rgba(244, 239, 223, 0.05);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent);
}

.step-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.step-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-xs);
  color: var(--clr-text-light);
}

.step-card p {
  font-size: 0.9rem;
  color: rgba(244, 239, 223, 0.75);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ===== FEATURES GRID (3-column for Voice AI page) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.75rem 1.5rem;
  background: var(--clr-bg-cream);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ===== SMS SAMPLES (PHONE-MESSAGE STYLE) ===== */
.sms-samples-section {
  padding-bottom: var(--space-2xl);
}

.sms-samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
}

.sms-bubble {
  background: #fff;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.sms-bubble::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-accent-2) 100%);
}

.sms-bubble__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--clr-border-dark);
  font-family: var(--font-display);
}

.sms-bubble__from {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--clr-text-dark);
}

.sms-bubble__time {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.sms-bubble__body {
  padding: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--clr-text-dark);
  flex: 1;
}

.sms-bubble__body p {
  margin-bottom: 0.625rem;
}

.sms-bubble__body p:last-child {
  margin-bottom: 0;
}

.sms-bubble__body strong {
  color: var(--clr-text-dark);
  font-family: var(--font-display);
}

.sms-bubble__opt-out {
  margin-top: 1rem !important;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--clr-border-dark);
  font-size: 0.75rem !important;
  color: var(--clr-text-muted);
  font-style: italic;
}

.sms-samples-footnote {
  padding: 1.5rem 1.75rem;
  background: rgba(250, 198, 60, 0.08);
  border: 1px solid rgba(250, 198, 60, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.sms-samples-footnote strong {
  color: var(--clr-text-dark);
  font-family: var(--font-display);
}

.sms-samples-footnote p {
  margin-bottom: 0;
}

/* ===== CONSENT STEPS (ONBOARDING PROCESS) ===== */
.consent-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: var(--space-xl);
  list-style: none;
  padding: 0;
}

.consent-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base);
}

.consent-steps li:hover {
  border-color: var(--clr-accent-2);
}

.consent-steps__num {
  width: 48px;
  height: 48px;
  background: var(--clr-accent-2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consent-steps__body h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.consent-steps__body p {
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.consent-section__note {
  padding: 1.5rem 1.75rem;
  background: var(--clr-bg-cream);
  border-left: 4px solid var(--clr-accent-2);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.consent-section__note p {
  margin-bottom: 0;
}

.consent-section__note a {
  color: var(--clr-text-dark);
  text-decoration: underline;
  text-decoration-color: var(--clr-accent);
}

.consent-section__note a:hover {
  color: var(--clr-accent-2);
}

/* =================================================================
   RESPONSIVE OVERRIDES FOR PHASE 4 COMPONENTS
   ================================================================= */

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .page-hero {
    min-height: 380px;
    padding: var(--space-xl) 0;
  }

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

  .page-hero__ctas .btn {
    width: 100%;
  }

  .steps-grid,
  .features-grid,
  .sms-samples-grid {
    grid-template-columns: 1fr;
  }

  .consent-steps li {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .consent-steps__num {
    width: 40px;
    height: 40px;
    font-size: 1.0625rem;
  }
}
/* =================================================================
   PHASE 5 ADDITIONS - LEGAL PAGES (PRIVACY POLICY + TERMS OF SERVICE)
   APPEND THIS TO THE END OF css/style.css (AFTER PHASE 4 ADDITIONS)
   ================================================================= */

/* ===== LEGAL HEADER (simpler than page hero) ===== */
.legal-header {
  background: var(--clr-bg-cream);
  border-bottom: 1px solid var(--clr-border-dark);
  padding: var(--space-xl) 0 var(--space-lg);
}

.legal-header__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-accent-2);
  margin-bottom: var(--space-xs);
}

.legal-header h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: var(--space-xs);
}

.legal-header__meta {
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* ===== LEGAL CONTENT TYPOGRAPHY ===== */
.legal-content {
  background: #fff;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text-dark);
}

.legal-content__inner > p {
  margin-bottom: 1.25rem;
  color: var(--clr-text-dark);
}

.legal-content__inner h2 {
  font-size: 1.625rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--clr-accent);
  scroll-margin-top: 120px;
}

.legal-content__inner h3 {
  font-size: 1.1875rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--clr-text-dark);
}

.legal-content__inner ul,
.legal-content__inner ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.legal-content__inner ul {
  list-style: disc;
}

.legal-content__inner ol {
  list-style: decimal;
}

.legal-content__inner li {
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.legal-content__inner strong {
  color: var(--clr-text-dark);
  font-weight: 600;
}

.legal-content__inner a {
  color: var(--clr-text-dark);
  text-decoration: underline;
  text-decoration-color: var(--clr-accent);
  text-underline-offset: 2px;
}

.legal-content__inner a:hover {
  color: var(--clr-accent-2);
}

/* Table of Contents */
.toc {
  background: var(--clr-bg-cream);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2rem 0 3rem;
}

.toc h2 {
  font-size: 1.125rem !important;
  margin: 0 0 1rem !important;
  padding: 0 !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
}

.toc ol {
  margin: 0 0 0 1.25rem !important;
  columns: 2;
  column-gap: 2rem;
}

.toc li {
  margin-bottom: 0.4rem !important;
  break-inside: avoid;
  font-size: 0.9375rem;
}

.toc a {
  text-decoration: none !important;
  color: var(--clr-text-dark);
}

.toc a:hover {
  color: var(--clr-accent-2);
  text-decoration: underline !important;
}

/* Address block in legal contact section */
.legal-address {
  font-style: normal;
  background: var(--clr-bg-cream);
  border-left: 4px solid var(--clr-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 0;
}

.legal-address p {
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.legal-address p:last-child {
  margin-bottom: 0;
}

/* ===== RESPONSIVE FOR LEGAL PAGES ===== */
@media (max-width: 768px) {
  .legal-header {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .legal-content {
    padding-top: var(--space-lg);
  }

  .legal-content__inner h2 {
    font-size: 1.375rem;
    margin-top: 2.25rem;
  }

  .legal-content__inner h3 {
    font-size: 1.0625rem;
  }

  .toc {
    padding: 1.25rem 1.25rem;
    margin: 1.5rem 0 2rem;
  }

  .toc ol {
    columns: 1;
  }
}
/* =================================================================
   PHASE 6 ADDITIONS - ABOUT, CONTACT, THANK YOU PAGES
   APPEND TO css/style.css (AFTER PHASE 5 ADDITIONS)
   ================================================================= */

/* ===== CONTACT PAGE HERO VARIANT ===== */
.page-hero--contact .page-hero__bg {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 100%),
    url('../images/contact/contact-toronto.jpg');
}

/* ===== CO-FOUNDERS / FOUNDER CARDS ===== */
.co-founders-section {
  padding: var(--space-3xl) 0;
}

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

.founder-card {
  background: var(--clr-bg-cream);
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.founder-card:hover {
  border-color: var(--clr-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.founder-card__header {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-border-dark);
}

.founder-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.founder-card__avatar--accent {
  background: var(--clr-accent);
  color: var(--clr-text-dark);
}

.founder-card__avatar--pink {
  background: var(--clr-accent-2);
  color: #fff;
}

.founder-card__header h3 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.founder-card__role {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  margin-bottom: 0;
  font-weight: 500;
}

.founder-card__body p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--clr-text-dark);
  margin-bottom: 1rem;
}

.founder-card__body p:last-child {
  margin-bottom: 0;
}

.founder-card__based {
  font-size: 0.8125rem !important;
  color: var(--clr-text-muted) !important;
  font-style: italic;
  margin-top: 1rem !important;
}

/* ===== WHY-CARD DARK VARIANT (used in About values section) ===== */
.why-card--dark {
  background: rgba(244, 239, 223, 0.05);
  border-color: var(--clr-border-light);
  text-align: left;
}

.why-card--dark h3 {
  color: var(--clr-text-light);
}

.why-card--dark p {
  color: rgba(244, 239, 223, 0.75);
}

.why-card--dark:hover {
  border-color: var(--clr-accent);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: var(--space-2xl) 0 var(--space-xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.contact-info__block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-border-dark);
}

.contact-info__heading {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.contact-info__lede {
  color: var(--clr-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-info__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--clr-accent);
  color: var(--clr-text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info__body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.contact-info__body p {
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--clr-text-dark);
}

.contact-info__body a {
  color: var(--clr-text-dark);
  text-decoration: underline;
  text-decoration-color: var(--clr-accent);
}

.contact-info__body a:hover {
  color: var(--clr-accent-2);
}

.contact-info__note {
  font-size: 0.8125rem !important;
  color: var(--clr-text-muted) !important;
  margin-top: 0.25rem !important;
  margin-bottom: 0 !important;
}

/* Contact form card */
.contact-form-wrap {
  position: relative;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
  font-size: 1.625rem;
  margin-bottom: 0.5rem;
}

.contact-form-card__lede {
  color: var(--clr-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

/* Add select styling to match input styles */
.popup-form__field select {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.9375rem;
  transition: border-color var(--transition-base);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234f430c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.popup-form__field select:focus {
  border-color: var(--clr-accent);
  outline: none;
}

/* ===== MAP SECTION (full-width below contact) ===== */
.map-section {
  width: 100%;
  background: var(--clr-bg-cream);
  border-top: 1px solid var(--clr-border-dark);
  border-bottom: 1px solid var(--clr-border-dark);
}

.map-section iframe {
  display: block;
  width: 100%;
  filter: grayscale(0.15);
}

/* ===== THANK YOU PAGE ===== */
.thank-you-section {
  background: var(--clr-bg-cream);
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 0;
}

.thank-you-section__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-checkmark {
  width: 96px;
  height: 96px;
  background: var(--clr-accent);
  color: var(--clr-text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 8px 32px rgba(250, 198, 60, 0.4);
}

.thank-you-section h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-sm);
}

.thank-you-section__lede {
  font-size: 1.1875rem;
  color: var(--clr-text-dark);
  margin-bottom: var(--space-md);
  line-height: 1.55;
}

.thank-you-section p {
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.thank-you-section__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-lg);
}

/* ===== RESPONSIVE FOR PHASE 6 COMPONENTS ===== */
@media (max-width: 1024px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 768px) {
  .co-founders-section {
    padding: var(--space-2xl) 0;
  }

  .founder-card {
    padding: 1.5rem;
  }

  .founder-card__header {
    grid-template-columns: 56px 1fr;
    gap: 1rem;
  }

  .founder-card__avatar {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
  }

  .contact-form-card {
    padding: 1.5rem;
  }

  .map-section iframe {
    height: 320px;
  }

  .thank-you-checkmark {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }

  .thank-you-section__ctas {
    flex-direction: column;
  }

  .thank-you-section__ctas .btn {
    width: 100%;
  }
}
/* =================================================================
   PHASE 7 ADDITIONS - SERVICES PAGE
   APPEND TO css/style.css (AFTER PHASE 6 ADDITIONS)
   ================================================================= */

/* ===== SERVICES PAGE HERO VARIANT ===== */
.page-hero--services .page-hero__bg {
  background-image:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 100%),
    url('../images/hero/hero-home.jpg');
}

/* ===== IN-PAGE SERVICES NAV (STICKY) ===== */
.services-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 70;
  background: var(--clr-bg-cream);
  border-bottom: 1px solid var(--clr-border-dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.services-nav .container {
  display: flex;
  align-items: center;
}

.services-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.services-nav a {
  display: inline-block;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.services-nav a:hover {
  color: var(--clr-text-dark);
}

.services-nav a.is-active {
  color: var(--clr-text-dark);
  border-bottom-color: var(--clr-accent);
  font-weight: 600;
}

/* ===== SERVICE SECTIONS ===== */
.service-section {
  padding: var(--space-3xl) 0;
  background: #fff;
  scroll-margin-top: 145px;
}

.service-section--cream {
  background: var(--clr-bg-cream);
}

.service-section__header {
  max-width: 800px;
  margin-bottom: var(--space-xl);
}

.service-section__lede {
  font-size: 1.1875rem;
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
  margin-bottom: 0;
  line-height: 1.55;
}

/* ===== SERVICE DETAIL LAYOUT (main + sidebar) ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail__main h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text-dark);
}

.service-detail__main h3:first-child {
  margin-top: 0;
}

.service-detail__main p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--clr-text-dark);
  margin-bottom: 1rem;
}

.service-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 165px;
}

/* ===== CHECKLIST ===== */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.checklist li {
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--clr-text-dark);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: var(--clr-accent);
  color: var(--clr-text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===== TAG LIST (platforms / tools) ===== */
.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  padding: 0.375rem 0.75rem;
  background: #fff;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: var(--font-display);
  color: var(--clr-text-dark);
  line-height: 1.4;
}

.service-section--cream .tag-list li {
  background: #fff;
}

/* ===== SIDEBAR CARDS ===== */
.sidebar-card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--clr-border-dark);
  border-radius: var(--radius-lg);
}

.service-section--cream .sidebar-card {
  background: #fff;
}

.sidebar-card h4 {
  font-size: 0.875rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.sidebar-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--clr-text-dark);
  margin-bottom: 1rem;
}

.sidebar-card--accent {
  background: var(--clr-primary);
  color: var(--clr-text-light);
  border-color: var(--clr-primary);
}

.service-section--cream .sidebar-card--accent {
  background: var(--clr-primary);
}

.sidebar-card--accent h4 {
  color: var(--clr-accent);
}

.sidebar-card--accent p {
  color: rgba(244, 239, 223, 0.85);
}

/* ===== INLINE LINK (text-style accent link) ===== */
.inline-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--clr-accent-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: underline;
  text-decoration-color: var(--clr-accent);
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--clr-text-dark);
}

/* ===== RESPONSIVE FOR PHASE 7 ===== */
@media (max-width: 1024px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail__sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .service-section {
    padding: var(--space-2xl) 0;
    scroll-margin-top: 130px;
  }

  .services-nav {
    top: var(--header-height);
  }

  .services-nav a {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .service-section__header {
    margin-bottom: var(--space-lg);
  }

  .service-detail__sidebar {
    gap: 1rem;
  }

  .sidebar-card {
    padding: 1.25rem;
  }
}
