/* =============================================================================
   PacSoft Premium Theme — Main Stylesheet
   Company: Pac Soft LLC | pacsoft.us
   Version: 1.0.0
   ============================================================================= */

/* ─── CSS Custom Properties ────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --clr-primary:         #0E343D;
  --clr-primary-light:   #1A4F5D;
  --clr-primary-dark:    #081E24;
  --clr-primary-50:      #E8F4F6;
  --clr-primary-100:     #C5E1E6;
  --clr-secondary:       #D9B66F;
  --clr-secondary-light: #E8CC94;
  --clr-secondary-dark:  #C49A4A;
  --clr-teal:            #1A7F8E;
  --clr-teal-light:      #3BA8B8;
  --clr-teal-50:         #E0F4F6;
  --clr-bg:              #F8F8F6;
  --clr-surface:         #FFFFFF;
  --clr-surface-2:       #F2F2F0;
  --clr-surface-3:       #EAEAE8;
  --clr-dark-bg:         #0A2830;
  --clr-dark-surface:    #0E343D;
  --clr-dark-surface-2:  #142C35;

  /* Text */
  --clr-text-primary:   #0E1117;
  --clr-text-secondary: #4A5568;
  --clr-text-muted:     #718096;
  --clr-text-light:     #A0AEC0;
  --clr-text-white:     #FFFFFF;
  --clr-text-white-70:  rgba(255,255,255,0.70);
  --clr-text-white-50:  rgba(255,255,255,0.50);

  /* Semantic */
  --clr-success:  #10B981;
  --clr-warning:  #F59E0B;
  --clr-error:    #EF4444;
  --clr-info:     #3B82F6;
  --clr-border:   #E2E8F0;
  --clr-border-2: #CBD5E0;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono:    ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;

  /* Font Sizes (fluid) */
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;
  --text-6xl:   3.75rem;
  --text-7xl:   4.5rem;

  /* Line Heights */
  --leading-tight:  1.2;
  --leading-snug:   1.375;
  --leading-normal: 1.6;
  --leading-loose:  1.8;

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;
  --sp-32:  8rem;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(14,52,61,0.06);
  --shadow-sm:   0 1px 4px rgba(14,52,61,0.08), 0 1px 2px rgba(14,52,61,0.06);
  --shadow-md:   0 4px 16px rgba(14,52,61,0.10), 0 2px 6px rgba(14,52,61,0.06);
  --shadow-lg:   0 8px 32px rgba(14,52,61,0.12), 0 4px 12px rgba(14,52,61,0.08);
  --shadow-xl:   0 16px 48px rgba(14,52,61,0.15), 0 8px 24px rgba(14,52,61,0.10);
  --shadow-2xl:  0 32px 80px rgba(14,52,61,0.18), 0 16px 40px rgba(14,52,61,0.12);
  --shadow-gold: 0 8px 32px rgba(217,182,111,0.35), 0 2px 8px rgba(217,182,111,0.2);
  --shadow-teal: 0 8px 32px rgba(26,127,142,0.25), 0 2px 8px rgba(26,127,142,0.15);
  --shadow-inset: inset 0 1px 3px rgba(14,52,61,0.12);

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-3xl: 40px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:  150ms var(--ease-out);
  --trans-base:  250ms var(--ease-out);
  --trans-slow:  400ms var(--ease-out);
  --trans-slower:600ms var(--ease-out);

  /* Layout */
  --container-max: 1280px;
  --container-px:  clamp(1rem, 4vw, 2rem);

  /* Z-indexes */
  --z-below:   -1;
  --z-base:     0;
  --z-raised:  10;
  --z-overlay: 50;
  --z-modal:  100;
  --z-toast:  200;
  --z-top:    999;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--clr-text-primary);
  background-color: var(--clr-bg);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
svg { display: inline-block; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--clr-text-primary);
  letter-spacing: -0.02em;
}

/* ─── 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-width: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  z-index: var(--z-top);
  padding: var(--sp-3) var(--sp-6);
  background: var(--clr-primary);
  color: var(--clr-text-white);
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: top var(--trans-fast);
}
.skip-link:focus { top: 0; }
:focus-visible {
  outline: 2px solid var(--clr-secondary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── Container ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}
.container--narrow { max-width: 780px; }
.container--wide   { max-width: 1440px; }

/* ─── Section Utilities ───────────────────────────────────────────────────── */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section--dark   { background: var(--clr-dark-bg); color: var(--clr-text-white); }
.section--tinted { background: var(--clr-surface-2); }

.section-header { text-align: center; max-width: 680px; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--left { text-align: left; margin-inline: 0; }
.section-header--light .section-title,
.section-header--light .section-desc { color: var(--clr-text-white); }
.section-header--light .section-desc { color: var(--clr-text-white-70); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: var(--sp-4);
}
.section-label--gold { color: var(--clr-secondary); }

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.section-desc {
  font-size: var(--text-lg);
  color: var(--clr-text-secondary);
  line-height: var(--leading-loose);
  max-width: 60ch;
  margin-inline: auto;
}
.section-cta { text-align: center; margin-top: clamp(2rem, 4vw, 3.5rem); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: all var(--trans-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.btn:hover::before { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn--sm  { padding: 0.5rem 1.125rem; font-size: var(--text-xs); }
.btn--lg  { padding: 1rem 2rem;       font-size: var(--text-base); }
.btn--xl  { padding: 1.125rem 2.5rem; font-size: var(--text-lg); }

.btn--primary {
  background: var(--clr-primary);
  color: var(--clr-text-white);
  box-shadow: 0 4px 16px rgba(14,52,61,0.25), 0 1px 3px rgba(14,52,61,0.15);
}
.btn--primary:hover {
  background: var(--clr-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(14,52,61,0.3), 0 2px 6px rgba(14,52,61,0.2);
}

.btn--gold {
  background: var(--clr-secondary);
  color: var(--clr-primary-dark);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--clr-secondary-light);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(217,182,111,0.4), 0 4px 12px rgba(217,182,111,0.25);
}

.btn--secondary {
  background: var(--clr-surface);
  color: var(--clr-primary);
  border-color: var(--clr-border-2);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

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

.btn--outline-light {
  background: rgba(255,255,255,0.08);
  color: var(--clr-text-white);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-primary);
  border-color: transparent;
}
.btn--ghost:hover {
  background: var(--clr-primary-50);
}

.btn--ghost-light {
  background: rgba(255,255,255,0.10);
  color: var(--clr-text-white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.18);
}

.btn-icon { width: 1.125em; height: 1.125em; flex-shrink: 0; }
.btn-icon--right { order: 2; }

/* ─── Announcement Bar ────────────────────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-teal) 100%);
  color: var(--clr-text-white);
  text-align: center;
  padding: var(--sp-2) var(--container-px);
  font-size: var(--text-sm);
  font-weight: 500;
}
.announcement-bar p { margin: 0; }
.announcement-bar__link {
  color: var(--clr-secondary);
  font-weight: 700;
  margin-left: var(--sp-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announcement-bar__link:hover { color: var(--clr-secondary-light); }

/* ─── Site Header ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-overlay);
  background: rgba(248,248,246,0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(14,52,61,0.08);
  transition: box-shadow var(--trans-base), background var(--trans-base);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-lg);
  background: rgba(248,248,246,0.96);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  height: 70px;
}

/* Logo */
.site-header__logo { flex-shrink: 0; }
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
}
.site-logo-text__pac  { color: var(--clr-primary); }
.site-logo-text__soft { color: var(--clr-teal); }
.site-logo-text__llc  { color: var(--clr-text-muted); font-size: 0.65em; margin-left: 0.2em; font-weight: 600; }

/* Navigation */
.primary-nav { flex: 1; }
.primary-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.menu-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--trans-fast);
  white-space: nowrap;
}
.nav-link:hover, .menu-item.is-active > .nav-link {
  color: var(--clr-primary);
  background: var(--clr-primary-50);
}
.dropdown-caret {
  width: 14px; height: 14px;
  transition: transform var(--trans-fast);
  flex-shrink: 0;
}
.has-dropdown:hover .dropdown-caret,
.has-dropdown[aria-expanded="true"] .dropdown-caret { transform: rotate(180deg); }

/* Dropdown */
.sub-menu {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-base);
  z-index: var(--z-overlay);
}
.has-dropdown:hover .sub-menu,
.has-dropdown:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sub-menu .nav-link { padding: var(--sp-2) var(--sp-4); border-radius: var(--radius-sm); }

