/* Buckeye Comfort — shared design system (extracted from index) */

:root {
  --brand-primary: #f97316;
  --brand-primary-dark: #ea6a00;
  --brand-primary-tint: #fff5ee;
  --brand-primary-deep: #92400e;
  --brand-accent: #166534;
  --brand-accent-light: #4ade80;
  --brand-accent-tint: #f0fdf4;
  --brand-dark: #0a1628;
}

/* Hero full-bleed fix */
html, body { margin: 0; padding: 0; overflow-x: hidden; }

.hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center top; }

/* ── Mobile overflow guard ── */
  *, *::before, *::after { box-sizing: border-box; }

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

/* Button text alignment */
  .btn, .btn-primary, .btn-secondary, .cta-btn, .nav-cta, button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

:root {
    --orange: var(--brand-primary);
    --orange-dark: var(--brand-primary-dark);
    --black: #0F0F0F;
    --dark: #1A1A1A;
    --mid: #3D3D3D;
    --muted: #6B6B6B;
    --border: #E5E5E5;
    --light-bg: #F7F7F7;
    --white: #FFFFFF;
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  }

html { scroll-behavior: smooth; overflow-x: hidden; }

body { font-family: var(--font); color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; margin: 0; padding: 0; }

/* ── CONTAINER — constrains content inside full-bleed sections ── */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 24px;
  }

@media (min-width: 1024px) {
    .container { padding: 0 48px; }
  }

/* ── UTILITY BAR ── */
  /* ── FIXED HEADER WRAPPER — util-bar + nav stacked, zero gap ── */
  #site-header {
    position: fixed;
    top: 0;
    left: 0; right: 0;
    z-index: 9998;
    background: var(--black);
  }

.util-bar {
    position: relative;
    background: var(--black);
    padding: 10px 16px;
    font-size: 13px;
    color: #999;
    text-align: center;
    letter-spacing: 0.02em;
  }

.util-bar span { color: var(--orange); font-weight: 600; }

.util-bar a { color: #ccc; text-decoration: none; margin: 0 12px; white-space: nowrap; }

.util-bar a:hover { color: var(--white); }

/* ── NAV ── */
  nav {
    position: relative;
    top: auto;
    left: auto; right: auto;
    z-index: 9997;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0F0F0F;
    border-bottom: none;
  }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.03em;
    z-index: 201;
  }

.nav-logo .dot {
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
  }

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }

.nav-links a:hover { color: var(--white); }

/* Services dropdown */
  .nav-dropdown { position: relative; }

.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255,255,255,0.6);
    transition: transform 0.2s;
  }

.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.nav-drop-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
    border: 1px solid var(--border);
  }

.nav-dropdown.open .nav-drop-menu { display: block; }

.nav-drop-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black) !important;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
  }

.nav-drop-menu a:hover { background: var(--light-bg); color: var(--orange) !important; }

.nav-drop-menu a:last-child { border-top: 1px solid #F0F0F0; margin-top: 4px; padding-top: 12px; }

.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

.nav-cta-arrow {
    width: 22px; height: 22px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
  }

/* Hamburger */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 201;
  }

.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.25s;
  }

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

.nav-hamburger.open span:nth-child(2) { opacity: 0; }

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

/* Mobile menu drawer */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 199;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 80px 32px 40px;
  }

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

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    text-align: center;
    letter-spacing: -0.02em;
  }

.mobile-menu .mobile-cta {
    margin-top: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    border-bottom: none;
    width: auto;
  }

.mobile-menu .mobile-phone {
    font-size: 20px;
    color: rgba(255,255,255,0.55);
    border-bottom: none;
    margin-top: 12px;
  }

/* ── HERO — full-bleed: breaks out of any container max-width ── */
  .hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 88vh;
    min-height: 580px;
    padding-top: 108px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }

.hero-img {
    position: absolute;
    inset: 0;
    background: url('/images/hvac-tech-outdoor.webp') center top/cover no-repeat;
    filter: brightness(0.55);
  }

.hero-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  }

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 24px 40px;
    max-width: 700px;
    width: 100%;
  }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

.hero-badge .badge-dot {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

.hero h1 {
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }

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

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 520px;
  }

.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-primary .arrow-circle {
    width: 26px; height: 26px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
  }

.btn-ghost {
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 14px 26px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
  }

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

/* Hero social proof */
  .hero-proof {
    position: absolute;
    bottom: 40px;
    right: 24px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 16px;
    border-radius: 16px;
  }

.hero-proof-avatars { display: flex; }

.hero-proof-avatars span {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--muted);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    margin-left: -8px;
  }

.hero-proof-avatars span:first-child { margin-left: 0; }

.hero-proof-text { font-size: 12px; color: var(--white); }

.hero-proof-text strong { display: block; font-weight: 700; font-size: 13px; }

