  :root {
    --bg: #F3F4F6;
    --card: #FFFFFF;
    --text: #111827;
    --muted: #4B5563;
    --line: #E5E7EB;
    --primary: #2563EB; /* Blue */
    --primary2: #1D4ED8;
    --chip: #EEF2FF;
    --shadow: 0 10px 24px rgba(17, 24, 39, 0.10);
    --radius: 16px;
    --radius2: 22px;
    --max: 1120px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 64px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
  }

  .nav-logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
  }

  .nav-logo span { color: var(--primary); }

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

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

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

  .nav-cta {
    background: var(--primary);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

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

  /* HERO */
  .hero {
    padding: 120px 40px 80px;
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
  }

  .hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--chip);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }

  .hero-chip-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }

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

  .hero-title {
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }

  .hero-title .blue { color: var(--primary); }

  .hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
    font-weight: 400;
    margin-bottom: 36px;
    max-width: 500px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 48px;
  }

  .btn-primary {
    background: var(--primary);
    color: white;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--primary2); transform: translateY(-2px); box-shadow: var(--shadow); }

  .btn-ghost {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
  }

  .btn-ghost:hover { gap: 10px; }

  .hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
  }

  .trust-check {
    width: 18px;
    height: 18px;
    background: var(--chip);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary);
  }

  /* HERO FORM CARD */
  .hero-form {
    background: var(--card);
    border-radius: var(--radius2);
    padding: 36px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .hf-top {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
  }

  .hf-chip {
    display: inline-block;
    background: var(--chip);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
  }

  .hf-top h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
    margin-bottom: 6px;
  }

  .hf-top p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  .fg {
    margin-bottom: 12px;
  }

  .fg label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 5px;
    letter-spacing: 0.2px;
  }

  .fg input,
  .fg select,
  .fg textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: none;
  }

  .fg input::placeholder, .fg textarea::placeholder { color: #9CA3AF; }

  .fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--card);
  }

  .fg select { cursor: pointer; color: var(--text); }

  .fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

  .hf-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: var(--radius);
    padding: 14px;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.2s;
    letter-spacing: 0.2px;
  }

  .hf-submit:hover { background: var(--primary2); transform: translateY(-1px); }

  .hf-note {
    font-size: 11px;
    color: #9CA3AF;
    text-align: center;
    margin-top: 10px;
  }

  /* SERVICES STRIP */
  .services-strip {
    background: var(--card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 40px;
  }

  .strip-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .strip-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9CA3AF;
    white-space: nowrap;
  }

  .strip-divider {
    width: 1px;
    height: 24px;
    background: var(--line);
    flex-shrink: 0;
  }

  .strip-items {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }

  .strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
  }

  /* SECTION SHARED */
  .section-wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 100px 40px;
  }

  .section-chip {
    display: inline-block;
    background: var(--chip);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .section-title .blue { color: var(--primary); }

  .section-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 400;
    max-width: 580px;
    margin-bottom: 56px;
  }

  /* SERVICES GRID */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .service-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
  }

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

  .service-icon {
    width: 44px;
    height: 44px;
    background: var(--chip);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
  }

  .service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
  }

  /* TIERS */
  .tiers-bg {
    background: var(--card);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .tiers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

  .tier-card.featured {
    background: var(--primary);
    border-color: var(--primary);
  }

  .tier-chip {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
  }

  .tier-card:not(.featured) .tier-chip {
    background: var(--chip);
    color: var(--primary);
  }

  .tier-card.featured .tier-chip {
    background: rgba(255,255,255,0.2);
    color: white;
  }

  .tier-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    line-height: 1.2;
    letter-spacing: -0.2px;
  }

  .tier-card.featured .tier-name {
    color: white;
    border-bottom-color: rgba(255,255,255,0.15);
  }

  .tier-setup {
    font-size: 12px;
    color: #9CA3AF;
    margin-bottom: 4px;
    font-weight: 500;
  }

  .tier-card.featured .tier-setup { color: rgba(255,255,255,0.5); }

  .tier-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 24px;
  }

  .tier-price span {
    font-size: 15px;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0;
  }

  .tier-card.featured .tier-price { color: white; }
  .tier-card.featured .tier-price span { color: rgba(255,255,255,0.6); }

  .tier-list {
    list-style: none;
    margin-bottom: 28px;
  }

  .tier-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 0;
    font-size: 13px;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    line-height: 1.5;
  }

  .tier-card.featured .tier-list li {
    color: rgba(255,255,255,0.75);
    border-bottom-color: rgba(255,255,255,0.1);
  }

  .tier-list li::before {
    content: '✓';
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
  }

  .tier-card.featured .tier-list li::before { color: rgba(255,255,255,0.7); }

  .tier-cta {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 13px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.2px;
  }

  .tier-card:not(.featured) .tier-cta {
    border: 1px solid var(--line);
    color: var(--text);
    background: var(--card);
  }

  .tier-card:not(.featured) .tier-cta:hover {
    border-color: var(--primary);
    color: var(--primary);
  }

  .tier-card.featured .tier-cta {
    background: white;
    color: var(--primary);
  }

  .tier-card.featured .tier-cta:hover {
    background: var(--chip);
  }

  /* INDUSTRIES */
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .industry-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .industry-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: left;
  }

  .industry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: rgba(37,99,235,0.2);
  }

  .industry-card:hover::after { transform: scaleX(1); }

  .industry-icon { font-size: 28px; margin-bottom: 14px; display: block; }

  .industry-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }

  .industry-card p {
    font-size: 12px;
    line-height: 1.65;
    color: var(--muted);
  }

  .industry-status {
    font-size: 11px;
    font-weight: 600;
    margin-top: 12px;
    display: block;
  }

  .industry-card.active .industry-status { color: var(--primary); }
  .industry-card:not(.active) .industry-status { color: #9CA3AF; }

  /* WHY SECTION */
  .why-bg {
    background: var(--text);
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .why-bg .section-chip {
    background: rgba(37,99,235,0.2);
    color: #93C5FD;
  }

  .why-bg .section-title { color: white; }
  .why-bg .section-sub { color: rgba(255,255,255,0.5); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: background 0.2s;
  }

  .why-card:hover { background: rgba(255,255,255,0.07); }

  .why-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 14px;
    font-family: 'Space Mono', monospace;
  }

  .why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .why-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
  }

  /* CONTACT SECTION */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: start;
  }

  .contact-left .section-title { margin-bottom: 16px; }

  .contact-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 40px;
  }

  .contact-detail {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .cd-icon {
    width: 40px;
    height: 40px;
    background: var(--chip);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .cd-label {
    font-size: 11px;
    font-weight: 600;
    color: #9CA3AF;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .cd-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
  }

  .contact-form-wrap {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 40px 36px;
    box-shadow: var(--shadow);
  }

  .contact-form-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.3px;
    margin-bottom: 6px;
  }

  .contact-form-wrap > p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
  }

  .contact-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: var(--radius);
    padding: 15px;
    cursor: pointer;
    margin-top: 6px;
    transition: all 0.2s;
    letter-spacing: 0.2px;
  }

  .contact-submit:hover { background: var(--primary2); transform: translateY(-1px); }

  .contact-note {
    font-size: 11px;
    color: #9CA3AF;
    text-align: center;
    margin-top: 10px;
  }

  /* FOOTER */
  footer {
    background: var(--text);
    padding: 56px 40px 36px;
  }

  .footer-top {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }

  .footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }

  .footer-logo span { color: #60A5FA; }

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

  .footer-cols {
    display: flex;
    gap: 56px;
  }

  .footer-col h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
  }

  .footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: white; }

  .footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

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

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

  .footer-domain {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(37,99,235,0.5);
    text-transform: uppercase;
  }

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: white; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-chip { animation: fadeUp 0.4s ease both; }
  .hero-title { animation: fadeUp 0.4s ease 0.07s both; }
  .hero-sub { animation: fadeUp 0.4s ease 0.14s both; }
  .hero-actions { animation: fadeUp 0.4s ease 0.2s both; }
  .hero-trust { animation: fadeUp 0.4s ease 0.26s both; }
  .hero-form { animation: fadeUp 0.4s ease 0.1s both; }

  @media (max-width: 768px) {
      .services-strip {
          padding: 20px 24px;
      }

      .strip-label,
      .strip-divider {
          display: none;
      }

      .strip-inner {
          justify-content: center;
          gap: 16px;
      }

      .strip-items {
          justify-content: center;
          gap: 16px 24px;
      }

    footer { padding: 40px 20px 28px; }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
  }