/* Header Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-left: auto;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text-secondary);
  transition: color var(--trans-fast);
}
.header-phone:hover { color: var(--clr-primary); }
.header-phone__icon { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-menu-toggle { display: none; padding: var(--sp-2); border-radius: var(--radius-md); }
.mobile-menu-toggle__icon { display: flex; width: 22px; height: 22px; }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: var(--z-overlay);
  background: var(--clr-primary);
  color: var(--clr-text-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--trans-slow);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-cta__inner { display: flex; align-items: center; gap: var(--sp-4); }
.sticky-cta__text { font-size: var(--text-sm); font-weight: 500; display: none; }

/* ─── Hero Section ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--clr-bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,52,61,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,52,61,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: heroGlowPulse 8s ease-in-out infinite alternate;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--clr-teal) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--clr-secondary) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  animation-delay: -4s;
  opacity: 0.15;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero__orb--1 {
  width: 400px; height: 400px;
  background: var(--clr-primary);
  top: 10%; right: 15%;
  animation: heroOrbitFloat 12s ease-in-out infinite;
}
.hero__orb--2 {
  width: 250px; height: 250px;
  background: var(--clr-secondary);
  bottom: 20%; left: 10%;
  animation: heroOrbitFloat 9s ease-in-out infinite reverse;
}

.hero__container {
  position: relative;
  z-index: var(--z-base);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding-block: clamp(4rem, 10vh, 7rem);
}
.hero__content { max-width: 600px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-text-secondary);
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: var(--radius-full);
  background: var(--clr-success);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.25);
  animation: badgePulse 2s ease-in-out infinite;
}

.hero__headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--clr-primary);
  margin-bottom: var(--sp-6);
}

.hero__subheadline {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--clr-text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-10);
  max-width: 52ch;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 500;
}
.trust-icon { width: 16px; height: 16px; color: var(--clr-teal); }
.hero__trust-divider { width: 1px; height: 20px; background: var(--clr-border); }

.star-rating { display: flex; gap: 2px; }
.star { width: 14px; height: 14px; }
.star.filled svg { fill: var(--clr-secondary); color: var(--clr-secondary); }
.star.empty svg  { fill: var(--clr-border);    color: var(--clr-border); }

/* ─── Hero Visual / WorkPulse Dashboard Mockup ─────────────────────────────
   Styled to match real WorkPulse Command Center interface
   ─────────────────────────────────────────────────────────────────────────── */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__dashboard-mockup { position: relative; width: 100%; max-width: 600px; }

.mockup-window {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(14,52,61,0.06);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform var(--trans-slow);
}
.mockup-window:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }

/* Top browser chrome bar */
.mockup-window__bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 8px 12px;
  background: #F1F3F4;
  border-bottom: 1px solid #E0E2E5;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot--red    { background: #FF5F57; }
.mockup-dot--yellow { background: #FEBC2E; }
.mockup-dot--green  { background: #28C840; }
.mockup-window__url {
  flex: 1; font-size: 10px; color: #6B7280; background: #FFFFFF;
  padding: 3px 10px; border-radius: 4px; text-align: center;
  border: 1px solid #E0E2E5; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Main layout: sidebar + content */
.mockup-window__content { display: flex; height: 280px; }

/* WorkPulse sidebar — matches real dark teal sidebar with nav groups */
.mockup-sidebar {
  width: 160px;
  background: var(--clr-primary);
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
}
.mockup-sidebar__brand {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 6px;
}
.mockup-sidebar__brand-icon {
  width: 22px; height: 22px;
  background: var(--clr-secondary);
  border-radius: 5px; flex-shrink: 0;
}
.mockup-sidebar__brand-text {
  display: flex; flex-direction: column; gap: 1px;
}
.mockup-sidebar__brand-text span:first-child {
  height: 5px; width: 60px; background: rgba(255,255,255,0.9); border-radius: 3px;
}
.mockup-sidebar__brand-text span:last-child {
  height: 3px; width: 44px; background: rgba(255,255,255,0.4); border-radius: 3px;
}
.mockup-sidebar__section {
  padding: 0 8px; margin-bottom: 2px;
}
.mockup-sidebar__section-label {
  height: 4px; width: 50%; background: rgba(255,255,255,0.25);
  border-radius: 2px; margin: 6px 4px 4px;
}
.mockup-nav-item {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 6px; border-radius: 5px; margin-bottom: 1px;
}
.mockup-nav-item__icon {
  width: 12px; height: 12px;
  background: rgba(255,255,255,0.2); border-radius: 3px; flex-shrink: 0;
}
.mockup-nav-item__label { height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; flex: 1; }
.mockup-nav-item--active {
  background: rgba(255,255,255,0.12);
}
.mockup-nav-item--active .mockup-nav-item__icon { background: var(--clr-secondary); }
.mockup-nav-item--active .mockup-nav-item__label { background: rgba(255,255,255,0.8); }

/* WorkPulse content area */
.mockup-body {
  flex: 1; padding: 10px 10px 8px; background: #F8FAFB; overflow: hidden;
}
.mockup-body__header {
  display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px;
}
.mockup-body__titles { display: flex; flex-direction: column; gap: 3px; }
.mockup-body__label  { height: 4px; width: 80px; background: var(--clr-teal); border-radius: 2px; opacity: 0.7; }
.mockup-body__title  { height: 8px; width: 120px; background: var(--clr-primary); border-radius: 3px; }
.mockup-live-badge {
  display: flex; align-items: center; gap: 4px;
  background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25);
  border-radius: 10px; padding: 3px 7px;
}
.mockup-live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--clr-success); }
.mockup-live-text { height: 4px; width: 40px; background: var(--clr-success); border-radius: 2px; opacity: 0.7; }

