  :root {
    /* Industrial welding palette — deeper steel + spark orange */
    --navy: #0E1B2E;
    --navy-light: #1A2B45;
    --blue: #2563EB;
    --blue-hover: #1D4ED8;
    --sky: #E8F1FE;
    --orange: #FF6B1A;
    --orange-hover: #E55B0F;
    --white: #FFFFFF;
    --gray-50: #F8FAFB;
    --gray-100: #EEF1F4;
    --gray-200: #D8DEE5;
    --gray-600: #5A6578;
    --gray-800: #2D3443;
    --green: #22B573;
    --red: #E53E3E;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(14,27,46,0.08);
    --shadow-md: 0 4px 16px rgba(14,27,46,0.10);
    --shadow-lg: 0 8px 32px rgba(14,27,46,0.14);
    --shadow-xl: 0 16px 48px rgba(14,27,46,0.18);
    --radius: 12px;
    --radius-lg: 20px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ===== UTILITY ===== */
  .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 80px 0; }
  @media (max-width: 768px) { .section { padding: 56px 0; } }

  /* ===== TOP BAR ===== */
  .top-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    letter-spacing: 0.02em;
  }
  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .top-bar a { color: var(--orange); text-decoration: none; font-weight: 600; }
  .top-bar .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
  }
  .top-bar .badge .dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  /* ===== HEADER / NAV ===== */
  .header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 16px;
  }
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 52px;
  }
  .logo img {
    height: 100%;
    width: auto;
    display: block;
  }
  .logo span { color: var(--blue); }

  /* Desktop Nav */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links a {
    display: block;
    padding: 8px 14px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .nav-links a:hover {
    color: var(--navy);
    background: var(--gray-50);
  }
  .nav-links .nav-highlight a {
    color: var(--orange);
    font-weight: 700;
  }
  .nav-links .nav-highlight a:hover {
    background: #FFF7ED;
    color: var(--orange-hover);
  }

  /* Header right CTAs */
  .header-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .btn-estimate-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    font-family: var(--font-display);
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(27,110,243,0.25);
    white-space: nowrap;
  }
  .btn-estimate-header:hover { background: var(--blue-hover); transform: translateY(-1px); }
  .btn-phone-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    font-family: var(--font-display);
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 2px 8px rgba(245,124,37,0.3);
    white-space: nowrap;
  }
  .btn-phone-header:hover { background: var(--orange-hover); transform: translateY(-1px); }

  /* Hamburger button */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
    flex-shrink: 0;
  }
  .hamburger:hover { background: var(--gray-50); }
  .hamburger .bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .hamburger.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Mobile nav panel — full-screen overlay */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav.open { display: flex; flex-direction: column; }
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 72px;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
  }
  .mobile-nav-header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 40px;
  }
  .mobile-nav-header .logo img {
    height: 100%;
    width: auto;
    display: block;
  }
  .mobile-nav-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: var(--gray-800);
    transition: background 0.2s;
  }
  .mobile-nav-close:hover { background: var(--gray-100); }
  .mobile-nav-body {
    flex: 1;
    padding: 8px 24px 32px;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
  }
  .mobile-nav-links li { border-bottom: 1px solid var(--gray-100); }
  .mobile-nav-links li:first-child { border-top: none; }
  .mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-nav-links a::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid var(--gray-200);
    border-bottom: 2px solid var(--gray-200);
    transform: rotate(-45deg);
    flex-shrink: 0;
  }
  .mobile-nav-links a:hover { color: var(--blue); }
  .mobile-nav-links a:hover::after { border-color: var(--blue); }
  .mobile-nav-links .nav-highlight a {
    color: var(--orange);
    font-weight: 700;
  }
  .mobile-nav-links .nav-highlight a::after { border-color: var(--orange); }
  .mobile-nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .mobile-nav-ctas a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
  }
  .mobile-nav-ctas .btn-mobile-call {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(245,124,37,0.3);
  }
  .mobile-nav-ctas .btn-mobile-estimate {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(27,110,243,0.25);
  }
  .mobile-nav-phone {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
  }

  /* Responsive breakpoints */
  @media (max-width: 1060px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .btn-estimate-header { display: none; }
  }
  @media (max-width: 480px) {
    .btn-phone-header span { display: none; }
    .btn-phone-header { padding: 10px 14px; }
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    color: var(--white);
    padding: 80px 0 90px;
    overflow: hidden;
    min-height: 540px;
  }

  /* Slider background layer */
  .hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    will-change: opacity;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 18s ease-in-out infinite alternate;
  }
  .hero-slide:nth-child(2) img { animation-delay: -6s; object-position: left center; }
  .hero-slide:nth-child(3) img { animation-delay: -12s; object-position: right center; }
  @keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
  }

  /* Dark overlay on top of slider */
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(11,29,58,0.88) 0%, rgba(18,43,82,0.78) 40%, rgba(11,29,58,0.7) 100%);
  }

  /* Slide indicators */
  .hero-indicators {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
  }
  .hero-indicator {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    border: none;
    padding: 0;
  }
  .hero-indicator.active {
    background: var(--orange);
    width: 52px;
  }

  /* Content z-index above overlay */
  .hero .container { position: relative; z-index: 2; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { padding: 56px 0 64px; min-height: auto; }
    .hero-indicators { bottom: 16px; }
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    animation: fadeInDown 0.6s ease-out;
  }
  .hero-tag svg { flex-shrink: 0; }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s 0.1s ease-out both;
  }
  .hero h1 .highlight {
    color: var(--orange);
    position: relative;
  }
  .hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(255,255,255,0.78);
    margin-bottom: 32px;
    max-width: 520px;
    animation: fadeInDown 0.6s 0.2s ease-out both;
  }
  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInDown 0.6s 0.3s ease-out both;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    font-family: var(--font-display);
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(245,124,37,0.35);
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,124,37,0.4); }
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    font-family: var(--font-display);
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
  .hero-trust {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    animation: fadeInDown 0.6s 0.4s ease-out both;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
  }
  .hero-trust-item svg { color: var(--green); flex-shrink: 0; }

  /* Hero form card */
  .hero-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-xl);
    color: var(--gray-800);
    animation: fadeInUp 0.7s 0.3s ease-out both;
  }
  .hero-form-card h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 4px;
    text-align: center;
  }
  .hero-form-card .form-sub {
    font-size: 14px;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 20px;
  }
  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--gray-50);
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(27,110,243,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 70px; }
  .btn-form-submit {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    padding: 15px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-display);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(27,110,243,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }
  .btn-form-submit:hover { background: var(--blue-hover); transform: translateY(-1px); }
  .form-note {
    font-size: 12px;
    color: var(--gray-600);
    text-align: center;
    margin-top: 12px;
  }

  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== SOCIAL PROOF BAR ===== */
  .proof-bar {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    padding: 28px 0;
  }
  .proof-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
  }
  @media (max-width: 700px) { .proof-bar-grid { grid-template-columns: repeat(2, 1fr); } }
  .proof-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
  .proof-item .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 30px;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  .proof-item .num span { color: var(--blue); }
  .proof-item .label { font-size: 14px; color: var(--gray-600); font-weight: 500; }

  /* ===== WHY CHOOSE US ===== */
  .why-us { background: var(--white); }
  .section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
  }
  .section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    font-family: var(--font-display);
  }
  .section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .section-head p { font-size: 17px; color: var(--gray-600); line-height: 1.65; }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 550px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .why-icon {
    width: 56px; height: 56px;
    background: var(--sky);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--blue);
  }
  .why-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .why-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

  /* ===== SERVICES ===== */
  .services { background: var(--gray-50); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  @media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }
  .service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .service-img {
    width: 100%;
    height: 220px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .service-img .img-placeholder {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    z-index: 2;
    position: relative;
  }
  .service-img img.service-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }
  .service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,29,58,0.08) 0%, rgba(11,29,58,0.35) 100%);
    opacity: 1;
    z-index: 2;
  }
  .service-icon-float {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    width: 48px; height: 48px;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(27,110,243,0.4);
  }
  .service-body { padding: 28px; }
  .service-body h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .service-body p { font-size: 15px; color: var(--gray-600); line-height: 1.65; margin-bottom: 16px; }
  .service-features {
    list-style: none;
    margin-bottom: 20px;
  }
  .service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-800);
    padding: 6px 0;
    font-weight: 500;
  }
  .service-features li svg { color: var(--green); flex-shrink: 0; }
  .btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--font-display);
    transition: gap 0.2s;
  }
  .btn-service:hover { gap: 14px; }
  .service-premium-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
    background: var(--orange);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(245,124,37,0.35);
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 20px;
    font-size: 13px;
  }
  .compare-table th {
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12px;
    color: var(--navy);
    padding: 8px 10px;
    background: var(--gray-50);
    border-bottom: 2px solid var(--gray-200);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .compare-table td {
    padding: 7px 10px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
    font-weight: 500;
    vertical-align: middle;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table .compare-win {
    color: var(--green);
    font-weight: 700;
  }
  .compare-table .compare-lose {
    color: var(--gray-600);
  }

  /* ===== HOW IT WORKS ===== */
  .how-works { background: var(--white); }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
  }
  @media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; gap: 32px; } }
  .step {
    text-align: center;
    position: relative;
  }
  .step-num {
    width: 64px; height: 64px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(27,110,243,0.3);
  }
  .step h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
  }
  .step p { font-size: 15px; color: var(--gray-600); line-height: 1.6; max-width: 300px; margin: 0 auto; }
  .step-connector {
    display: none;
  }
  @media (min-width: 701px) {
    .step-connector {
      display: block;
      position: absolute;
      top: 32px;
      right: -24px;
      width: 48px;
      height: 2px;
      background: var(--gray-200);
    }
    .step-connector::after {
      content: '';
      position: absolute;
      right: -4px;
      top: -4px;
      width: 10px;
      height: 10px;
      border-right: 2px solid var(--gray-200);
      border-top: 2px solid var(--gray-200);
      transform: rotate(45deg);
    }
  }

  /* ===== EMERGENCY ===== */
  .emergency {
    background: linear-gradient(135deg, var(--navy) 0%, #0f2444 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  .emergency::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(229,62,62,0.12) 0%, transparent 70%);
    border-radius: 50%;
  }
  .emergency .container { position: relative; z-index: 2; }
  .emerg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 800px) { .emerg-grid { grid-template-columns: 1fr; gap: 36px; } }
  .emerg-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,62,62,0.15);
    border: 1px solid rgba(229,62,62,0.3);
    color: #FEB2B2;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    font-family: var(--font-display);
  }
  .emerg-badge .pulse {
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
  }
  .emergency h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
  }
  .emergency h2 .orange { color: var(--orange); }
  .emergency p.emerg-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
  }
  .emerg-features {
    list-style: none;
    margin-bottom: 32px;
  }
  .emerg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
  }
  .emerg-features li svg { color: var(--green); flex-shrink: 0; }
  .emerg-phone-block {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    backdrop-filter: blur(8px);
  }
  .emerg-phone-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-display);
  }
  .emerg-phone-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }
  .emerg-phone-number a { color: var(--white); text-decoration: none; }
  .emerg-response {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 24px;
  }

  /* ===== TESTIMONIALS ===== */
  .testimonials { background: var(--gray-50); }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }
  .test-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
  }
  .test-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: #F6AD55;
  }
  .test-card blockquote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-800);
    margin-bottom: 18px;
    font-style: italic;
  }
  .test-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .test-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--blue);
  }
  .test-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--navy);
  }
  .test-location {
    font-size: 13px;
    color: var(--gray-600);
  }
  .test-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--sky);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* ===== FINAL CTA ===== */
  .final-cta {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  }
  .final-cta .container { position: relative; z-index: 2; }
  .final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    font-family: var(--font-display);
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
  }
  .btn-cta-primary:hover { background: var(--orange-hover); transform: translateY(-2px); }
  .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    font-family: var(--font-display);
    transition: all 0.2s;
    cursor: pointer;
  }
  .btn-cta-secondary:hover { background: rgba(255,255,255,0.25); }
  .cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
  }
  .cta-guarantee svg { flex-shrink: 0; }

  /* ===== CONTACT SECTION ===== */
  .contact { background: var(--white); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-info h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 16px;
  }
  .contact-info > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .contact-detail:last-child { border-bottom: none; }
  .contact-icon {
    width: 48px; height: 48px;
    background: var(--sky);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
  }
  .contact-detail strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 2px;
  }
  .contact-detail span {
    font-size: 14px;
    color: var(--gray-600);
  }
  .contact-detail a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-form-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
  }
  .contact-form-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 20px;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding: 36px 0;
    font-size: 14px;
  }
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer .logo-footer {
    display: flex;
    align-items: center;
    height: 36px;
  }
  .footer .logo-footer img {
    height: 100%;
    width: auto;
    display: block;
    opacity: 0.9;
  }

  /* ===== GUARANTEE BANNER ===== */
  .guarantee-banner {
    background: linear-gradient(135deg, #065F46 0%, #047857 100%);
    color: var(--white);
    padding: 14px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
  }
  .guarantee-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .guarantee-banner .g-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .guarantee-banner .g-item svg { flex-shrink: 0; }
  .guarantee-banner .g-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.25);
  }
  @media (max-width: 700px) { .guarantee-banner .g-divider { display: none; } }

  /* ===== RISK CARDS ===== */
  .risk-section { background: var(--white); }
  .risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  @media (max-width: 800px) { .risk-grid { grid-template-columns: 1fr; } }
  .risk-card {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
  }
  .risk-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
  }
  .risk-card .risk-icon {
    width: 48px; height: 48px;
    background: #FEE2E2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--red);
  }
  .risk-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .risk-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
  .risk-card .cost {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    color: var(--red);
  }
  .risk-resolve {
    text-align: center;
    margin-top: 36px;
    padding: 28px;
    background: #F0FFF4;
    border: 2px solid #C6F6D5;
    border-radius: var(--radius);
  }
  .risk-resolve p {
    font-size: 17px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
  }
  .risk-resolve .btn-primary { font-size: 16px; }

  /* ===== USP STRIP (below hero) ===== */
  .usp-strip {
    background: var(--navy);
    color: var(--white);
    padding: 18px 0;
    border-bottom: 3px solid var(--orange);
  }
  .usp-strip .container {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
  }
  .usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
  }
  .usp-item .usp-icon {
    width: 32px; height: 32px;
    background: rgba(245,124,37,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
  }

  /* ===== URGENCY TICKER ===== */
  .urgency-ticker {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    animation: fadeInDown 0.6s 0.5s ease-out both;
  }
  .urgency-ticker .ticker-dot {
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
  }
  .urgency-ticker p {
    font-size: 14px;
    font-weight: 600;
    color: #9A3412;
    line-height: 1.4;
  }

  /* ===== ENHANCED HERO FORM ===== */
  .form-guarantee-strip {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 14px;
    flex-wrap: wrap;
  }
  .form-guarantee-strip .fg-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
  }
  .form-guarantee-strip .fg-item svg { color: var(--green); flex-shrink: 0; }

  /* ===== STICKY MOBILE CALL BAR ===== */
  .sticky-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--orange);
    padding: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  }
  .sticky-call-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    padding: 16px 20px;
    letter-spacing: 0.01em;
  }
  .sticky-call-bar .bar-sub {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
    text-align: center;
    padding: 0 20px 10px;
    color: var(--white);
    letter-spacing: 0.02em;
  }
  @media (max-width: 768px) {
    .sticky-call-bar { display: block; }
    body { padding-bottom: 80px; }
    .footer { padding-bottom: 80px; }
  }

  /* ===== MID-PAGE CALL INTERRUPT BANNER ===== */
  .call-interrupt {
    background: linear-gradient(135deg, var(--orange) 0%, #E06B1A 100%);
    color: var(--white);
    padding: 36px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .call-interrupt::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
  }
  .call-interrupt .container { position: relative; z-index: 2; }
  .call-interrupt .interrupt-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .call-interrupt .interrupt-sub {
    font-size: 14px;
    opacity: 0.88;
    margin-bottom: 18px;
  }
  .call-interrupt .interrupt-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--orange);
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    letter-spacing: -0.01em;
  }
  .call-interrupt .interrupt-phone:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
  .call-interrupt .interrupt-phone svg { animation: phone-ring 1.5s ease-in-out infinite; }
  @keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-12deg); }
    20% { transform: rotate(12deg); }
    30% { transform: rotate(-8deg); }
    40% { transform: rotate(8deg); }
    50% { transform: rotate(0deg); }
  }
  .call-interrupt .interrupt-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    flex-wrap: wrap;
  }
  .call-interrupt .interrupt-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  /* ===== TRUST BADGES BAR ===== */
  .trust-badges-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 24px 0;
  }
  .trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
  }
  .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    font-family: var(--font-display);
  }
  .trust-badge-icon {
    width: 44px; height: 44px;
    background: var(--sky);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
  }
  @media (max-width: 600px) {
    .trust-badges-grid { gap: 20px; }
    .trust-badge-item { font-size: 13px; }
    .trust-badge-icon { width: 36px; height: 36px; border-radius: 10px; }
  }

  /* ===== EXPANDED TESTIMONIALS GRID ===== */
  .test-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .test-grid-6 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .test-grid-6 { grid-template-columns: 1fr; } }

  /* ===== GUARANTEES SECTION ===== */
  .guarantees-section {
    background: linear-gradient(180deg, #F0FFF4 0%, var(--white) 100%);
    border-top: 3px solid var(--green);
  }
  .guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
  }
  @media (max-width: 800px) { .guarantees-grid { grid-template-columns: 1fr; } }
  .guarantee-card {
    background: var(--white);
    border: 1px solid #C6F6D5;
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .guarantee-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--green);
  }
  .guarantee-card-icon {
    width: 56px; height: 56px;
    background: #F0FFF4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--green);
  }
  .guarantee-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
  }
  .guarantee-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
  }
  .guarantees-bottom {
    text-align: center;
    margin-top: 32px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
  }
  .guarantees-bottom strong { color: var(--navy); }

  /* ===== AUDIENCE TABS SECTION ===== */
  .audience-section { background: var(--gray-50); }
  .audience-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
  }
  .audience-tab {
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    transition: all 0.25s;
  }
  .audience-tab:hover { border-color: var(--blue); color: var(--blue); }
  .audience-tab.active {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(27,110,243,0.25);
  }
  .audience-panel { display: none; }
  .audience-panel.active { display: block; }
  .audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
  }
  @media (max-width: 800px) { .audience-grid { grid-template-columns: 1fr; } }
  .audience-content h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
  }
  .audience-content > p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
  }
  .audience-list {
    list-style: none;
    margin-bottom: 24px;
  }
  .audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
    color: var(--gray-800);
    line-height: 1.5;
  }
  .audience-list li:last-child { border-bottom: none; }
  .audience-list li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
  .audience-list li strong { color: var(--navy); }
  .audience-scenarios {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
  }
  .audience-scenarios h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 16px;
  }
  .scenario-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    align-items: flex-start;
  }
  .scenario-item:last-child { border-bottom: none; }
  .scenario-icon {
    width: 40px; height: 40px;
    background: var(--sky);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 18px;
  }
  .scenario-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 2px;
  }
  .scenario-item span {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
  }

  /* ===== TESTIMONIALS CALL-OUT ===== */
  .test-call-out {
    text-align: center;
    margin-top: 36px;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: var(--radius);
  }
  .test-call-out p {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 14px;
  }
  .test-call-out .btn-primary { font-size: 16px; }

  /* ===== A/B TESTING NOTES (hidden on page, visible in source) ===== */
  .ab-notes { display: none; }