/* Mobile call/SMS icons — hidden on desktop */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-mobile-actions {
    display: none;
    align-items: center;
    gap: 0.25rem;
}
.nav-mobile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}
.nav-mobile-icon svg { width: 16px; height: 16px; }
.nav-mobile-icon:hover { border-color: var(--primary); color: var(--primary); }

/* Hamburger menu button — hidden on desktop, shown under the mobile breakpoint */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    background: none;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.15s;
}
.nav-hamburger:hover { border-color: var(--primary); }
.nav-hamburger span {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* The "Get Started" link duplicated inside the mobile panel — hidden on
   desktop since the regular .nav-cta button in the top bar covers that case */
.nav-cta-mobile { display: none; }

@media (max-width: 1000px) {
  nav { padding: 0 16px; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 20px 20px;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    max-height: calc(100vh - 64px);
    opacity: 1;
    pointer-events: auto;
    overflow-y: auto;
  }
  .nav-links a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-hamburger { display: flex; }
  .nav-right > .nav-cta { display: none; }
  .nav-cta-mobile {
    display: block;
    text-align: center;
    margin-top: 8px;
  }
  /* .nav-links a's color:var(--muted) has higher specificity (class+tag)
     than .nav-cta's color:white (class alone), so without this the CTA
     text renders dark/illegible on its own blue background inside the
     mobile panel. This compound selector safely wins over both. */
  .nav-links a.nav-cta,
  .nav-links a.nav-cta-mobile {
    color: white;
  }
  body.nav-open { overflow: hidden; }
  .nav-mobile-actions { display: flex; }
  .nav-logo img { height: 26px; width: auto; }
  .hero { grid-template-columns: 1fr; padding: 100px 20px 60px; gap: 40px; }
  .section-wrap { padding: 72px 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .services-strip { padding: 20px; }
  footer { padding: 48px 20px 28px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 12px; }
}

/* Anchor scroll offset for sticky nav */
#search, #services, #packages, #industries, #contact {
    scroll-margin-top: 72px;
}

.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

@media (max-width: 1000px) {
  .pricing-split {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOMEPAGE — NRV Hero, Intro, Pricing, Blog, Contact
   ============================================================ */

/* ── NRV HERO ───────────────────────────────────────── */
.nrv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.nrv-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/newrivervalley/images/hero.jpg');
    background-size: cover;
    background-position: center 30%;
    z-index: 0;
}
.nrv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,20,40,0.78) 0%, rgba(10,20,40,0.45) 60%, rgba(10,20,40,0.25) 100%);
    z-index: 1;
}
.nrv-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max);
    margin: 0 auto;
    padding: 140px 40px 80px;
    width: 100%;
}
.nrv-hero-region {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nrv-hero-region::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255,255,255,0.4);
}
.nrv-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    max-width: 640px;
}
.nrv-hero h1 em {
    font-style: italic;
    color: #93C5FD;
}
.nrv-hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    margin-bottom: 2.25rem;
}
.nrv-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.btn-outline-white {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 13px 26px;
    border-radius: var(--radius);
    transition: all 0.2s;
}
.btn-outline-white:hover { border-color: white; color: white; }
.nrv-towns {
    position: relative;
    z-index: 2;
    padding: 1rem 40px 1.5rem;
    max-width: var(--max);
    margin: 0 auto;
}
.nrv-towns-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.5rem;
}
.nrv-towns-list { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.nrv-town { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
.nrv-town::after { content: ' ·'; margin-left: 1rem; color: rgba(255,255,255,0.2); }
.nrv-town:last-child::after { display: none; }

/* ── HERO RIDGE EFFECT ──────────────────────────────────
   Replaces the photo background. Every color here is one
   already used elsewhere on the site — no new palette. */
.nrv-hero { background: #0A1428; }
.nrv-hero-ridge { position: absolute; left: 0; right: 0; bottom: 0; height: min(38%, 320px); z-index: 0; pointer-events: none; }
.nrv-hero-ridge svg { width: 100%; height: 100%; display: block; }
.nrv-hero-ridge-mobile { display: none; }

.nrv-scan {
    position: absolute; left: 50%; bottom: clamp(2.5rem, 6vw, 5rem);
    width: min(1400px, 180vw); aspect-ratio: 1; transform: translateX(-50%);
    z-index: 0; pointer-events: none; border-radius: 50%; overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 74%);
    mask-image: radial-gradient(circle at 50% 50%, #000 62%, transparent 74%);
}
.nrv-scan i {
    position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(37,99,235,.28) 0deg, rgba(37,99,235,.06) 26deg, rgba(37,99,235,0) 62deg);
    animation: nrv-spin 7s linear infinite;
}
@keyframes nrv-spin { to { transform: rotate(360deg); } }

.nrv-rings { position: absolute; left: 50%; bottom: clamp(2.5rem, 6vw, 5rem); z-index: 0; pointer-events: none; transform: translateX(-50%); }
.nrv-rings b {
    position: absolute; left: 0; top: 0; width: 24px; height: 24px; margin: -12px 0 0 -12px; border-radius: 50%;
    border: 1px solid rgba(147,197,253,.5); opacity: 0; animation: nrv-ripple 7s ease-out infinite;
}
.nrv-rings b:nth-child(2) { animation-delay: 2.33s; }
.nrv-rings b:nth-child(3) { animation-delay: 4.66s; }
@keyframes nrv-ripple { 0% { transform: scale(1); opacity: .7; } 70% { opacity: .1; } 100% { transform: scale(24); opacity: 0; } }

.nrv-pin {
    position: absolute; left: 50%; bottom: clamp(2.5rem, 6vw, 5rem); z-index: 1;
    width: 14px; height: 14px; margin: 0 0 -7px -7px; border-radius: 50%;
    background: #93C5FD; box-shadow: 0 0 0 4px rgba(37,99,235,.25), 0 0 24px 8px rgba(37,99,235,.5);
    animation: nrv-beat 7s ease-out infinite; pointer-events: none;
}
@keyframes nrv-beat { 0% { transform: scale(1.5); } 12% { transform: scale(1); } 100% { transform: scale(1); } }

.nrv-hero-town-labels { position: absolute; inset: auto 0 0 0; height: min(38%, 320px); z-index: 1; pointer-events: none; }
.nrv-hero-town-labels span {
    position: absolute; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    white-space: nowrap; color: rgba(255,255,255,0.32); animation: nrv-lightup 7s linear infinite;
}
.nrv-hero-town-labels span::before {
    content: ''; position: absolute; left: -11px; top: 50%; width: 4px; height: 4px; margin-top: -2px;
    border-radius: 50%; background: currentColor;
}
@keyframes nrv-lightup {
    0%, 100% { color: rgba(255,255,255,0.32); text-shadow: none; }
    4% { color: #93C5FD; text-shadow: 0 0 12px rgba(147,197,253,.75); }
    16% { color: rgba(255,255,255,0.32); text-shadow: none; }
}

@media (max-width: 700px) {
    .nrv-hero-ridge-desktop { display: none; }
    .nrv-hero-ridge-mobile { display: block; }
    .nrv-hero-town-labels span { font-size: 0.58rem; }
    .nrv-town-minor { display: none; }
    .nrv-towns { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .nrv-scan i, .nrv-rings b, .nrv-pin, .nrv-hero-town-labels span { animation: none; }
    .nrv-hero-town-labels span { color: #93C5FD; }
}

/* ── PORTFOLIO MARQUEE ──────────────────────────────── */
.port-marquee-wrap { overflow: hidden; width: 100%; }
.port-marquee-track { display: flex; width: max-content; animation: port-scroll linear infinite; }
.port-marquee-track:hover { animation-play-state: paused; }
.port-marquee-set { display: flex; gap: 1.5rem; padding: 0 0.75rem; }
@keyframes port-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.port-marquee-item { position: relative; display: block; flex: 0 0 auto; width: 320px; border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 1px solid var(--line); transition: transform 0.2s, box-shadow 0.2s; }
.port-marquee-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.port-marquee-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top; display: block; background: var(--chip); }
.port-marquee-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 0.6rem 0.9rem; font-size: 0.8rem; font-weight: 600; color: white; background: linear-gradient(0deg, rgba(0,0,0,0.65), rgba(0,0,0,0)); }
@media (prefers-reduced-motion: reduce) {
    .port-marquee-track { animation: none; }
    .port-marquee-wrap { overflow-x: auto; }
    .port-marquee-dup { display: none; }
}
@media (max-width: 600px) {
    .port-marquee-item { width: 220px; }
}

/* ── TRUST BAR ──────────────────────────────────────── */
.trust-bar { background: white; border-bottom: 1px solid var(--line); padding: 1rem 40px; }
.trust-bar-inner {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.trust-bar .trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 500; color: var(--muted); }
.trust-bar .trust-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

/* ── INTRO ──────────────────────────────────────────── */
.intro-section { background: white; padding: 80px 40px; border-bottom: 1px solid var(--line); }
.intro-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.intro-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--text); letter-spacing: -1px; line-height: 1.15; margin-bottom: 1rem; }
.intro-title em { font-style: italic; color: var(--primary); }
.intro-body { font-size: 0.95rem; line-height: 1.75; color: var(--muted); margin-bottom: 0.75rem; }
.intro-photo-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.intro-photo-wrap img { width: 100%; height: 380px; object-fit: cover; display: block; }
.area-photo-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 1rem; background: linear-gradient(transparent, rgba(0,0,0,0.6)); font-size: 0.72rem; color: rgba(255,255,255,0.7); font-style: italic; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-section { padding: 80px 40px; background: var(--bg); }
.pricing-section .section-wrap { padding: 0; max-width: var(--max); margin: 0 auto; }
.pricing-header { margin-bottom: 2.5rem; }
.pricing-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem; }
.pricing-title { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--text); letter-spacing: -1px; line-height: 1.1; margin-bottom: 0.6rem; }
.pricing-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.65; max-width: 560px; }
.site-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.site-pkg { background: white; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.site-pkg-pages { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.site-pkg-price { font-size: 2.2rem; font-weight: 800; color: var(--text); letter-spacing: -1.5px; line-height: 1; margin-bottom: 0.25rem; }
.site-pkg-note { font-size: 0.75rem; color: var(--muted); }
.pricing-lower { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.pricing-col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--line); }
.p-item { display: flex; justify-content: space-between; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid var(--line); gap: 0.5rem; }
.p-item:last-child { border-bottom: none; }
.p-item-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.p-item-desc { font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; }
.p-item-price { font-size: 0.9rem; font-weight: 700; color: var(--primary); white-space: nowrap; flex-shrink: 0; }
.p-item-included { font-size: 0.78rem; font-weight: 600; color: #16A34A; white-space: nowrap; flex-shrink: 0; }
.pricing-note { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 1rem; }

/* ── BLOG SECTIONS ───────────────────────────────────── */
.blog-section { padding: 72px 40px; border-top: 1px solid var(--line); }
.blog-section.alt { background: white; }
.blog-inner { max-width: var(--max); margin: 0 auto; }
.blog-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.blog-title { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: var(--text); letter-spacing: -0.5px; margin-bottom: 0.4rem; }
.blog-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-body { padding: 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-title { font-size: 0.9rem; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 0.4rem; }
.blog-card-excerpt { font-size: 0.78rem; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-card-more { font-size: 0.78rem; font-weight: 600; color: var(--primary); margin-top: 0.75rem; }
.blog-more-link { display: inline-block; margin-top: 1.5rem; font-size: 0.875rem; font-weight: 600; color: var(--text); text-decoration: none; border: 1.5px solid var(--line); padding: 0.55rem 1.4rem; border-radius: 4px; transition: all 0.2s; }
.blog-more-link:hover { border-color: var(--primary); color: var(--primary); }

/* ── CONTACT DARK ─────────────────────────────────────── */
.contact-section-wrap { padding: 80px 40px; background: var(--text); }
.contact-inner-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 500px; gap: 5rem; align-items: start; }
.contact-left-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #60A5FA; margin-bottom: 0.75rem; }
.contact-left h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: white; letter-spacing: -1px; line-height: 1.1; margin-bottom: 1rem; }
.contact-left p { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.contact-detail-dark { display: flex; gap: 0.875rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-detail-dark svg { width: 18px; height: 18px; color: #60A5FA; flex-shrink: 0; }
.cd-label-dark { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.cd-value-dark { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.cd-value-dark a { color: rgba(255,255,255,0.85); text-decoration: none; }

/* ── HOMEPAGE MOBILE ─────────────────────────────────── */
@media (max-width: 1000px) {
    .nrv-hero { justify-content: flex-start; }
    .nrv-hero-inner { padding: 120px 20px 60px; }
    .nrv-towns { padding: 0.75rem 20px 1.25rem; }
    .trust-bar { padding: 1rem 20px; }
    .intro-section { padding: 60px 20px; }
    .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro-photo-wrap img { height: 260px; }
    .pricing-section { padding: 60px 20px; }
    .site-packages { grid-template-columns: 1fr; }
    .pricing-lower { grid-template-columns: 1fr; }
    .blog-section { padding: 56px 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-section-wrap { padding: 60px 20px; }
    .contact-inner-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
    .nrv-hero h1 { font-size: 2rem; }
    .trust-bar-inner { gap: 1rem; }
    .site-packages { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}