/* 4-column stats row — matches Total Employees, Active, Clocked In, Hours Today */
.mockup-stats-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin-bottom: 5px; }
.mockup-stat-sm {
  background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 6px; padding: 6px;
}
.mockup-stat-sm__label { height: 3px; width: 70%; background: #E5E7EB; border-radius: 2px; margin-bottom: 4px; }
.mockup-stat-sm__value { height: 10px; width: 30%; background: var(--clr-primary); border-radius: 3px; }

/* 3-column secondary stats — matches Terminal Network, Admin Security, Workforce Signal */
.mockup-stats-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-bottom: 5px; }
.mockup-stat-wide {
  background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 6px; padding: 6px;
  display: flex; align-items: center; gap: 5px;
}
.mockup-stat-wide__icon { width: 14px; height: 14px; background: var(--clr-teal-50); border-radius: 3px; flex-shrink: 0; }
.mockup-stat-wide__text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mockup-stat-wide__title { height: 3px; width: 85%; background: #E5E7EB; border-radius: 2px; }
.mockup-stat-wide__val   { height: 5px; width: 65%; background: var(--clr-primary-100); border-radius: 2px; }

/* Shortcuts section at bottom */
.mockup-shortcuts { background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 6px; padding: 6px; }
.mockup-shortcuts__header { display: flex; align-items: center; gap: 4px; margin-bottom: 5px; }
.mockup-shortcuts__dot    { width: 5px; height: 5px; border-radius: 50%; background: var(--clr-success); }
.mockup-shortcuts__label  { height: 5px; width: 70px; background: var(--clr-primary); border-radius: 2px; }
.mockup-shortcuts__grid   { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.mockup-shortcut {
  background: #F8FAFB; border: 1px solid #E5E7EB; border-radius: 5px; padding: 5px;
  display: flex; flex-direction: column; gap: 3px;
}
.mockup-shortcut__icon  { width: 14px; height: 14px; background: var(--clr-teal-50); border-radius: 3px; }
.mockup-shortcut__title { height: 4px; width: 80%; background: var(--clr-primary); border-radius: 2px; }
.mockup-shortcut__desc  { height: 3px; width: 90%; background: #E5E7EB; border-radius: 2px; }

/* Floating badges */
.mockup-float {
  position: absolute;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border: 1px solid var(--clr-border);
  font-size: var(--text-xs);
  font-weight: 600;
  animation: floatBob 4s ease-in-out infinite;
  white-space: nowrap;
}
.mockup-float--1 { top: -20px; left: -30px; animation-delay: 0s; }
.mockup-float--2 { bottom: 30px; right: -25px; animation-delay: -2s; }
.mockup-float--3 { bottom: -15px; left: 20%; animation-delay: -1s; font-size: 11px; color: var(--clr-text-secondary); }
.mockup-float__icon { width: 28px; height: 28px; background: var(--clr-primary-50); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mockup-float__icon svg { width: 14px; height: 14px; color: var(--clr-teal); }
.mockup-float__title { display: block; color: var(--clr-text-primary); }
.mockup-float__sub   { display: block; color: var(--clr-text-muted); font-weight: 400; }
.mockup-float__pulse {
  width: 8px; height: 8px;
  background: var(--clr-success);
  border-radius: var(--radius-full);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
  animation: badgePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Hero scroll */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--clr-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ─── Industries Section ──────────────────────────────────────────────────── */
.industries-section {
  padding-block: var(--sp-8);
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.industries-section__label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  margin-bottom: var(--sp-6);
}
.industries-section__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}
.industry-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text-secondary);
  transition: all var(--trans-fast);
  cursor: default;
}
.industry-chip:hover {
  background: var(--clr-primary-50);
  border-color: var(--clr-primary-100);
  color: var(--clr-primary);
  transform: translateY(-1px);
}
.industry-chip__emoji { font-size: 1.125em; }

/* ─── Services Grid ───────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
}
.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  transition: all var(--trans-base);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-primary-50) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--trans-base);
}
.service-card:hover {
  border-color: var(--clr-teal-light);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--clr-teal-50);
  transform: translateY(-3px);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--clr-primary-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  position: relative;
  transition: background var(--trans-base);
}
.service-card__icon svg { width: 24px; height: 24px; color: var(--clr-primary); }
.service-card:hover .service-card__icon { background: var(--clr-primary); }
.service-card:hover .service-card__icon svg { color: var(--clr-text-white); }

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-5);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-teal);
  transition: gap var(--trans-fast), color var(--trans-fast);
}
.service-card__link:hover { gap: var(--sp-3); color: var(--clr-primary); }
.link-icon { width: 14px; height: 14px; }

/* ─── Products Showcase ───────────────────────────────────────────────────── */
.products-showcase { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem); }

.product-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-2xl);
  padding: clamp(2rem, 4vw, 4rem);
  backdrop-filter: blur(10px);
}
.product-showcase-card--reverse { direction: rtl; }
.product-showcase-card--reverse > * { direction: ltr; }

.product-showcase-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(26,127,142,0.2);
  color: var(--clr-teal-light);
  border: 1px solid rgba(26,127,142,0.3);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.badge-icon { width: 14px; height: 14px; }

.product-showcase-card__title {
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  font-weight: 800;
  color: var(--clr-text-white);
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-5);
}
.product-showcase-card__desc {
  font-size: var(--text-base);
  color: var(--clr-text-white-70);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-6);
}
.product-feature-list { margin-bottom: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-2); }
.product-feature-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--clr-text-white-70);
  font-weight: 500;
}
.check-icon { width: 16px; height: 16px; color: var(--clr-success); flex-shrink: 0; }

.product-showcase-card__tech { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-8); }
.tech-badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--clr-text-white-70);
  letter-spacing: 0.03em;
}

/* ─── Featured Projects ───────────────────────────────────────────────────── */
.featured-projects-section {
  position: relative;
  overflow: hidden;
}
.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.featured-project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  transition: transform var(--trans-base), border-color var(--trans-base), box-shadow var(--trans-base);
}
.featured-project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217,182,111,0.35);
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}
.featured-project-card__media {
  padding: clamp(1rem, 2.2vw, 1.5rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    radial-gradient(circle at 20% 0%, rgba(217,182,111,0.16), transparent 35%),
    rgba(255,255,255,0.035);
}
.featured-project-card__image-shell,
.featured-project-card__video-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--clr-primary-dark);
  box-shadow: var(--shadow-xl);
}
.featured-project-card__image,
.featured-project-card__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-project-card__video {
  background: var(--clr-primary-dark);
}
.featured-project-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
}
.featured-project-card__title {
  color: var(--clr-text-white);
  font-size: var(--text-2xl);
  font-weight: 800;
  line-height: var(--leading-tight);
  margin-bottom: var(--sp-4);
}
.featured-project-card__desc {
  color: var(--clr-text-white-70);
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-6);
}
.featured-project-card__content .product-showcase-card__tech {
  margin-top: auto;
}

/* ─── Booking Section ─────────────────────────────────────────────────────── */
.booking-section {
  position: relative;
  overflow: hidden;
}
.booking-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.booking-section__intro {
  max-width: 540px;
}
.booking-section__intro .section-desc {
  margin-inline: 0;
}
.booking-section__signals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}
.booking-section__signals span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  background: var(--clr-surface);
  color: var(--clr-primary);
  font-size: var(--text-sm);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.booking-section__signal-icon {
  width: 16px;
  height: 16px;
  color: var(--clr-teal);
}
.booking-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,248,246,0.98)),
    var(--clr-surface);
  border: 1px solid rgba(14,52,61,0.1);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  overflow: hidden;
}
.booking-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(135deg, rgba(14,52,61,0.98), rgba(26,79,93,0.96)),
    var(--clr-primary);
  color: var(--clr-text-white);
}
.booking-card__kicker {
  color: var(--clr-secondary-light);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}
.booking-card__title {
  color: var(--clr-text-white);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: var(--leading-tight);
}
.booking-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: rgba(217,182,111,0.18);
  border: 1px solid rgba(217,182,111,0.35);
  flex-shrink: 0;
}
.booking-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--clr-secondary-light);
}
.booking-card__scheduler {
  padding: clamp(0.75rem, 2vw, 1.25rem);
  min-height: 620px;
  background:
    linear-gradient(180deg, rgba(232,244,246,0.72), rgba(255,255,255,0.96)),
    var(--clr-surface);
}
.booking-card__scheduler iframe,
.booking-card__scheduler [id*="cal"],
.booking-card__scheduler [class*="cal-"] {
  max-width: 100%;
}
.booking-card__scheduler iframe {
  width: 100%;
  min-height: 600px;
  border: 0;
  border-radius: var(--radius-xl);
  background: var(--clr-surface);
}
.booking-card__fallback {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-6);
  padding: var(--sp-8);
  border: 1px dashed rgba(14,52,61,0.18);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.72);
}
.booking-card__fallback p {
  max-width: 46ch;
  color: var(--clr-text-secondary);
  line-height: var(--leading-loose);
}
.booking-card__fallback-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}
.contact-page-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

