
  :root {
    --blue-deep: #0f3b63;
    --blue-soft: #eef2ff;
    --blue-soft-2: #f5f7ff;
    --orange: #f97316;
    --border: #e5e7eb;
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg: #f3f4f6;
    --radius-card: 16px;
    --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.16);
    --max-width: 1200px;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at 0 0, #e0ecff 0, #f9fafb 40%, #e5e7eb 100%);
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* HEADER */

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  }

  .header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .brand-mark {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #60a5fa 0, #0f3b63 45%, #020617 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eff6ff;
    font-weight: 700;
    font-size: 1.1rem;
  }

  .brand-text-main {
    font-weight: 600;
    font-size: 0.98rem;
  }

  .brand-text-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
  }

  /* NAV */

  .nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .nav-link {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    color: var(--text-muted);
  }

  .nav-link:hover {
    background: var(--blue-soft);
    color: var(--text-main);
    text-decoration: none;
  }

  .nav-item { position: relative; }

  .nav-link-services {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
  }

  .nav-link-services::after {
    content: "▾";
    font-size: 0.7rem;
  }

  .nav-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 280px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
    padding: 0.5rem 0.25rem;
    z-index: 60;
  }

  .nav-item:hover .nav-dropdown {
    display: grid;
  }

  .nav-dropdown-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.1rem;
    padding: 0.2rem;
  }

  .nav-dropdown a {
    padding: 0.4rem 0.75rem;
    border-radius: 10px;
    font-size: 0.84rem;
    color: var(--text-main);
  }

  .nav-dropdown a span {
    display: block;
    font-size: 0.74rem;
    color: var(--text-muted);
  }

  .nav-dropdown a:hover {
    background: var(--blue-soft-2);
    text-decoration: none;
  }

  /* HEADER CTA */

  .header-cta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .header-phone { color: var(--text-muted); }
  .header-phone strong { color: var(--text-main); }

  .btn-small {
    font-size: 0.78rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid #facc15;
    background: linear-gradient(120deg, var(--orange), #facc15);
    color: #111827;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.35);
  }

  .btn-small:hover {
    text-decoration: none;
    filter: brightness(1.05);
  }

  /* PAGE WRAPPER */

  .page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.5rem 3.25rem;
  }

  /* HERO – SIMPLE */

  .hero {
    max-width: var(--max-width);
    margin: 0 auto 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-main {
    position: relative;
    overflow: hidden;
    padding: 2rem 2.2rem 2.2rem;
    border-radius: 24px;
    background: radial-gradient(circle at 0 0, #eff6ff 0, #ffffff 55%, #e0ecff 100%);
    box-shadow: var(--shadow-card);
    border: 1px solid #e0e7ff;
    width: 100%;
    text-align: left;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 0 0, rgba(191, 219, 254, 0.65) 0, transparent 55%),
      linear-gradient(to right, rgba(226, 232, 240, 0.7) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(226, 232, 240, 0.7) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    opacity: 0.6;
    pointer-events: none;
  }

  .hero-main-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
  }

  .breadcrumb {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
  }

  .breadcrumb a { color: var(--text-muted); }

  .page-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #2563eb;
    margin-bottom: 0.35rem;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.3;
    margin: 0 0 0.6rem;
    font-weight: 700;
    color: #111827;
  }

  .hero-lede {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-top: 0.7rem;
    margin-bottom: 0.4rem;
  }

  .hero-meta {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
  }

  .hero-meta strong { color: var(--text-main); }

  .hero-links {
    margin-top: 0.8rem;
    font-size: 0.9rem;
  }

  .hero-links-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .hero-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .hero-links-list a {
    font-size: 0.83rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
  }

  .hero-links-list a:hover {
    background: var(--blue-soft);
    text-decoration: none;
  }

  /* GENERIC SECTIONS */

  .section {
    margin-bottom: 2.25rem;
  }

  .section-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 1.75rem 1.9rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(226, 232, 240, 0.9);
  }

  .section-title {
    font-size: 1.25rem;
    margin: 0 0 0.9rem;
    text-align: left;
  }

  .section-body {
    font-size: 0.96rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .section-body h2,
  .section-body h3 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-top: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .section-body p {
    margin: 0 0 0.7rem;
  }

  .section-body ul {
    margin: 0.4rem 0 0.8rem 1.3rem;
    padding: 0;
  }

  .section-body li {
    margin-bottom: 0.35rem;
  }

  .service-anchor-title {
    scroll-margin-top: 110px;
  }

  .service-link-inline {
    font-size: 0.86rem;
    font-weight: 600;
    color: #2563eb;
  }

  /* CTA BANNER */

  .cta-banner {
    margin-bottom: 2.25rem;
  }

  .cta-inner {
    border-radius: 20px;
    padding: 1.4rem 1.6rem;
    background: radial-gradient(circle at 0 0, #1d4ed8 0, #0f172a 55%);
    color: #e5e7eb;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 1rem;
    align-items: center;
  }

  .cta-inner h2 {
    margin: 0 0 0.4rem;
    font-size: 1.25rem;
  }

  .cta-inner p {
    margin: 0;
    font-size: 0.9rem;
  }

  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
  }

  .cta-phone-big {
    font-size: 1rem;
    font-weight: 700;
    color: #facc15;
  }

  /* FOOTER */

  footer {
    border-top: 1px solid rgba(226, 232, 240, 0.95);
    background: #ffffff;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    color: #6b7280;
  }

  .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  /* RESPONSIVE */

  @media (max-width: 840px) {
    .header-inner {
      flex-wrap: wrap;
      align-items: flex-start;
    }
    .nav {
      order: 3;
      width: 100%;
      justify-content: flex-start;
      flex-wrap: wrap;
    }
    .header-cta {
      margin-left: auto;
    }
    .cta-inner {
      grid-template-columns: minmax(0, 1fr);
    }
    .cta-buttons {
      justify-content: flex-start;
    }
  }

  @media (max-width: 640px) {
    .page { padding-inline: 1.1rem; }
    .hero-main { padding: 1.6rem 1.3rem 1.8rem; }
    .section-card { padding: 1.5rem 1.3rem; }
  }
  

        /* THEME-COMPATIBLE ENHANCEMENTS */
        .theme-compatible {
            /* Will inherit from your theme */
            margin: 2rem 0;
            padding: 1.5rem;
        }
        
        .theme-cta {
            /* Will inherit from your theme */
            text-align: center;
            margin: 2rem 0;
        }
        
        /* Mobile fixes that don't override colors */
        @media (max-width: 768px) {
            .conversion-form-section > div {
                display: block !important;
            }
            
            .image-grid, .service-grid {
                grid-template-columns: 1fr !important;
            }
            
            /* Ensure forms are usable on mobile */
            input, select, textarea {
                font-size: 16px !important; /* Prevents iOS zoom */
                max-width: 100%;
            }
        }
        
        /* Lazy loading - doesn't affect theme */
        img[loading="lazy"] {
            /* Your theme handles this */
        }
        