.hero-proof-stars { color: var(--orange); font-size: 10px; }

/* ── CLIENT LOGO BAR ── */
  .logo-bar {
    background: var(--light-bg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
  }

.logo-bar-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    padding-right: 24px;
    border-right: 1px solid var(--border);
    margin-right: 24px;
    flex-shrink: 0;
  }

.logo-bar-items {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: nowrap;
  }

.logo-item {
    font-size: 12px;
    font-weight: 700;
    color: #B0B0B0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
  }

/* ── SECTION TABS ── */
  .section-tabs {
    padding: 40px 24px 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

.tab-pills { display: flex; gap: 8px; flex-wrap: wrap; }

.tab-pill {
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border);
    color: var(--muted);
    background: var(--white);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }

.tab-pill.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
  }

.tab-pill:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
  }

.section-tagline {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

/* ── SERVICES ── */
  .services-section { padding: 24px 0 56px; }

.section-heading {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.1;
    max-width: 480px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

.service-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }

.service-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
  }

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  }

.service-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

.service-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }

.service-card-name span {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    margin-top: 3px;
  }

.service-arrow {
    width: 32px; height: 32px;
    background: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.2s;
  }

.service-card:hover .service-arrow { transform: rotate(45deg); }

/* ── WHY US ── */
  .why-section {
    background: var(--light-bg);
    padding: 56px 0;
  }

.why-header {
    text-align: center;
    margin-bottom: 36px;
  }

.why-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }

.why-section .section-heading { text-align: center; max-width: 100%; }

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

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
  }

.feature-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

.feature-card.highlight {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
  }

.feature-icon {
    width: 48px; height: 48px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
  }

.feature-card.highlight .feature-icon { background: var(--orange); }

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }

.feature-card.highlight h3 { color: var(--white); }

.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.feature-card.highlight p { color: rgba(255,255,255,0.65); }

/* ── STATS BAND ── */
  .stats-band { position: relative; overflow: hidden; }

.stats-band-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: brightness(0.45);
  }

.stats-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 0;
  }

.stats-bar {
    background: var(--orange);
    width: 100%;
    padding: 20px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
  }

.stat-divider { display: none; }

.stat-item { text-align: center; }

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
  }

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    margin-top: 4px;
  }

/* ── TESTIMONIALS ── */
  .testimonials-section { padding: 56px 0; background: var(--white); }

.testimonials-header { text-align: center; margin-bottom: 36px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

.testimonial-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
  }

.testimonial-stars { color: var(--orange); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }

.testimonial-text { font-size: 15px; line-height: 1.65; color: var(--mid); margin-bottom: 16px; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0;
  }

.author-name { font-size: 14px; font-weight: 700; color: var(--black); }

.author-location { font-size: 12px; color: var(--muted); }

/* ── SERVICE TYPES (dark) ── */
  .types-section { background: var(--dark); padding: 56px 0; }

.types-header { margin-bottom: 28px; }

.types-header .section-heading { color: var(--white); max-width: 100%; }

.types-header p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; margin-top: 12px; }

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

.type-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
  }

.type-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    filter: brightness(0.5);
    transition: filter 0.3s;
  }

.type-card:hover .type-card-bg { filter: brightness(0.35); }

.type-card-content {
    position: absolute;
    inset: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

.type-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: fit-content;
  }

.type-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

/* ── CTA ── */
  .cta-section {
    background: var(--black);
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

.cta-left { max-width: 100%; }

.cta-label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 14px;
  }

.cta-heading {
    font-size: clamp(28px, 7vw, 52px);
    font-weight: 800; color: var(--white);
    letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
  }

.cta-sub { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; }

.cta-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }

.cta-phone {
    font-size: 28px; font-weight: 800; color: var(--white);
    text-decoration: none; letter-spacing: -0.02em;
    display: flex; align-items: center; gap: 12px;
  }

.cta-phone:hover { color: var(--orange); }

.cta-phone-icon {
    width: 44px; height: 44px;
    background: var(--orange);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
  }

.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-orange-solid {
    background: var(--orange); color: var(--white);
    padding: 14px 26px; border-radius: 100px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    transition: background 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }

.btn-orange-solid:hover { background: var(--orange-dark); }

.btn-white-outline {
    border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
    padding: 14px 26px; border-radius: 100px;
    font-size: 15px; font-weight: 600; text-decoration: none;
    transition: border-color 0.2s;
  }

.btn-white-outline:hover { border-color: var(--white); }

/* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 40px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 32px;
  }

.footer-brand { max-width: 280px; }

.footer-logo {
    font-size: 17px; font-weight: 800; color: var(--white);
    letter-spacing: -0.02em; margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
  }

.footer-logo .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }

.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.footer-col h4 {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 14px;
  }

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
    font-size: 14px; color: rgba(255,255,255,0.65);
    text-decoration: none; transition: color 0.2s;
  }

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

.footer-badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: rgba(255,255,255,0.4);
  }

.footer-badge strong { color: var(--orange); }

/* ── DEMO BANNER ── */
  .demo-banner {
    background: #FFF7ED;
    border-bottom: 1px solid #FED7AA;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
    color: var(--brand-primary-deep);
    text-align: center;
    flex-wrap: wrap;
  }

.demo-banner .demo-tag {
    background: var(--brand-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }

.demo-banner a {
    color: #C2410C;
    font-weight: 600;
    text-decoration: underline;
    white-space: nowrap;
  }

.demo-banner a:hover { color: #9A3412; }

/* ── GROUNDWORK FEATURE CALLOUT ── */
  .gw-callout {
    background: #0F0F0F;
    padding: 80px 24px;
    color: #fff;
  }

.gw-callout-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

.gw-callout-header {
    text-align: center;
    margin-bottom: 56px;
  }

.gw-callout-eyebrow {
    display: inline-block;
    background: var(--brand-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
  }

.gw-callout-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
  }

.gw-callout-header p {
    font-size: 1.05rem;
    color: #999;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
  }

.gw-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }

@media (min-width: 640px) {
    .gw-features-grid { grid-template-columns: repeat(2, 1fr); }
  }

@media (min-width: 1024px) {
    .gw-features-grid { grid-template-columns: repeat(4, 1fr); }
  }

.gw-feature-card {
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
    border-radius: 12px;
    padding: 28px 24px;
    transition: border-color 0.2s;
  }

.gw-feature-card:hover { border-color: var(--brand-primary); }

.gw-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(249,115,22,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
  }

.gw-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
  }

.gw-feature-card p {
    font-size: 0.875rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 12px;
  }

.gw-feature-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

.gw-callout-cta {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #2A2A2A;
  }

.gw-callout-cta p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

.gw-callout-cta p strong { color: #fff; }

.gw-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

.btn-gw-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
  }

.btn-gw-primary:hover { background: var(--brand-primary-dark); }

.btn-gw-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid #3A3A3A;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

.btn-gw-secondary:hover { border-color: var(--brand-primary); color: var(--brand-primary); }

/* ── SERVICE CARDS AS LINKS ── */
  a.service-card { display: block; text-decoration: none; color: inherit; }

/* ── TYPE CARDS AS LINKS ── */
  a.type-card { display: block; text-decoration: none; color: inherit; }

/* hotspot circles removed */

  /* Bottom sheet system */
  #gw-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9994;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

#gw-sheet-backdrop.open { opacity: 1; pointer-events: auto; }

#gw-sheet {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: 100vw;
    max-width: 640px;
    height: 70vh;
    background: #0A0F1E;
    color: #fff;
    border-radius: 20px 20px 0 0;
    z-index: 9995;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 14px 24px 28px;
  }

#gw-sheet.open { transform: translate(-50%, 0); }

.gw-sheet-handle {
    width: 44px;
    height: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
    margin: 0 auto 12px;
    cursor: pointer;
    flex-shrink: 0;
  }

.gw-sheet-handle-area {
    padding: 6px 0 4px;
    cursor: pointer;
    flex-shrink: 0;
  }

.gw-sheet-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }

.gw-sheet-close:hover { background: rgba(255,255,255,0.16); }

.gw-sheet-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6FE5A3;
    background: rgba(111,229,163,0.1);
    padding: 5px 11px;
    border-radius: 100px;
    margin-bottom: 14px;
    flex-shrink: 0;
  }

.gw-sheet-headline {
    font-size: clamp(20px, 4.4vw, 26px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #fff;
    flex-shrink: 0;
  }

.gw-sheet-body {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.78);
    margin: 0 0 16px;
    flex-shrink: 0;
  }

.gw-sheet-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

.gw-sheet-bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,0.92);
  }

.gw-sheet-bullet svg {
    color: #6FE5A3;
    flex-shrink: 0;
    margin-top: 2px;
  }

@media (max-width: 768px) {
    #gw-sheet { max-width: 100vw; padding: 12px 20px 22px; }
    .gw-sheet-headline { font-size: 20px; }
    .gw-sheet-body { font-size: 13px; }
    .gw-sheet-bullet { font-size: 13px; }
  }

/* ── DEMO NOTICE ── */

  /* ══════════════════════════════════════
     TABLET — 640px+
  ══════════════════════════════════════ */
  @media (min-width: 640px) {
    .util-bar { font-size: 13px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(4, 1fr); }
    .footer-cols { grid-template-columns: repeat(3, 1fr); }
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  }