/* Product screenshot mockups */
.product-screenshot { width: 100%; max-width: 520px; margin-inline: auto; }
.product-screenshot__window {
  background: var(--clr-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255,255,255,0.1);
}
.product-screenshot__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--clr-surface-2);
  border-bottom: 1px solid var(--clr-border);
}
.product-screenshot__dots { display: flex; gap: 6px; }
.product-screenshot__dots span { width: 10px; height: 10px; border-radius: var(--radius-full); }
.product-screenshot__dots span:nth-child(1) { background: #FF5F57; }
.product-screenshot__dots span:nth-child(2) { background: #FEBC2E; }
.product-screenshot__dots span:nth-child(3) { background: #28C840; }
.product-screenshot__title { font-size: 11px; color: var(--clr-text-muted); font-weight: 500; }
.product-screenshot__body { display: flex; min-height: 260px; background: var(--clr-bg); }

/* ─── WorkPulse Product Screenshot — Employee Portal (mobile web app)
   Matches real app.goworkpulse.com interface — teal header, stats grid,
   schedule card, quick actions
   ─────────────────────────────────────────────────────────────────────────── */
.ps-mobile-frame {
  width: 100%; max-width: 240px; margin-inline: auto;
  background: #FFFFFF; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-2xl); border: 1px solid rgba(255,255,255,0.15);
}
/* Teal header bar */
.ps-top-bar {
  background: #0E5F6A; /* real WorkPulse teal */
  padding: 8px 10px;
}
.ps-top-bar__browser-url {
  background: rgba(255,255,255,0.12); border-radius: 3px;
  height: 12px; padding: 0 6px; margin-bottom: 6px;
  display: flex; align-items: center;
}
.ps-top-bar__browser-url span { height: 4px; width: 100px; background: rgba(255,255,255,0.6); border-radius: 2px; }
.ps-portal-nav {
  display: flex; align-items: center; gap: 5px;
}
.ps-portal-badge {
  display: flex; align-items: center; gap: 3px;
  background: rgba(255,255,255,0.15); border-radius: 5px; padding: 4px 7px;
}
.ps-portal-badge__icon { width: 10px; height: 10px; background: rgba(255,255,255,0.8); border-radius: 2px; }
.ps-portal-badge__text { height: 5px; width: 32px; background: rgba(255,255,255,0.9); border-radius: 2px; }
.ps-nav-icons { display: flex; gap: 4px; margin-left: auto; }
.ps-nav-icons span { width: 18px; height: 18px; background: rgba(255,255,255,0.15); border-radius: 50%; }
.ps-nav-icons span:first-child { background: rgba(255,255,255,0.25); }

/* Content area */
.ps-content { padding: 10px; background: #F8FAFB; }
/* "Hi, Michael" greeting */
.ps-greeting { margin-bottom: 8px; }
.ps-greeting__name  { height: 10px; width: 70px; background: #1A2E35; border-radius: 4px; margin-bottom: 3px; }
.ps-greeting__meta  { height: 5px; width: 110px; background: #94A3B8; border-radius: 3px; }

/* 2x2 stats grid (HRS Available, HRS Pending, HRS Used, Approved) */
.ps-stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 8px; }
.ps-stat-card {
  background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 8px; padding: 8px;
}
.ps-stat-card__val { height: 14px; width: 40%; border-radius: 4px; margin-bottom: 4px; }
.ps-stat-card__val--red    { background: #EF4444; }
.ps-stat-card__val--amber  { background: #F59E0B; }
.ps-stat-card__val--dark   { background: #374151; }
.ps-stat-card__val--green  { background: #10B981; }
.ps-stat-card__label { height: 4px; width: 70%; background: #D1D5DB; border-radius: 2px; }

/* Current Schedule card — teal border-top */
.ps-schedule-card {
  background: #FFFFFF; border: 1px solid #E5E7EB; border-radius: 8px;
  border-top: 2px solid #0E5F6A; padding: 8px; margin-bottom: 8px;
}
.ps-schedule-card__label { height: 4px; width: 55%; background: #0E5F6A; border-radius: 2px; margin-bottom: 5px; opacity: 0.7; }
.ps-schedule-card__name  { height: 8px; width: 30%; background: #1A2E35; border-radius: 3px; margin-bottom: 6px; }
.ps-schedule-card__times {
  display: flex; align-items: center; gap: 5px; margin-bottom: 4px;
}
.ps-time-pill { height: 14px; width: 40px; background: #E0F2F4; border-radius: 7px; }
.ps-time-arrow { height: 4px; width: 12px; background: #94A3B8; border-radius: 2px; }
.ps-schedule-card__sub { height: 4px; width: 55%; background: #D1D5DB; border-radius: 2px; }

/* Quick Actions */
.ps-quick-actions { }
.ps-quick-actions__label { height: 5px; width: 50%; background: #94A3B8; border-radius: 3px; margin-bottom: 6px; }
.ps-qa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 4px; }
.ps-qa-btn {
  height: 28px; border-radius: 6px; border: 1px solid #0E5F6A;
  display: flex; align-items: center; justify-content: center; gap: 4px; padding: 0 6px;
}
.ps-qa-btn--primary { background: #0E5F6A; border-color: #0E5F6A; }
.ps-qa-btn__icon  { width: 8px; height: 8px; border-radius: 2px; background: rgba(255,255,255,0.7); flex-shrink: 0; }
.ps-qa-btn--primary .ps-qa-btn__icon { background: rgba(255,255,255,0.9); }
.ps-qa-btn__text  { height: 4px; flex: 1; border-radius: 2px; background: rgba(14,95,106,0.5); }
.ps-qa-btn--primary .ps-qa-btn__text { background: rgba(255,255,255,0.8); }
.ps-qa-btn-full {
  width: 100%; height: 26px; background: #FFFFFF; border: 1px solid #E5E7EB;
  border-radius: 6px; display: flex; align-items: center; justify-content: center; gap: 4px;
}
.ps-qa-btn-full__icon { width: 8px; height: 8px; border-radius: 50%; background: #94A3B8; }
.ps-qa-btn-full__text { height: 4px; width: 24px; background: #94A3B8; border-radius: 2px; }

/* Legacy admin dashboard styles (still used in product-showcase mockup) */
.ps-sidebar { width: 44px; background: var(--clr-primary); padding: var(--sp-3) var(--sp-2); display: flex; flex-direction: column; gap: var(--sp-3); align-items: center; }
.ps-sidebar__logo { width: 28px; height: 28px; background: var(--clr-secondary); border-radius: 6px; margin-bottom: var(--sp-2); }
.ps-sidebar__item { width: 24px; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.2); }
.ps-sidebar__item--active { background: var(--clr-secondary); }
.ps-content { flex: 1; padding: var(--sp-3); overflow: hidden; }
.ps-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-3); }
.ps-title-block { height: 8px; width: 100px; background: var(--clr-surface-3); border-radius: 4px; }
.ps-action-btn { width: 60px; height: 22px; background: var(--clr-primary); border-radius: var(--radius-full); opacity: 0.8; }
.ps-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-2); margin-bottom: var(--sp-3); }
.ps-stat { background: var(--clr-surface); border-radius: 8px; padding: var(--sp-2); border: 1px solid var(--clr-border); }
.ps-stat__num { height: 10px; background: var(--clr-primary-50); border-radius: 4px; margin-bottom: 4px; }
.ps-stat__label { height: 5px; width: 80%; background: var(--clr-surface-3); border-radius: 3px; }
.ps-chart-area { background: var(--clr-surface); border-radius: 8px; padding: var(--sp-2); margin-bottom: var(--sp-3); border: 1px solid var(--clr-border); }
.ps-chart-bars { display: flex; gap: 3px; align-items: flex-end; height: 40px; }
.ps-chart-bar { flex: 1; background: linear-gradient(to top, var(--clr-teal) 0%, var(--clr-teal-light) 100%); border-radius: 2px; min-height: 6px; opacity: 0.7; }
.ps-table { display: flex; flex-direction: column; gap: var(--sp-2); }
.ps-table-row { display: flex; align-items: center; gap: var(--sp-2); background: var(--clr-surface); border-radius: 8px; padding: var(--sp-2); border: 1px solid var(--clr-border); }
.ps-table-avatar { width: 22px; height: 22px; border-radius: var(--radius-full); background: var(--clr-primary-100); flex-shrink: 0; }
.ps-table-info { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.ps-table-name { height: 5px; width: 80%; background: var(--clr-surface-3); border-radius: 3px; }
.ps-table-role { height: 4px; width: 55%; background: var(--clr-surface-3); border-radius: 3px; opacity: 0.6; }
.ps-table-badge { width: 36px; height: 14px; background: var(--clr-teal-50); border-radius: 4px; flex-shrink: 0; }

/* ─── Bible Explained Mobile Mockup ────────────────────────────────────────
   Warm beige "What is on your heart?" interface — matches real app
   ─────────────────────────────────────────────────────────────────────────── */
.product-screenshot--bible { display: flex; justify-content: center; }
.mobile-frame {
  width: 210px;
  background: #1C1C1E;
  border-radius: 38px;
  padding: 10px;
  box-shadow: var(--shadow-2xl), inset 0 0 0 1px rgba(255,255,255,0.12),
              0 0 0 1px rgba(0,0,0,0.4);
}
.mobile-screen {
  background: #F5EEE0; /* warm beige — matches real Bible Explained */
  border-radius: 28px;
  overflow: hidden;
  min-height: 380px;
  display: flex; flex-direction: column;
}

/* Status bar */
.mobile-status-bar {
  background: #1A2E35;
  padding: 6px 14px 4px;
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-status-time { height: 5px; width: 20px; background: rgba(255,255,255,0.8); border-radius: 3px; }
.mobile-status-icons { display: flex; gap: 3px; }
.mobile-status-icons span { height: 4px; width: 8px; background: rgba(255,255,255,0.5); border-radius: 2px; }

/* Main content — warm beige */
.mobile-content { flex: 1; padding: 10px 10px 6px; }
.mobile-page-title { height: 10px; width: 80%; background: #1A2E35; border-radius: 4px; margin-bottom: 4px; }
.mobile-page-sub   { height: 5px; width: 90%; background: rgba(26,46,53,0.3); border-radius: 3px; margin-bottom: 10px; }

/* "BEGIN WHERE YOU ARE" label */
.mobile-section-label {
  height: 4px; width: 55%; background: rgba(26,46,53,0.35);
  border-radius: 2px; margin-bottom: 4px;
}
.mobile-section-desc {
  height: 4px; width: 95%; background: rgba(26,46,53,0.18);
  border-radius: 2px; margin-bottom: 3px;
}

/* Today's Reflection card — white card on beige */
.mobile-reflection-card {
  background: #FFFFFF; border-radius: 10px; padding: 8px;
  margin: 8px 0; box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.mobile-ref-label { height: 4px; width: 45%; background: rgba(26,46,53,0.25); border-radius: 2px; margin-bottom: 3px; }
.mobile-ref-sub   { height: 3px; width: 65%; background: rgba(26,46,53,0.15); border-radius: 2px; margin-bottom: 6px; }
/* Scripture verse — dark teal bold text */
.mobile-verse-bold { height: 6px; width: 95%; background: #1A2E35; border-radius: 3px; margin-bottom: 3px; }
.mobile-verse-bold-2 { height: 6px; width: 75%; background: #1A2E35; border-radius: 3px; margin-bottom: 6px; }
/* Explanation paragraph lines */
.mobile-exp-line { height: 3px; background: rgba(26,46,53,0.18); border-radius: 2px; margin-bottom: 3px; }
.mobile-exp-line--short { width: 70%; }
.mobile-exp-line--full  { width: 100%; }
.mobile-exp-line--med   { width: 85%; }
/* Divider */
.mobile-divider { height: 1px; background: rgba(26,46,53,0.1); margin: 6px 0; }
/* REFLECTION label */
.mobile-reflection-label { height: 4px; width: 35%; background: rgba(26,46,53,0.25); border-radius: 2px; margin-bottom: 4px; }
.mobile-reflection-q { height: 4px; width: 90%; background: rgba(26,46,53,0.18); border-radius: 2px; margin-bottom: 3px; }
.mobile-reflection-q-2 { height: 4px; width: 55%; background: rgba(26,46,53,0.18); border-radius: 2px; margin-bottom: 8px; }
/* "Stay with this verse" pill */
.mobile-verse-pill {
  display: inline-block; height: 20px; width: 100px;
  background: #F0E8D8; border: 1px solid rgba(26,46,53,0.15);
  border-radius: 12px;
}

/* Text input area at bottom */
.mobile-input-area {
  background: #FFFFFF; border-radius: 10px; padding: 8px;
  margin: 6px 0; display: flex; align-items: flex-start; gap: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.mobile-input-plus { width: 18px; height: 18px; background: #F5EEE0; border-radius: 50%; flex-shrink: 0; }
.mobile-input-lines { flex: 1; display: flex; flex-direction: column; gap: 3px; padding-top: 2px; }
.mobile-input-line  { height: 4px; background: rgba(26,46,53,0.15); border-radius: 2px; }
.mobile-input-line--short { width: 55%; }
.mobile-input-send  { width: 22px; height: 22px; background: #1A2E35; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.mobile-input-count { height: 3px; width: 20px; background: rgba(26,46,53,0.2); border-radius: 2px; margin-top: 4px; }

/* Bottom navigation — Read, Reflect (active), Journey, Library */
.mobile-bottom-nav {
  background: #FFFFFF; border-top: 1px solid rgba(26,46,53,0.08);
  padding: 6px 8px 8px; display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.mobile-nav-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 3px; }
.mobile-nav-tab__icon { width: 16px; height: 10px; background: rgba(26,46,53,0.2); border-radius: 3px; }
.mobile-nav-tab__label { height: 3px; width: 20px; background: rgba(26,46,53,0.2); border-radius: 2px; }
.mobile-nav-tab--active .mobile-nav-tab__icon  { background: #1A2E35; }
.mobile-nav-tab--active .mobile-nav-tab__label { background: #1A2E35; }

/* ─── Website Showcases ─────────────────────────────────────────────────────
   Paul Ariel Malimtoto Ministries (dark forest green + gold)
   Nyumbani Homes (clean real estate with orange CTAs)
   ─────────────────────────────────────────────────────────────────────────── */
.websites-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); padding: var(--sp-3); }
.website-preview { background: var(--clr-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--clr-border); }

/* Ministry website — dark forest green background, gold/cream headline */
.website-preview--ministry { background: #1E3A2F; }
.website-preview--ministry .wp-header {
  height: 24px; background: #F7F3EC; border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex; align-items: center; padding: 0 8px; gap: 6px;
}
.wp-logo-text { height: 5px; width: 70px; background: #1E3A2F; border-radius: 2px; }
.wp-nav-items { display: flex; gap: 4px; margin-left: auto; }
.wp-nav-item  { height: 3px; width: 20px; background: rgba(30,58,47,0.4); border-radius: 2px; }
.wp-hero-ministry {
  padding: 10px 8px; background: #1E3A2F;
}
.wp-hero-pretitle { height: 4px; width: 60%; background: rgba(255,255,255,0.35); border-radius: 2px; margin-bottom: 5px; letter-spacing: 0.1em; }
/* "Preaching Truth." in white */
.wp-hero-h1-white { height: 7px; width: 80%; background: rgba(255,255,255,0.9); border-radius: 3px; margin-bottom: 3px; }
/* "Inspiring Lives." in gold */
.wp-hero-h1-gold  { height: 7px; width: 70%; background: #D4A853; border-radius: 3px; margin-bottom: 5px; }
.wp-hero-subtext  { height: 4px; width: 90%; background: rgba(255,255,255,0.4); border-radius: 2px; margin-bottom: 3px; }
.wp-hero-subtext-2 { height: 4px; width: 70%; background: rgba(255,255,255,0.4); border-radius: 2px; margin-bottom: 6px; }
.wp-ministry-ctas { display: flex; gap: 3px; margin-bottom: 6px; }
.wp-cta-gold   { height: 14px; width: 42px; background: #D4A853; border-radius: 7px; }
.wp-cta-outline { height: 14px; width: 46px; background: transparent; border: 1px solid rgba(255,255,255,0.4); border-radius: 7px; }
.wp-cta-outline-2 { height: 14px; width: 38px; background: transparent; border: 1px solid rgba(255,255,255,0.3); border-radius: 7px; }
/* Stats bar */
.wp-stats-bar { background: rgba(255,255,255,0.08); border-radius: 5px; padding: 5px 6px; display: flex; justify-content: space-around; }
.wp-stat-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.wp-stat-val  { height: 5px; width: 24px; background: rgba(255,255,255,0.7); border-radius: 2px; }
.wp-stat-lbl  { height: 3px; width: 18px; background: rgba(255,255,255,0.3); border-radius: 2px; }

/* Real Estate website — Nyumbani Homes, clean with orange CTAs */
.website-preview--realestate { background: #FFFFFF; }
.wp-header-realestate {
  height: 28px; background: #FFFFFF; border-bottom: 1px solid #E5E7EB;
  display: flex; align-items: center; padding: 0 8px; gap: 5px;
}
.wp-logo-nyumbani { width: 20px; height: 16px; background: #F5A623; border-radius: 3px; flex-shrink: 0; }
.wp-nav-re { display: flex; gap: 4px; margin-left: auto; }
.wp-nav-re span { height: 3px; width: 18px; background: #9CA3AF; border-radius: 2px; }
.wp-cta-orange-sm { height: 14px; width: 38px; background: #F5A623; border-radius: 7px; }
/* Hero with photo overlay */
.wp-hero-realestate {
  height: 70px; background: linear-gradient(135deg, #4A3728 0%, #7A6050 40%, #A08070 100%);
  position: relative; overflow: hidden; padding: 8px;
  display: flex; flex-direction: column; justify-content: center;
}
.wp-hero-realestate::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.wp-location-pill {
  position: relative; z-index: 1;
  height: 10px; width: 50px; background: rgba(255,255,255,0.2);
  border-radius: 5px; margin-bottom: 4px;
}
.wp-hero-re-h1  { position: relative; z-index: 1; height: 7px; width: 90%; background: rgba(255,255,255,0.95); border-radius: 3px; margin-bottom: 3px; }
.wp-hero-re-h1-2 { position: relative; z-index: 1; height: 7px; width: 70%; background: rgba(255,255,255,0.95); border-radius: 3px; margin-bottom: 5px; }
.wp-re-ctas { position: relative; z-index: 1; display: flex; gap: 4px; }
.wp-cta-orange-hero { height: 14px; width: 45px; background: #F5A623; border-radius: 7px; }
.wp-cta-outline-hero { height: 14px; width: 46px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.5); border-radius: 7px; }
/* Property cards grid */
.wp-re-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 5px; }
.wp-re-card  { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 5px; overflow: hidden; }
.wp-re-card__img { height: 18px; background: linear-gradient(135deg, #8B7355, #A8956F); }
.wp-re-card__info { padding: 4px; }
.wp-re-card__price { height: 5px; width: 50%; background: #F5A623; border-radius: 2px; margin-bottom: 2px; }
.wp-re-card__addr  { height: 3px; width: 80%; background: #D1D5DB; border-radius: 2px; }

/* ─── Benefits Grid ───────────────────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-5);
}
.benefit-card {
  padding: var(--sp-8);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  transition: all var(--trans-base);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-teal), var(--clr-secondary));
  transform: scaleX(0);
  transition: transform var(--trans-base);
  transform-origin: left;
}
.benefit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-card__icon {
  width: 44px; height: 44px;
  background: var(--clr-primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.benefit-card__icon svg { width: 20px; height: 20px; color: var(--clr-teal); }
.benefit-card__title { font-size: var(--text-lg); font-weight: 700; color: var(--clr-primary); margin-bottom: var(--sp-3); letter-spacing: -0.02em; }
.benefit-card__desc  { font-size: var(--text-sm); color: var(--clr-text-secondary); line-height: var(--leading-loose); }

/* ─── Process Timeline ────────────────────────────────────────────────────── */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-5);
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  transition: all var(--trans-base);
  position: relative;
}
.process-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--clr-teal-light);
}
.process-step__marker {
  position: absolute;
  top: -14px; left: var(--sp-6);
}
.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--clr-primary);
  color: var(--clr-text-white);
  font-size: var(--text-xs);
  font-weight: 800;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
}
.process-step__icon {
  width: 40px; height: 40px;
  background: var(--clr-primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-4);
}
.process-step__icon svg { width: 18px; height: 18px; color: var(--clr-teal); }
.process-step__title { font-size: var(--text-lg); font-weight: 700; color: var(--clr-primary); letter-spacing: -0.02em; }
.process-step__desc  { font-size: var(--text-sm); color: var(--clr-text-secondary); line-height: var(--leading-loose); }

/* ─── Testimonials ────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-5);
}
.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: all var(--trans-base);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-6);
  font-size: 5rem;
  line-height: 1;
  color: var(--clr-primary-50);
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--clr-border-2);
}
.testimonial-card__stars { }
.testimonial-card__quote {
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: var(--clr-text-secondary);
  flex: 1;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: var(--sp-4); }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-card__avatar--placeholder {
  background: var(--clr-primary);
  color: var(--clr-text-white);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card__name  { display: block; font-size: var(--text-sm); font-weight: 700; color: var(--clr-primary); font-style: normal; }
.testimonial-card__role  { display: block; font-size: var(--text-xs); color: var(--clr-text-muted); margin-top: 2px; }

/* ─── FAQ Accordion ───────────────────────────────────────────────────────── */
.faq-section__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}
.faq-section__header { position: sticky; top: 100px; }
.faq-accordion { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--clr-border);
}
.faq-item:first-child { border-top: 1px solid var(--clr-border); }

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-6) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--trans-fast);
  font-family: var(--font-heading);
}
.faq-item__question:hover { color: var(--clr-teal); }
.faq-item__question[aria-expanded="true"] { color: var(--clr-teal); }

.faq-item__icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-item__icon svg { width: 18px; height: 18px; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: opacity var(--trans-fast), transform var(--trans-fast); }
.faq-icon-minus { opacity: 0; transform: translate(-50%,-50%) rotate(-90deg) !important; }
.faq-item__question[aria-expanded="true"] .faq-icon-plus  { opacity: 0; transform: translate(-50%,-50%) rotate(90deg) !important; }
.faq-item__question[aria-expanded="true"] .faq-icon-minus { opacity: 1; transform: translate(-50%,-50%) rotate(0deg) !important; }

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--trans-slow);
}
.faq-item__answer:not([hidden]) { max-height: 500px; }
.faq-item__answer[hidden] { display: block !important; max-height: 0; visibility: hidden; }
.faq-item__answer p {
  padding-bottom: var(--sp-6);
  font-size: var(--text-base);
  color: var(--clr-text-secondary);
  line-height: var(--leading-loose);
}

/* ─── Final CTA Section ───────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  background: var(--clr-primary);
}
.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-below);
  overflow: hidden;
}
.cta-section__glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,182,111,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(60px);
}
.cta-section__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-section__content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.cta-section__title {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-6xl));
  font-weight: 800;
  color: var(--clr-text-white);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: var(--sp-6);
}
.cta-section__desc {
  font-size: var(--text-lg);
  color: var(--clr-text-white-70);
  line-height: var(--leading-loose);
  margin-bottom: var(--sp-10);
  max-width: 55ch;
  margin-inline: auto;
}
.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.cta-section__note {
  font-size: var(--text-sm);
  color: var(--clr-text-white-50);
}

/* ─── Newsletter Section ──────────────────────────────────────────────────── */
.newsletter-section {
  padding-block: var(--sp-16);
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
}
.newsletter-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.newsletter-section__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-4);
}
.newsletter-section__text {
  font-size: var(--text-base);
  color: var(--clr-text-secondary);
  line-height: var(--leading-loose);
  max-width: 42ch;
}
.newsletter-form__group {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.newsletter-form__input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  color: var(--clr-text-primary);
  background: var(--clr-bg);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.newsletter-form__input:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(26,127,142,0.15);
}
.newsletter-form__note { font-size: var(--text-xs); color: var(--clr-text-muted); }
.newsletter-form__message { min-height: 20px; font-size: var(--text-sm); font-weight: 600; margin-top: var(--sp-2); }
.newsletter-form__message.success { color: var(--clr-success); }
.newsletter-form__message.error   { color: var(--clr-error); }

/* ─── Site Footer ─────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-primary-dark);
  color: var(--clr-text-white-70);
  padding-top: var(--sp-24);
  padding-bottom: var(--sp-8);
}
.footer-logo .site-logo-text__pac  { color: var(--clr-text-white); }
.footer-logo .site-logo-text__soft { color: var(--clr-secondary); }
.footer-logo .site-logo-text__llc  { color: rgba(255,255,255,0.4); }

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr;
  gap: clamp(2rem, 4vw, 6rem);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--sp-8);
}
.site-footer__tagline {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: var(--clr-text-white-70);
  margin-block: var(--sp-4);
  max-width: 32ch;
}
.site-footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.site-footer__contact-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--clr-text-white-70);
  transition: color var(--trans-fast);
}
.site-footer__contact-link:hover { color: var(--clr-secondary); }
.contact-icon { width: 14px; height: 14px; flex-shrink: 0; color: var(--clr-teal-light); }

.site-footer__social { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: var(--clr-text-white-70);
  transition: all var(--trans-fast);
}
.social-link:hover { background: var(--clr-secondary); color: var(--clr-primary-dark); transform: translateY(-2px); }
.social-link svg { width: 16px; height: 16px; }

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 2vw, 3rem);
}
.footer-nav-col__title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-white);
  margin-bottom: var(--sp-5);
}
.footer-nav-col__list { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-nav-col__list li a,
.footer-nav-col__list li span {
  font-size: var(--text-sm);
  color: var(--clr-text-white-70);
  transition: color var(--trans-fast);
  display: block;
}
.footer-nav-col__list li a:hover { color: var(--clr-secondary); }

.footer-address { font-size: var(--text-sm); color: var(--clr-text-white-70); line-height: var(--leading-loose); }
.footer-address p { margin-bottom: var(--sp-3); }
.footer-address__link {
  display: block;
  color: var(--clr-text-white-70);
  transition: color var(--trans-fast);
  margin-bottom: var(--sp-2);
}
.footer-address__link:hover { color: var(--clr-secondary); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.site-footer__copyright { font-size: var(--text-sm); color: var(--clr-text-white-50); }

.footer-legal-nav { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.footer-legal-nav a {
  font-size: var(--text-xs);
  color: var(--clr-text-white-50);
  transition: color var(--trans-fast);
}
.footer-legal-nav a:hover { color: var(--clr-text-white); }

/* ─── Blog / Archive ──────────────────────────────────────────────────────── */
.page-header {
  background: var(--clr-primary);
  color: var(--clr-text-white);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.page-header__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));
  font-weight: 800;
  color: var(--clr-text-white);
  letter-spacing: -0.04em;
  margin-bottom: var(--sp-4);
}
.page-header__desc {
  font-size: var(--text-lg);
  color: var(--clr-text-white-70);
  max-width: 55ch;
  margin-inline: auto;
  line-height: var(--leading-loose);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--sp-6);
}
.post-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--trans-base);
}
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--clr-border-2); }
.post-card__img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--clr-surface-2); }
.post-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--trans-slow); }
.post-card:hover .post-card__img-wrap img { transform: scale(1.04); }
.post-card__content { padding: var(--sp-6); }
.post-card__cat {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: var(--sp-3);
}
.post-card__title { font-size: var(--text-xl); font-weight: 700; color: var(--clr-primary); margin-bottom: var(--sp-3); line-height: 1.3; letter-spacing: -0.02em; }
.post-card__title a:hover { color: var(--clr-teal); }
.post-card__excerpt { font-size: var(--text-sm); color: var(--clr-text-secondary); line-height: var(--leading-loose); margin-bottom: var(--sp-5); }
.post-card__meta { display: flex; align-items: center; gap: var(--sp-4); font-size: var(--text-xs); color: var(--clr-text-muted); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: var(--sp-2); margin-top: var(--sp-12); }
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text-secondary);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  transition: all var(--trans-fast);
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--clr-primary);
  color: var(--clr-text-white);
  border-color: var(--clr-primary);
}
.pagination .prev, .pagination .next { width: auto; padding-inline: var(--sp-4); }

/* ─── Forms ───────────────────────────────────────────────────────────────── */
.contact-form { max-width: 720px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text-primary);
}
.form-label .required { color: var(--clr-error); margin-left: 3px; }
.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--clr-text-primary);
  background: var(--clr-surface);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px rgba(26,127,142,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--clr-text-light); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.5rem; }
.form-submit { margin-top: var(--sp-4); }
.form-note { font-size: var(--text-xs); color: var(--clr-text-muted); margin-top: var(--sp-3); }

.form-response {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-top: var(--sp-4);
  display: none;
}
.form-response.success { background: rgba(16,185,129,0.1); color: var(--clr-success); border: 1px solid rgba(16,185,129,0.3); display: block; }
.form-response.error   { background: rgba(239,68,68,0.1);  color: var(--clr-error);   border: 1px solid rgba(239,68,68,0.3); display: block; }

/* ─── Single Post / Page ──────────────────────────────────────────────────── */
.single-article__header { padding-block: clamp(2rem, 5vw, 4rem); max-width: 820px; margin-inline: auto; }
.single-article__category { display: block; font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--clr-teal); margin-bottom: var(--sp-4); }
.single-article__title { font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl)); font-weight: 800; letter-spacing: -0.04em; color: var(--clr-primary); margin-bottom: var(--sp-5); }
.single-article__meta { display: flex; align-items: center; gap: var(--sp-5); font-size: var(--text-sm); color: var(--clr-text-muted); }
.single-article__featured-img { aspect-ratio: 16/7; overflow: hidden; border-radius: var(--radius-xl); margin-bottom: var(--sp-10); }
.single-article__featured-img img { width: 100%; height: 100%; object-fit: cover; }

