  :root {
    --bg-primary: #FAFAF8;
    --bg-secondary: #F5F5F2;
    --bg-tertiary: #EDEDE8;
    --text-primary: #0F0F0E;
    --text-secondary: #5F5E5A;
    --text-tertiary: #888780;
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.12);
    --border-strong: rgba(0, 0, 0, 0.15);
    --accent: #1D9E75;
    --accent-bright: #97C459;
    --accent-soft: #EAF3DE;
    --accent-soft-text: #3B6D11;
    --btn-primary-bg: #0F0F0E;
    --btn-primary-text: #FFFFFF;
    --card-bg: #FFFFFF;
    --invert-bg: #0F0F0E;
    --invert-text: #FFFFFF;
    --invert-text-muted: #B4B2A9;
    --invert-card: #1A1A1A;
  }

  html.dark {
    --bg-primary: #0A0A0A;
    --bg-secondary: #131313;
    --bg-tertiary: #1A1A1A;
    --text-primary: #F5F5F2;
    --text-secondary: #A8A8A0;
    --text-tertiary: #6B6B66;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.12);
    --border-strong: rgba(255, 255, 255, 0.18);
    --accent: #97C459;
    --accent-bright: #97C459;
    --accent-soft: rgba(151, 196, 89, 0.10);
    --accent-soft-text: #97C459;
    --btn-primary-bg: #F5F5F2;
    --btn-primary-text: #0A0A0A;
    --card-bg: #131313;
    --invert-bg: #131313;
    --invert-text: #F5F5F2;
    --invert-text-muted: #A8A8A0;
    --invert-card: #1F1F1F;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background 0.25s ease, color 0.25s ease;
  }

  a { text-decoration: none; color: inherit; }
  button { font-family: inherit; cursor: pointer; }

  .container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

  .nav {
    background: var(--bg-primary);
    border-bottom: 0.5px solid var(--border-subtle);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

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

  .wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: var(--text-primary);
  }

  .wordmark-dot { color: var(--accent); }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 6px;
    transition: color 0.15s ease, background 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
  }

  .nav-link svg {
    transition: transform 0.2s ease;
  }

  .dropdown {
    position: relative;
  }

  .dropdown.open .nav-link svg {
    transform: rotate(180deg);
  }

  .dropdown.open .nav-link {
    color: var(--text-primary);
    background: var(--bg-secondary);
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: var(--card-bg);
    border: 0.5px solid var(--border-medium);
    border-radius: 12px;
    padding: 8px;
    min-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 200;
  }

  html.dark .dropdown-menu {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .dropdown-item {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background 0.15s ease;
  }

  .dropdown-item:hover {
    background: var(--bg-secondary);
  }

  .dropdown-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2px;
  }

  .dropdown-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
  }

  .dropdown-item-time {
    font-size: 11px;
    color: var(--text-tertiary);
  }

  .dropdown-item-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  .dropdown-item-flagship {
    background: var(--bg-secondary);
    margin-top: 4px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-top: 0.5px solid var(--border-subtle);
    border-radius: 8px;
  }

  .dropdown-item-flagship .dropdown-item-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .dropdown-item-flagship .flagship-tag {
    font-size: 9px;
    font-weight: 500;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 2px 6px;
    border-radius: 999px;
    letter-spacing: 0.5px;
  }

  .mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 0.5px solid var(--border-medium);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-toggle:hover {
    background: var(--bg-secondary);
  }

  .mobile-menu {
    display: none;
    border-top: 0.5px solid var(--border-subtle);
    padding: 1rem 0;
  }

  .mobile-menu.open {
    display: block;
  }

  .mobile-menu-section-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
  }

  .mobile-menu-item {
    display: block;
    padding: 10px 0;
    border-radius: 6px;
  }

  .mobile-menu-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
  }

  .mobile-menu-item-desc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
  }

  .scarcity-text {
    font-size: 12px;
    color: var(--text-secondary);
  }

  .theme-toggle {
    background: transparent;
    border: 0.5px solid var(--border-medium);
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
  }

  .theme-toggle:hover { background: var(--bg-secondary); }

  .theme-toggle svg { color: var(--text-primary); }

  .btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: transform 0.1s ease, opacity 0.15s ease;
    border: none;
    display: inline-block;
  }

  .btn-primary:hover { opacity: 0.85; }
  .btn-primary:active { transform: scale(0.97); }

  .btn-primary-lg {
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
  }

  .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 8px;
    border: 0.5px solid var(--border-strong);
    transition: background 0.15s ease;
    display: inline-block;
  }

  .btn-secondary:hover { background: var(--bg-secondary); }

  .btn-accent {
    background: var(--accent-bright);
    color: #0F0F0E;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    border: none;
    transition: transform 0.1s ease, opacity 0.15s ease;
    display: inline-block;
  }

  .btn-accent:hover { opacity: 0.9; }
  .btn-accent:active { transform: scale(0.97); }

  .badge-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-soft-text);
    background: var(--accent-soft);
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
  }

  .eyebrow {
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
  }

  .section-header {
    font-size: clamp(28px, 4vw, 32px);
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 3rem;
  }

  .hero {
    padding: 5rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  }

  .hero h1 {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1.5px;
    max-width: 720px;
    margin: 1.5rem auto 1.5rem;
    color: var(--text-primary);
  }

  .hero h1 .accent { color: var(--accent); }

  .hero-sub {
    font-size: clamp(16px, 1.8vw, 18px);
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 2.5rem;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-fineprint {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 1.5rem;
  }

  .section { padding: 4rem 0; }
  .section-white { background: var(--bg-primary); }
  .section-tinted { background: var(--bg-secondary); }

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

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

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 880px;
    margin: 0 auto 12px;
  }

  .problem-card {
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 0.5px solid var(--border-subtle);
  }

  .problem-num {
    width: 28px;
    height: 28px;
    background: var(--accent-soft);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--accent-soft-text);
    font-weight: 500;
  }

  .problem-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
  }

  .problem-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .service-sub {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    margin: -2.5rem 0 3rem;
  }

  .service-card {
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 0.5px solid var(--border-subtle);
    transition: border-color 0.15s ease, transform 0.15s ease;
  }

  .service-card:hover {
    border-color: var(--border-medium);
  }

  .service-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
  }

  .service-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
  }

  .service-time {
    font-size: 12px;
    color: var(--text-secondary);
  }

  .service-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .service-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
  }

  .service-price-standard {
    color: var(--text-tertiary);
    font-weight: 400;
    font-size: 12px;
  }

  .flagship-wrap {
    max-width: 880px;
    margin: 0 auto;
  }

  .flagship-card {
    padding: 1.75rem;
    background: var(--invert-card);
    border-radius: 12px;
    position: relative;
    border: 0.5px solid var(--border-subtle);
  }

  .flagship-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 500;
    color: var(--accent-bright);
    background: rgba(151, 196, 89, 0.12);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.5px;
  }

  .flagship-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
  }

  .flagship-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--invert-text);
  }

  .flagship-time {
    font-size: 12px;
    color: var(--invert-text-muted);
    margin-right: 80px;
  }

  .flagship-desc {
    font-size: 13px;
    color: var(--invert-text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    max-width: 600px;
  }

  .flagship-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-bright);
  }

  .step-num {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .step-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
  }

  .step-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .case-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 0.5px solid var(--border-subtle);
  }

  .case-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
  }

  .case-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    margin-bottom: 4px;
    text-transform: uppercase;
  }

  .case-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
  }

  .case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
  }

  .metric-num {
    font-size: 22px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 2px;
  }

  .metric-label {
    font-size: 12px;
    color: var(--text-secondary);
  }

  .why-card {
    padding: 1.5rem;
    border-left: 2px solid var(--accent);
  }

  .why-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
  }

  .why-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .founding-section {
    padding: 5rem 2rem;
    background: var(--invert-bg);
    color: var(--invert-text);
    text-align: center;
  }

  .founding-inner { max-width: 720px; margin: 0 auto; }

  .founding-section .badge-pill {
    color: var(--accent-bright);
    background: rgba(151, 196, 89, 0.12);
    margin-bottom: 1.5rem;
  }

  .founding-section h2 {
    font-size: clamp(32px, 5vw, 40px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: var(--invert-text);
  }

  .founding-section h2 .accent { color: var(--accent-bright); }

  .founding-text {
    font-size: 16px;
    color: var(--invert-text-muted);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 2rem;
  }

  .founding-text strong { color: var(--invert-text); font-weight: 500; }

  .dot-tracker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }

  .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2C2C2A;
    border: 1px solid #444441;
  }

  .dot.filled {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
  }

  .dot-label {
    font-size: 13px;
    color: var(--invert-text-muted);
    margin-left: 8px;
  }

  .faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 0.5px solid var(--border-subtle);
  }

  .faq-q {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
  }

  .faq-a {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .final-cta {
    padding: 5rem 0;
    text-align: center;
    background: var(--bg-secondary);
  }

  .final-cta h2 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 1.25rem;
  }

  .final-cta h2 .accent { color: var(--accent); }

  .final-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
  }

  .footer {
    padding: 2rem 0;
    background: var(--bg-primary);
    border-top: 0.5px solid var(--border-subtle);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-left {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 13px;
    color: var(--text-tertiary);
  }

  .footer-right {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-secondary);
  }

  .footer-right a:hover { color: var(--text-primary); }

  .beyond-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .beyond-card {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 0.5px solid var(--border-subtle);
    transition: border-color 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .beyond-card:hover {
    border-color: var(--border-medium);
  }

  .beyond-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
  }

  .beyond-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 0.5rem;
  }

  .beyond-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .beyond-list {
    list-style: none;
    margin-bottom: 1.5rem;
  }

  .beyond-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .beyond-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  .beyond-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    padding-top: 1rem;
    border-top: 0.5px solid var(--border-subtle);
    transition: color 0.15s ease;
  }

  .beyond-cta:hover {
    color: var(--accent);
  }

  .beyond-cta-arrow {
    transition: transform 0.15s ease;
  }

  .beyond-card:hover .beyond-cta-arrow {
    transform: translateX(3px);
  }

  @media (max-width: 768px) {
    .container { padding: 0 1.25rem; }
    .scarcity-text { display: none; }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }
    .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
    .beyond-grid { grid-template-columns: 1fr; }
    .case-row { grid-template-columns: 1fr; gap: 16px; }
    .case-metrics { grid-template-columns: 1fr; }
    .nav-right { gap: 8px; }
    .hero { padding: 3rem 0 3rem; }
    .section { padding: 3rem 0; }
    .founding-section { padding: 3rem 1.25rem; }
    .final-cta { padding: 3rem 0; }
    .flagship-time { margin-right: 0; }
    .service-sub { margin-top: -2rem; }
  }

  @media (max-width: 480px) {
    .hero-ctas { flex-direction: column; }
    .hero-ctas a { width: 100%; }
  }

  /* Denver page specific */
  .local-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .local-trust-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 0.5px solid var(--border-subtle);
  }

  .local-trust-item {
    text-align: center;
  }

  .local-trust-item strong {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
  }

  .local-trust-item span {
    font-size: 12px;
    color: var(--text-secondary);
  }

  .local-area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .local-area-chip {
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border: 0.5px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: 999px;
  }

  .local-contact-box {
    max-width: 520px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 0.5px solid var(--border-medium);
    border-radius: 12px;
    text-align: center;
  }

  .local-phone {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.5px;
  }

  /* ============================================
     HOVER MOTION — subtle lift, glow, and accent
     Added site-wide for cards and interactive elements
     ============================================ */

  /* Service cards: lift + shadow + accent border */
  .service-card {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    will-change: transform;
  }
  .service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  html.dark .service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
  }

  /* Problem cards: lift + shadow */
  .problem-card {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  }
  .problem-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  }
  html.dark .problem-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }

  /* Beyond AI cards: stronger lift (they're bigger feature cards) */
  .beyond-card {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
  }
  .beyond-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
  }
  html.dark .beyond-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    border-color: var(--accent);
  }

  /* Why-moose cards: brighten the left accent bar + slide */
  .why-card {
    transition: transform 0.18s ease, border-left-width 0.18s ease;
    border-left: 2px solid var(--accent);
  }
  .why-card:hover {
    transform: translateX(4px);
    border-left-width: 4px;
  }

  /* FAQ items: subtle background lift + accent border */
  .faq-item {
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .faq-item:hover {
    transform: translateY(-2px);
    border-color: var(--border-medium);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }
  html.dark .faq-item:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }

  /* Flagship card: gentle lift + green glow (it's the hero offer) */
  .flagship-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .flagship-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(29, 158, 117, 0.20);
  }

  /* Denver service-area chips: pop + accent on hover */
  .local-area-chip {
    transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }
  .local-area-chip:hover {
    transform: translateY(-2px) scale(1.04);
    border-color: var(--accent);
    color: var(--text-primary);
  }

  /* Buttons: a touch of lift so they feel clickable */
  .btn-primary, .btn-accent {
    transition: transform 0.12s ease, opacity 0.15s ease, box-shadow 0.15s ease;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(151, 196, 89, 0.35);
  }

  /* Respect users who prefer reduced motion — accessibility */
  @media (prefers-reduced-motion: reduce) {
    .service-card, .problem-card, .beyond-card, .why-card,
    .faq-item, .flagship-card, .local-area-chip,
    .btn-primary, .btn-accent {
      transition: none;
    }
    .service-card:hover, .problem-card:hover, .beyond-card:hover,
    .why-card:hover, .faq-item:hover, .flagship-card:hover,
    .local-area-chip:hover, .btn-primary:hover, .btn-accent:hover {
      transform: none;
    }
  }

  /* ============================================
     GET STARTED PAGE — application form styles
     ============================================ */

  .form-wrap {
    max-width: 640px;
    margin: 0 auto;
  }

  .form-intro {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .application-form {
    background: var(--card-bg);
    border: 0.5px solid var(--border-medium);
    border-radius: 16px;
    padding: 2rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
  }

  .form-label .optional {
    color: var(--text-tertiary);
    font-weight: 400;
  }

  .form-input,
  .form-textarea,
  .form-select {
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 0.5px solid var(--border-medium);
    border-radius: 8px;
    padding: 11px 13px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .form-input::placeholder,
  .form-textarea::placeholder {
    color: var(--text-tertiary);
  }

  .form-input:focus,
  .form-textarea:focus,
  .form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }

  .form-textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.5;
  }

  .form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 3.75L5 6.25L7.5 3.75' stroke='%23888780' stroke-width='1.3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    cursor: pointer;
  }

  .form-file {
    width: 100%;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-primary);
    border: 0.5px dashed var(--border-medium);
    border-radius: 8px;
    padding: 11px 13px;
    cursor: pointer;
  }

  .form-file::file-selector-button {
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 0.5px solid var(--border-medium);
    border-radius: 6px;
    padding: 6px 12px;
    margin-right: 12px;
    cursor: pointer;
  }

  .form-hint {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 5px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-submit {
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--btn-primary-text);
    background: var(--btn-primary-bg);
    border: none;
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  }

  .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .form-submit:active {
    transform: scale(0.99);
  }

  .form-footer-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 1rem;
  }

  .steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 720px;
    margin: 0 auto 3rem;
  }

  .step-card {
    text-align: center;
    padding: 1.25rem;
  }

  .step-card-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-soft-text);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
  }

  .step-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
  }

  .step-card-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  @media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .steps-row { grid-template-columns: 1fr; }
    .application-form { padding: 1.5rem; }
  }