/* ══════════════════════════════════════
     DESKTOP — 1024px+
  ══════════════════════════════════════ */
  @media (min-width: 1024px) {
    nav { padding: 16px 48px; top: 0; }
    .nav-links { display: flex; }
    .nav-cta { display: flex; }
    .nav-hamburger { display: none; }

    .hero-content { padding: 0 48px 56px; }
    .hero-proof { right: 48px; bottom: 56px; }

    .logo-bar { padding: 20px 48px; }
    .logo-bar-label { padding-right: 32px; margin-right: 32px; }

    .section-tabs {
      padding: 56px 0 0;
      flex-direction: row;
      align-items: flex-end;
      justify-content: space-between;
    }
    .section-tagline { text-align: right; max-width: 340px; }

    .services-section { padding: 32px 0 64px; }
    .services-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .service-card { border-radius: 20px; }
    .service-card-body { padding: 20px; }
    .service-card-name { font-size: 17px; }
    .service-arrow { width: 36px; height: 36px; font-size: 16px; }

    .why-section { padding: 72px 0; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .feature-card { border-radius: 20px; padding: 32px; }

    .stats-band-img { height: 320px; }
    .stats-bar { padding: 24px 0; display: flex; justify-content: space-around; }
    .stat-divider { display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.3); }
    .stat-number { font-size: 36px; }

    .testimonials-section { padding: 72px 0; }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .testimonial-card { border-radius: 20px; padding: 28px; }

    .types-section { padding: 72px 0; }
    .types-header { display: flex; align-items: flex-end; justify-content: space-between; }
    .types-header .section-heading { max-width: 400px; }
    .types-header p { max-width: 320px; text-align: right; margin-top: 0; }
    .types-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .type-card { border-radius: 20px; height: 200px; }
    .type-card-content { padding: 24px; }
    .type-name { font-size: 22px; }

    .cta-section {
      padding: 80px 0;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
    .cta-left { max-width: 560px; }
    .cta-right { align-items: flex-start; }
    .cta-phone { font-size: 32px; }

    footer { padding: 48px 0 32px; }
    .footer-top { flex-direction: row; justify-content: space-between; gap: 48px; }
    .footer-cols { display: flex; gap: 64px; }
    .footer-bottom { flex-direction: row; }
  }

/* ══════════════════════════════════════
     MOBILE NAV — hide desktop nav items
  ══════════════════════════════════════ */
  @media (max-width: 1023px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
  }

/* Mobile hero proof — position below hero content, not floating right */
  @media (max-width: 639px) {
    .hero-proof {
      position: relative;
      bottom: auto; right: auto;
      margin: 0 24px 24px;
      align-self: flex-start;
    }
    .hero {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
    }
    .hero-content {
      padding: 0 20px 32px;
      max-width: 100%;
      box-sizing: border-box;
    }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      width: 100%;
    }
    .btn-primary, .btn-ghost {
      width: 100%;
      justify-content: center;
      text-align: center;
      padding: 16px 20px;
      font-size: 16px;
      box-sizing: border-box;
    }
    .hero h1 {
      font-size: clamp(32px, 9vw, 52px);
    }
    .hero-badge {
      font-size: 10px;
      padding: 5px 10px;
      max-width: 100%;
      white-space: normal;
      text-align: center;
    }
    /* Slim util-bar on mobile — hide secondary links, keep emergency line */
    .util-bar a { display: none; }
    .util-bar {
      padding: 7px 16px;
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }

/* ── "We Handle the Full System" — shared cross-service image cards ── */
.fullsystem-section { padding: 72px 24px; background: var(--light-bg); }
.fullsystem-section .container { max-width: 1200px; margin: 0 auto; }
.fullsystem-label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.fullsystem-heading { text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--black); margin: 0 0 40px; }
.fullsystem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.fullsystem-card { position: relative; height: 220px; border-radius: 14px; overflow: hidden; text-decoration: none; display: block; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.fullsystem-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .4s ease; }
.fullsystem-card:hover .fullsystem-card-img { transform: scale(1.06); }
.fullsystem-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,.88) 0%, rgba(10,22,40,.25) 55%, rgba(10,22,40,0) 100%); }
.fullsystem-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.fullsystem-card-name { color: #fff; font-weight: 700; font-size: 1.05rem; display: flex; flex-direction: column; gap: 4px; line-height: 1.25; }
.fullsystem-card-name span { font-weight: 400; font-size: .82rem; opacity: .85; }
.fullsystem-arrow { color: #fff; font-size: 1.2rem; flex-shrink: 0; transition: transform .2s, color .2s; }
.fullsystem-card:hover .fullsystem-arrow { transform: rotate(45deg); color: var(--orange); }
@media (max-width: 640px) { .fullsystem-grid { grid-template-columns: 1fr 1fr; } .fullsystem-card { height: 170px; } }