.entry-content { max-width: 720px; margin-inline: auto; font-size: var(--text-lg); line-height: var(--leading-loose); color: var(--clr-text-secondary); }
.entry-content h2 { font-size: var(--text-3xl); color: var(--clr-primary); margin-block: var(--sp-10) var(--sp-5); }
.entry-content h3 { font-size: var(--text-2xl); color: var(--clr-primary); margin-block: var(--sp-8) var(--sp-4); }
.entry-content h4 { font-size: var(--text-xl); color: var(--clr-primary); margin-block: var(--sp-6) var(--sp-3); }
.entry-content p  { margin-bottom: var(--sp-6); }
.entry-content a  { color: var(--clr-teal); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--clr-primary); }
.entry-content ul, .entry-content ol { padding-left: var(--sp-8); margin-bottom: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-2); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote { border-left: 3px solid var(--clr-secondary); padding-left: var(--sp-6); margin-block: var(--sp-8); color: var(--clr-text-primary); font-size: var(--text-xl); font-style: italic; font-weight: 500; }
.entry-content code { font-family: var(--font-mono); font-size: 0.9em; background: var(--clr-surface-2); padding: 0.1em 0.4em; border-radius: var(--radius-xs); }
.entry-content pre { background: var(--clr-primary); color: var(--clr-text-white); padding: var(--sp-6); border-radius: var(--radius-lg); overflow-x: auto; margin-bottom: var(--sp-6); }
.entry-content img { border-radius: var(--radius-lg); margin-block: var(--sp-6); box-shadow: var(--shadow-md); }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: var(--sp-6); }
.entry-content th, .entry-content td { padding: var(--sp-3) var(--sp-4); text-align: left; border-bottom: 1px solid var(--clr-border); }
.entry-content th { font-weight: 700; color: var(--clr-primary); background: var(--clr-surface-2); }

