﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: #1F3864;
      --blue: #2E75B6;
      --blue-light: #d5e8f0;
      --accent: #2563EB;
      --green: #16a34a;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-400: #94a3b8;
      --gray-600: #475569;
      --gray-800: #1e293b;
      --white: #ffffff;
      --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: clip; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--white); border-bottom: 2px solid var(--blue);
      padding: 0 2rem; display: flex; align-items: center; justify-content: space-between;
      height: 68px; box-shadow: 0 2px 12px rgba(0,0,0,.08);
    }
    .nav-brand { display: flex; flex-direction: column; }
    .nav-brand .name { font-size: 1.15rem; font-weight: 700; color: var(--navy); letter-spacing: 0; }
    .nav-brand .tag { font-size: .72rem; color: var(--blue); font-weight: 500; }
    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--gray-600); font-size: .9rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--blue); }
    .nav-cta { background: var(--blue); color: var(--white); padding: .5rem 1.25rem; border-radius: 6px; text-decoration: none; font-size: .9rem; font-weight: 600; transition: background .2s; white-space: nowrap; }
    .nav-cta:hover { background: var(--navy); }

    /* SECTIONS */
    section { padding: 5rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: .75rem; }
    h2.section-title { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
    .section-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 600px; }

    /* HERO */
    #hero {
      min-height: 100vh; display: flex; align-items: center;
      background: linear-gradient(135deg, var(--navy) 0%, #2E75B6 60%, #1a5276 100%);
      padding-top: 68px; position: relative; overflow: hidden;
    }
    #hero::before {
      content: ''; position: absolute; inset: 0;
      background: url("../images/hero-pattern.svg");
    }
    .hero-content { position: relative; z-index: 1; }
    .hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #93c5fd; padding: .4rem 1rem; border-radius: 50px; font-size: .8rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 1.5rem; }
    .hero-badge::before { content: '*'; color: #4ade80; font-size: .6rem; }
    #hero h1 { font-size: 3.5rem; font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1rem; }
    #hero h1 span { color: #93c5fd; }
    #hero p.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 2rem; }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary { background: var(--white); color: var(--navy); padding: .85rem 2rem; border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 1rem; transition: transform .15s, box-shadow .15s; display: inline-block; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
    .btn-outline { border: 2px solid rgba(255,255,255,.5); color: var(--white); padding: .85rem 2rem; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 1rem; transition: background .2s; display: inline-block; }
    .btn-outline:hover { background: rgba(255,255,255,.1); }
    .hero-stats { display: flex; gap: 3rem; margin-top: 3rem; flex-wrap: wrap; }
    .stat { }
    .stat .num { font-size: 2rem; font-weight: 800; color: var(--white); }
    .stat .lbl { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .1rem; }

    /* TRUST BAR */
    #trust { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 2.5rem 2rem; }
    .trust-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 600; color: var(--gray-600); }
    .trust-item .ico { font-size: 1.2rem; }

    /* LOGO CAROUSEL */
    #logo-carousel { background: var(--white); padding: 3rem 0; border-bottom: 1px solid var(--gray-200); overflow: clip; max-width: 100vw; contain: layout paint; }
    .carousel-section { margin-bottom: 2rem; }
    .carousel-section:last-child { margin-bottom: 0; }
    .carousel-label {
      text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--gray-400); margin-bottom: 1.25rem;
    }
    .carousel-track-wrapper { overflow: clip; position: relative; contain: paint; }
    .carousel-track-wrapper::before, .carousel-track-wrapper::after {
      content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
    }
    .carousel-track-wrapper::before { left: 0; background: linear-gradient(to right, white, transparent); }
    .carousel-track-wrapper::after  { right: 0; background: linear-gradient(to left, white, transparent); }
    .carousel-track {
      display: flex; align-items: center; gap: 3rem;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    .carousel-track:hover { animation-play-state: paused; }
    .carousel-track.reverse { animation-direction: reverse; animation-duration: 34s; }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .logo-item {
      display: flex; flex-direction: column; align-items: center; gap: .6rem;
      flex-shrink: 0; min-width: 110px;
    }
    .logo-item img {
      height: 96px; width: auto; max-width: 180px;
      object-fit: contain;
      transition: transform .3s, opacity .3s;
      opacity: 1;
    }
    .logo-item:hover img { transform: scale(1.07); opacity: .85; }
    .logo-item .logo-name {
      font-size: .68rem; font-weight: 600; color: var(--gray-400);
      text-align: center; white-space: nowrap; letter-spacing: .03em;
    }
    /* Text badge for companies without hosted logos */
    .logo-badge {
      height: 96px; min-width: 130px; max-width: 170px;
      display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--gray-200); border-radius: 8px;
      padding: 0 1rem; transition: border-color .3s;
    }
    .logo-badge span {
      font-size: .82rem; font-weight: 800; color: var(--gray-400);
      text-align: center; line-height: 1.25; letter-spacing: 0;
      transition: color .3s;
    }
    .logo-item:hover .logo-badge { border-color: var(--blue); }
    .logo-item:hover .logo-badge span { color: var(--navy); }

    /* ABOUT */
    #about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .about-text, .about-right { min-width: 0; }
    .about-text p { color: var(--gray-600); margin-bottom: 1rem; }
    .career-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: .88rem; }
    .career-table th { background: var(--navy); color: var(--white); padding: .6rem 1rem; text-align: left; }
    .career-table td { padding: .55rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
    .career-table tr:nth-child(even) td { background: var(--gray-50); }
    .about-right { background: var(--gray-50); border-radius: 12px; padding: 2rem; border: 1px solid var(--gray-200); }
    .about-right h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; }
    .why-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
    .why-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .95rem; color: var(--gray-600); }
    .why-list li .check { color: var(--green); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
    .why-list li strong { color: var(--gray-800); display: block; }

    /* SERVICES */
    #services { background: var(--gray-50); }
    .plans-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
    .plan-card { background: var(--white); border-radius: 12px; border: 2px solid var(--gray-200); padding: 2rem; position: relative; transition: border-color .2s, box-shadow .2s; }
    .plan-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(46,117,182,.12); }
    .plan-card.featured { border-color: var(--blue); box-shadow: 0 8px 32px rgba(46,117,182,.15); }
    .plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--white); font-size: .72rem; font-weight: 700; padding: .25rem .9rem; border-radius: 50px; letter-spacing: .05em; white-space: nowrap; }
    .plan-name { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .5rem; }
    .plan-price { font-size: 2rem; font-weight: 800; color: var(--navy); }
    .plan-price span { font-size: .9rem; font-weight: 500; color: var(--gray-400); }
    .plan-desc { font-size: .88rem; color: var(--gray-600); margin: .5rem 0 1.25rem; }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.5rem; }
    .plan-features li { font-size: .88rem; color: var(--gray-600); display: flex; gap: .5rem; align-items: flex-start; }
    .plan-features li::before { content: '+'; color: var(--green); font-weight: 700; flex-shrink: 0; }
    .plan-features li.no::before { content: '-'; color: var(--gray-400); }
    .plan-btn { display: block; text-align: center; background: var(--blue); color: var(--white); padding: .75rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: .95rem; transition: background .2s; }
    .plan-btn:hover { background: var(--navy); }
    .plan-btn.outline { background: transparent; border: 2px solid var(--blue); color: var(--blue); }
    .plan-btn.outline:hover { background: var(--blue); color: var(--white); }
    /* Break-fix card */
    .plan-card.breakfix { border-color: var(--gray-200); background: var(--gray-50); }
    .plan-card.breakfix:hover { border-color: var(--gray-400); box-shadow: none; }
    .plan-card.breakfix .plan-name { color: var(--gray-600); }
    .plan-card.breakfix .plan-price { color: var(--gray-600); }
    .plan-card.breakfix .plan-price span { color: var(--gray-400); }
    .plan-card.breakfix .plan-features li::before { content: '+'; color: var(--gray-400); }
    .plan-btn.breakfix-btn { display: block; text-align: center; background: transparent; border: 2px solid var(--gray-400); color: var(--gray-600); padding: .75rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: .95rem; transition: all .2s; }
    .plan-btn.breakfix-btn:hover { border-color: var(--gray-600); color: var(--navy); }
    .muted-plan-desc { color: var(--gray-600); font-size: .85rem; margin-bottom: 1rem; }
    .billing-note { text-align: center; margin-top: .85rem; font-size: .75rem; color: var(--gray-400); }

    /* PRICING CALCULATOR */
    .calc-wrapper { background: var(--white); border: 2px solid var(--blue); border-radius: 16px; padding: 2.5rem; margin-top: 3rem; }
    .calc-wrapper h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
    .calc-wrapper .calc-sub { font-size: .9rem; color: var(--gray-600); margin-bottom: 2rem; }
    .calc-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
    .calc-left label { font-size: .85rem; font-weight: 700; color: var(--gray-600); display: block; margin-bottom: .75rem; }
    .user-slider { width: 100%; accent-color: var(--blue); height: 6px; cursor: pointer; }
    .user-count-display { font-size: 3rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: .25rem; }
    .user-count-display span { font-size: 1rem; font-weight: 500; color: var(--gray-400); }
    .slider-labels { display: flex; justify-content: space-between; font-size: .75rem; color: var(--gray-400); margin-top: .3rem; }
    .tier-radios { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
    .tier-radio { display: flex; align-items: center; gap: .75rem; padding: .65rem 1rem; border: 2px solid var(--gray-200); border-radius: 8px; cursor: pointer; transition: border-color .15s, background .15s; }
    .tier-radio input { accent-color: var(--blue); width: 16px; height: 16px; cursor: pointer; }
    .tier-radio:has(input:checked) { border-color: var(--blue); background: var(--blue-light); }
    .tier-radio .tr-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
    .tier-radio .tr-rate { font-size: .82rem; color: var(--gray-600); margin-left: auto; }
    .calc-result { background: var(--gray-50); border-radius: 12px; padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
    .calc-result .result-price { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
    .calc-result .result-price sub { font-size: 1rem; font-weight: 500; color: var(--gray-400); vertical-align: baseline; }
    .calc-result .result-label { font-size: .85rem; color: var(--gray-600); margin-top: -.5rem; }
    .calc-breakdown { display: flex; flex-direction: column; gap: .4rem; font-size: .85rem; color: var(--gray-600); border-top: 1px solid var(--gray-200); padding-top: 1rem; }
    .calc-breakdown .row { display: flex; justify-content: space-between; }
    .calc-breakdown .row.total { font-weight: 700; color: var(--navy); font-size: .95rem; border-top: 1px solid var(--gray-200); padding-top: .4rem; margin-top: .2rem; }
    .calc-note { font-size: .8rem; color: var(--gray-400); font-style: italic; }
    .calc-cta { background: var(--blue); color: var(--white); text-align: center; padding: .75rem; border-radius: 8px; text-decoration: none; font-weight: 700; font-size: .95rem; transition: background .2s; display: block; }
    .calc-cta:hover { background: var(--navy); }

    /* ADDITIONAL SERVICES */
    .section-kicker { margin-top: 4rem; }
    .section-kicker h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
    .section-kicker p { color: var(--gray-600); margin-bottom: 0; }
    .addl-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
    .addl-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 10px; padding: 1.25rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
    .addl-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
    .addl-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
    .addl-card p { font-size: .85rem; color: var(--gray-600); }

    /* PROCESS */
    #process { background: var(--white); }
    .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; position: relative; }
    .steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--gray-200); z-index: 0; }
    .step { text-align: center; position: relative; z-index: 1; }
    .step-num { width: 56px; height: 56px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; margin: 0 auto 1rem; border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--blue); }
    .step h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
    .step p { font-size: .85rem; color: var(--gray-600); }

    /* TESTIMONIALS */
    #testimonials { background: var(--gray-50); }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
    .testi-card { background: var(--white); border-radius: 12px; padding: 1.75rem; border: 1px solid var(--gray-200); }
    .stars { color: #f59e0b; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
    .testi-card p { font-size: .9rem; color: var(--gray-600); font-style: italic; margin-bottom: 1.25rem; line-height: 1.7; }
    .testi-author { font-size: .85rem; font-weight: 700; color: var(--navy); }
    .testi-biz { font-size: .8rem; color: var(--gray-400); }

    /* CONTACT */
    #contact { background: linear-gradient(135deg, var(--navy) 0%, #1a5276 100%); }
    #contact .section-label { color: #93c5fd; }
    #contact h2.section-title { color: var(--white); }
    #contact .section-sub { color: rgba(255,255,255,.75); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; }
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-item { display: flex; gap: 1rem; align-items: flex-start; }
    .contact-item .ci-icon {
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
    }
    .contact-item .ci-icon svg {
      width: 22px;
      height: 22px;
      fill: rgba(255,255,255,.95);
      display: block;
    }
    .contact-item h4 { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: .15rem; }
    .contact-item p, .contact-item a { font-size: 1rem; color: var(--white); text-decoration: none; font-weight: 500; }
    .contact-item a { display: inline-flex; align-items: center; min-height: 32px; }
    .contact-muted { font-size: .85rem; color: rgba(255,255,255,.6); }
    .contact-form { background: var(--white); border-radius: 12px; padding: 2rem; }
    .contact-form h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
    .form-group { margin-bottom: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    label { display: block; font-size: .82rem; font-weight: 600; color: var(--gray-600); margin-bottom: .3rem; }
    input, select, textarea { width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--gray-200); border-radius: 7px; font-family: var(--font); font-size: .92rem; color: var(--gray-800); outline: none; transition: border-color .2s; background: var(--white); }
    input:focus, select:focus, textarea:focus { border-color: var(--blue); }
    textarea { resize: vertical; min-height: 90px; }
    .form-submit { width: 100%; background: var(--blue); color: var(--white); border: none; padding: .85rem; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s; font-family: var(--font); margin-top: .5rem; }
    .form-submit:hover { background: var(--navy); }
    .form-submit:disabled { cursor: wait; opacity: .75; }
    .form-message { text-align: center; font-weight: 700; margin-top: 1rem; padding: 1rem; border-radius: 8px; }
    .form-message.success { color: #16a34a; background: #f0fdf4; }
    .form-message.error { color: #b91c1c; background: #fef2f2; }

    /* FOOTER */
    footer { background: #0f1f3d; color: rgba(255,255,255,.55); padding: 2rem; text-align: center; font-size: .85rem; }
    footer a { color: rgba(255,255,255,.7); text-decoration: none; display: inline-flex; align-items: center; min-height: 32px; }
    footer a:hover { color: var(--white); }
    .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1rem; flex-wrap: wrap; }
    .footer-service-area { margin-top: .4rem; font-size: .78rem; color: rgba(255,255,255,.35); }

    /* RESPONSIVE */
    @media (max-width: 1280px) {
      .plans-grid { grid-template-columns: repeat(3, 1fr); }
      #hero h1 { font-size: 3.1rem; }
    }
    @media (max-width: 1050px) {
      .plans-grid { grid-template-columns: repeat(2, 1fr); }
      .calc-controls { grid-template-columns: 1fr; }
      nav { padding: 0 1.25rem; }
      .nav-links { gap: 1.25rem; }
      #hero h1 { font-size: 2.75rem; }
    }
    @media (max-width: 900px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .plans-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .steps::before { display: none; }
      .testi-grid { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      #hero { min-height: auto; padding-top: 8.5rem; padding-bottom: 5rem; }
      .contact-grid { gap: 2rem; }
    }
    @media (max-width: 700px) {
      nav { height: auto; min-height: 64px; padding: .7rem 1rem; gap: .75rem; }
      .nav-brand { min-width: 0; }
      .nav-brand .name { font-size: .98rem; line-height: 1.15; }
      .nav-brand .tag { font-size: .66rem; }
      .nav-cta { padding: .5rem .75rem; font-size: .78rem; }
      section { padding: 3.5rem 1.25rem; }
      #hero { padding-top: 7.5rem; }
      #hero h1 { font-size: 2.25rem; }
      #hero p.hero-sub { font-size: 1rem; }
      .hero-ctas { flex-direction: column; }
      .btn-primary, .btn-outline { width: 100%; text-align: center; padding: .85rem 1rem; }
      .hero-stats { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
      .stat .num { font-size: 1.65rem; }
      .trust-inner { align-items: stretch; gap: .75rem; }
      .trust-item { width: 100%; justify-content: center; text-align: center; }
      #logo-carousel { padding: 2rem 0; }
      .carousel-track {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        animation: none;
        width: 100%;
        overflow: visible;
        padding: 0 1rem;
      }
      .carousel-track.reverse { animation: none; }
      #agency-track .logo-item:nth-child(n+6),
      #company-track .logo-item:nth-child(n+8) { display: none; }
      .carousel-track-wrapper::before, .carousel-track-wrapper::after { width: 36px; }
      .logo-item { min-width: 0; width: 100%; }
      .logo-item img, .logo-badge { height: 68px; max-width: 124px; }
      .logo-badge { min-width: 104px; padding: 0 .65rem; }
      .logo-badge span { font-size: .7rem; }
      .about-grid { gap: 2rem; }
      .career-table, .career-table tbody, .career-table tr, .career-table td { display: block; width: 100%; }
      .career-table { border-collapse: separate; border-spacing: 0; white-space: normal; }
      .career-table thead { display: none; }
      .career-table tr { border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; margin-bottom: .75rem; }
      .career-table td { border-bottom: 0; padding: .75rem .9rem; }
      .career-table td:first-child { background: var(--gray-50); color: var(--navy); font-weight: 800; }
      .plans-grid, .steps { grid-template-columns: 1fr; }
      .plan-card, .calc-wrapper, .contact-form, .about-right, .testi-card { padding: 1.5rem; }
      .plan-price { font-size: 1.75rem; }
      .tier-radio { align-items: flex-start; flex-wrap: wrap; }
      .tier-radio .tr-rate { width: 100%; margin-left: 1.95rem; }
      .calc-result .result-price { font-size: 2.2rem; }
      .calc-breakdown .row { gap: 1rem; align-items: flex-start; }
      .calc-breakdown .row span:last-child { text-align: right; }
      .addl-services { grid-template-columns: 1fr; }
      .contact-item .ci-icon { width: 40px; height: 40px; }
      .footer-links { gap: 1rem; }
      .form-row { grid-template-columns: 1fr; }
    }
    @media (max-width: 420px) {
      nav { align-items: flex-start; }
      .nav-cta { white-space: normal; text-align: center; max-width: 8.5rem; }
      section { padding: 3.25rem 1rem; }
      #hero { padding-top: 7rem; }
      #hero h1 { font-size: 2rem; line-height: 1.12; }
      h2.section-title { font-size: 1.6rem; }
      .hero-badge { font-size: .72rem; border-radius: 8px; }
      .hero-stats { gap: 1rem; }
      .plan-card, .calc-wrapper, .contact-form, .about-right, .testi-card { padding: 1.25rem; }
      .calc-breakdown .row { flex-direction: column; gap: .1rem; }
      .calc-breakdown .row span:last-child { text-align: left; font-weight: 700; }
      .contact-item { gap: .75rem; }
      .contact-item p, .contact-item a { font-size: .92rem; overflow-wrap: anywhere; }
    }