/* ─── Breadcrumbs ─────────────────────────────────────────────────────────── */
.breadcrumbs { padding-block: var(--sp-4); }
.breadcrumbs__list { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; font-size: var(--text-sm); }
.breadcrumbs__item { display: flex; align-items: center; gap: var(--sp-2); color: var(--clr-text-muted); }
.breadcrumbs__item a { color: var(--clr-text-secondary); transition: color var(--trans-fast); }
.breadcrumbs__item a:hover { color: var(--clr-teal); }
.breadcrumbs__item:not(:last-child)::after { content: '/'; color: var(--clr-text-light); }

/* ─── Search Page ─────────────────────────────────────────────────────────── */
.search-form-wrap { max-width: 560px; margin: var(--sp-12) auto; }
.search-field { display: flex; gap: var(--sp-3); }
.search-input { flex: 1; padding: 0.75rem 1.25rem; border: 2px solid var(--clr-border); border-radius: var(--radius-full); font-size: var(--text-base); background: var(--clr-surface); }
.search-input:focus { outline: none; border-color: var(--clr-teal); }
.search-submit { padding: 0.75rem 1.5rem; background: var(--clr-primary); color: var(--clr-text-white); border-radius: var(--radius-full); font-weight: 600; transition: background var(--trans-fast); }
.search-submit:hover { background: var(--clr-teal); }

/* ─── 404 Page ────────────────────────────────────────────────────────────── */
.error-404 { text-align: center; padding-block: clamp(4rem, 10vw, 8rem); }
.error-404__code { font-size: clamp(6rem, 15vw, 12rem); font-weight: 900; color: var(--clr-primary-50); letter-spacing: -0.06em; line-height: 1; display: block; }
.error-404__title { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); color: var(--clr-primary); margin-bottom: var(--sp-5); }
.error-404__desc { font-size: var(--text-lg); color: var(--clr-text-secondary); margin-bottom: var(--sp-10); }
.error-404__actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ─── Animations ──────────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--trans-slower), transform var(--trans-slower);
}
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

@keyframes heroGlowPulse {
  0%   { opacity: 0.15; transform: scale(1); }
  100% { opacity: 0.3;  transform: scale(1.15); }
}
@keyframes heroOrbitFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-20px) translateX(10px); }
  66%       { transform: translateY(10px) translateX(-15px); }
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(16,185,129,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(16,185,129,0.0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0);   transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1);   transform-origin: top;    opacity: 1; }
  100% { transform: scaleY(1);   transform-origin: bottom; opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* ─── Responsive Design ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__container { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .hero__visual { display: none; }
  .product-showcase-card { grid-template-columns: 1fr; }
  .product-showcase-card--reverse { direction: ltr; }
  .product-showcase-card__visual { max-width: 480px; margin-inline: auto; }
  .booking-section__layout { grid-template-columns: 1fr; }
  .booking-section__intro { max-width: 720px; text-align: center; margin-inline: auto; }
  .booking-section__intro .section-desc { margin-inline: auto; }
  .booking-section__signals { justify-content: center; }
  .contact-page-layout { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__nav { grid-template-columns: repeat(2, 1fr); }
  .faq-section__layout { grid-template-columns: 1fr; }
  .faq-section__header { position: static; }
  .newsletter-section__inner { grid-template-columns: 1fr; }
  .featured-projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Mobile Nav */
  .primary-nav {
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--clr-surface);
    padding: var(--sp-8) var(--container-px);
    transform: translateX(100%);
    transition: transform var(--trans-base);
    z-index: var(--z-overlay);
    overflow-y: auto;
    border-top: 1px solid var(--clr-border);
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav__list { flex-direction: column; align-items: stretch; gap: var(--sp-1); }
  .nav-link { padding: var(--sp-4); font-size: var(--text-base); }
  .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--clr-bg);
    border-radius: var(--radius-md);
    opacity: 1;
    visibility: visible;
    padding-left: var(--sp-4);
  }
  .has-dropdown:hover .sub-menu { transform: none; }
  .mobile-menu-toggle { display: flex; }
  .header-phone__number { display: none; }

  /* Header actions compact */
  .site-header__actions { gap: var(--sp-2); }
  .site-header__inner { gap: var(--sp-4); }

  /* Sticky CTA */
  .sticky-cta { bottom: var(--sp-3); right: var(--sp-3); left: var(--sp-3); border-radius: var(--radius-xl); }
  .sticky-cta__text { display: block; }

  /* Various layouts */
  .form-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__trust { gap: var(--sp-3); }
  .hero__trust-divider { display: none; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .newsletter-form__group { flex-direction: column; }
  .site-footer__nav { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .products-showcase { gap: var(--sp-8); }
  .booking-card__scheduler { min-height: 520px; }
  .booking-card__scheduler iframe { min-height: 500px; }
  .booking-card__fallback { min-height: 440px; }
}

@media (max-width: 480px) {
  :root { --container-px: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .site-footer__nav { grid-template-columns: 1fr; }
  .hero__headline { font-size: 2rem; }
  .booking-card__header { align-items: flex-start; }
  .booking-card__icon { width: 44px; height: 44px; }
  .booking-card__fallback-actions { flex-direction: column; align-items: stretch; }
  .booking-card__fallback-actions .btn { justify-content: center; white-space: normal; }
}

/* ─── Print ───────────────────────────────────────────────────────────────── */
@media print {
  .announcement-bar, .site-header, .sticky-cta, .newsletter-section, .site-footer { display: none; }
  body { font-size: 12pt; color: #000; background: #fff; }
  a::after { content: ' (' attr(href) ')'; font-size: 0.8em; }
}
