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

    :root {
      --navy: #0A1628;
      --navy-mid: #142040;
      --gold: #ff4f00;
      --gold-light: #ff7033;
      --gold-bg: rgba(255,79,0,0.09);
      --gold-border: rgba(255,79,0,0.28);
      --white: #FFFFFF;
      --bg: #F7F8FA;
      --text: #1A2535;
      --muted: #6B7A99;
      --border: #E2E6EF;
      --card: #FFFFFF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--white);
      color: var(--text);
      font-size: 15px;
      line-height: 1.75;
      overflow-x: hidden;
    }

    /* ─── STICKY NAV ─── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--navy);
      border-bottom: 2px solid var(--gold);
      padding: 14px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo img { height: 34px; width: auto; }
    .nav-logo-fallback {
      display: flex; align-items: center; gap: 12px;
    }
    .nav-mark {
      width: 38px; height: 38px;
      background: var(--gold);
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 800;
      color: var(--navy);
    }
    .nav-brand {
      font-size: 18px; font-weight: 700;
      color: var(--white); letter-spacing: 0.3px;
    }
    .nav-brand span { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy);
      font-size: 13px; font-weight: 700;
      padding: 9px 22px;
      border-radius: 6px;
      text-decoration: none;
      letter-spacing: 0.3px;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--gold-light); }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--navy);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(105deg, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0.82) 55%, rgba(10,22,40,0.5) 100%),
        url('https://sprint-co.com/wp-content/uploads/2025/05/img01.jpg');
      background-size: cover;
      background-position: center right;
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      max-width: 1140px;
      margin: 0 auto;
      padding: 80px 48px;
      width: 100%;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold-bg);
      border: 1px solid var(--gold-border);
      border-radius: 20px;
      padding: 5px 16px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }
    .hero h1 {
      font-size: clamp(32px, 5vw, 58px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.12;
      letter-spacing: -0.5px;
      margin-bottom: 22px;
      max-width: 700px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 17px;
      color: #A8B8D0;
      max-width: 560px;
      line-height: 1.85;
      margin-bottom: 36px;
    }
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }
    .hero-stat {
      border-left: 3px solid var(--gold);
      padding-left: 14px;
    }
    .hero-stat strong {
      display: block;
      font-size: 26px; font-weight: 800;
      color: var(--white);
      line-height: 1.1;
    }
    .hero-stat span {
      font-size: 12px; color: #8A99B3;
      text-transform: uppercase; letter-spacing: 1px;
    }
    .hero-scroll {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px; color: #8A99B3;
      text-transform: uppercase; letter-spacing: 1.5px;
      margin-top: 16px;
    }
    .scroll-arrow {
      width: 32px; height: 32px;
      border: 1px solid rgba(255,79,0,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      animation: bounce 2s infinite;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(4px); }
    }

    /* HERO FORM CARD (right column on large screen) */
    .hero-form-wrap {
      position: absolute;
      right: 48px;
      top: 50%;
      transform: translateY(-50%);
      width: 420px;
      z-index: 3;
    }

    /* ─── SOCIAL PROOF STRIP ─── */
    .proof-strip {
      background: var(--gold);
      padding: 16px 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .proof-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px; font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
    .proof-item span { font-size: 18px; }

    /* ─── SECTION LAYOUT ─── */
    .section {
      padding: 80px 48px;
      max-width: 1140px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 11px; font-weight: 700;
      letter-spacing: 2.5px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
      letter-spacing: -0.3px;
    }
    .section-title em { font-style: normal; color: var(--gold); }
    .section-body {
      font-size: 16px;
      color: var(--muted);
      max-width: 620px;
      line-height: 1.85;
    }

    /* ─── HOW IT WORKS ─── */
    .hiw-bg { background: var(--bg); }
    .hiw-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 80px 48px;
    }
    .hiw-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 56px;
      position: relative;
    }
    .hiw-steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(12.5% + 20px);
      right: calc(12.5% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--gold) 0%, rgba(255,79,0,0.2) 100%);
      z-index: 0;
    }
    .hiw-step {
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }
    .hiw-dot {
      width: 56px; height: 56px;
      background: var(--navy);
      border: 3px solid var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; font-weight: 800;
      color: var(--gold);
      margin: 0 auto 20px;
    }
    .hiw-step h4 {
      font-size: 15px; font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .hiw-step p {
      font-size: 13px; color: var(--muted);
      line-height: 1.7;
    }

    /* ─── PROJECTS GRID ─── */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 52px;
    }
    .project-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 3/4;
      background: var(--navy);
    }
    .project-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .project-card:hover img { transform: scale(1.04); }
    .project-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, transparent 55%);
    }
    .project-info {
      position: absolute;
      bottom: 20px; left: 20px; right: 20px;
    }
    .project-type {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-size: 9px; font-weight: 800;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 3px 10px; border-radius: 4px;
      margin-bottom: 6px;
    }
    .project-info h4 {
      font-size: 14px; font-weight: 700;
      color: var(--white); line-height: 1.3;
    }
    .project-info p {
      font-size: 11px; color: #A8B8D0; margin-top: 2px;
    }

    /* ─── WHY SPRINTCO ─── */
    .why-bg { background: var(--navy); }
    .why-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 80px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .why-left .section-title { color: var(--white); }
    .why-left .section-body { color: #A8B8D0; }
    .why-features { margin-top: 36px; }
    .why-feature {
      display: flex;
      gap: 18px;
      margin-bottom: 28px;
    }
    .why-icon {
      width: 48px; height: 48px;
      background: var(--gold-bg);
      border: 1px solid var(--gold-border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
    .why-text h4 {
      font-size: 15px; font-weight: 700;
      color: var(--white); margin-bottom: 5px;
    }
    .why-text p {
      font-size: 13px; color: #8A99B3;
      line-height: 1.7;
    }
    .why-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .stat-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,79,0,0.2);
      border-radius: 12px;
      padding: 26px 22px;
      text-align: center;
    }
    .stat-card:first-child {
      grid-column: span 2;
      background: var(--gold);
    }
    .stat-card:first-child strong { color: var(--navy); }
    .stat-card:first-child p { color: var(--navy-mid); }
    .stat-card strong {
      display: block;
      font-size: 36px; font-weight: 800;
      color: var(--gold);
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .stat-card p {
      font-size: 12px; color: #8A99B3;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1.5;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-bg { background: var(--bg); }
    .testimonials-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 80px 48px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 52px;
    }
    .testimonial-card {
      background: var(--card);
      border-radius: 14px;
      padding: 32px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 20px rgba(10,22,40,0.06);
    }
    .testimonial-card .quote-mark {
      font-size: 48px;
      color: var(--gold);
      font-family: Georgia, serif;
      line-height: 1;
      margin-bottom: 12px;
      display: block;
    }
    .testimonial-card p {
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.85;
      font-style: italic;
      margin-bottom: 20px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .author-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--gold-border);
    }
    .author-info strong {
      display: block;
      font-size: 14px; font-weight: 700;
      color: var(--navy);
    }
    .author-info span {
      font-size: 12px; color: var(--muted);
    }

    /* ─── MAIN FORM SECTION ─── */
    .form-section-bg {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .form-section-bg::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,79,0,0.1) 0%, transparent 70%);
    }
    .form-section-inner {
      max-width: 1140px;
      margin: 0 auto;
      padding: 80px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
      position: relative;
      z-index: 2;
    }
    .form-left .section-label { color: var(--gold-light); }
    .form-left .section-title { color: var(--white); }
    .form-left .section-body { color: #A8B8D0; margin-bottom: 32px; }

    .form-promise {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
    }
    .form-promise-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .fpi-check {
      width: 26px; height: 26px;
      background: var(--gold-bg);
      border: 1px solid var(--gold-border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: var(--gold);
      flex-shrink: 0;
      margin-top: 1px;
    }
    .fpi-text strong {
      display: block;
      font-size: 14px; font-weight: 600;
      color: var(--white);
    }
    .fpi-text span {
      font-size: 12.5px; color: #8A99B3;
    }

    /* FORM CARD */
    .form-card {
      background: var(--white);
      border-radius: 18px;
      padding: 40px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    }
    .form-card-header {
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }
    .form-card-header h3 {
      font-size: 22px; font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .form-card-header p {
      font-size: 13px; color: var(--muted);
      line-height: 1.6;
    }
    .form-card-header .free-badge {
      display: inline-block;
      background: #EAFAF1;
      border: 1px solid rgba(30,132,73,0.25);
      color: #1E8449;
      font-size: 11px; font-weight: 700;
      padding: 3px 12px; border-radius: 20px;
      text-transform: uppercase; letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block;
      font-size: 12px; font-weight: 600;
      color: var(--navy);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .form-group label .req { color: var(--gold); margin-left: 3px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: var(--bg);
      resize: vertical;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(255,79,0,0.12);
      background: var(--white);
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A99' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      cursor: pointer;
    }

    /* UPLOAD FIELD */
    .upload-zone {
      border: 2px dashed var(--border);
      border-radius: 8px;
      padding: 22px;
      text-align: center;
      background: var(--bg);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      position: relative;
    }
    .upload-zone:hover,
    .upload-zone:focus-within {
      border-color: var(--gold);
      background: var(--gold-bg);
    }
    .upload-zone input[type="file"] {
      position: absolute;
      inset: 0;
      opacity: 0;
      cursor: pointer;
      width: 100%;
      height: 100%;
      padding: 0;
      border: none;
      background: none;
    }
    .upload-icon {
      font-size: 26px; margin-bottom: 8px;
      display: block;
    }
    .upload-zone p {
      font-size: 13px; color: var(--muted);
      line-height: 1.6;
    }
    .upload-zone strong { color: var(--navy); }
    .upload-hint {
      font-size: 11px; color: var(--muted);
      margin-top: 6px;
      display: block;
    }

    /* SUBMIT BUTTON */
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--navy);
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 15px; font-weight: 700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.1s;
      margin-top: 6px;
    }
    .form-submit:hover {
      background: #0f1e38;
      transform: translateY(-1px);
    }
    .form-submit:active { transform: translateY(0); }
    .form-submit .arrow { margin-left: 6px; }

    .form-disclaimer {
      text-align: center;
      font-size: 11.5px; color: var(--muted);
      margin-top: 14px;
      line-height: 1.6;
    }

    /* FORM ROW */
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--navy);
      border-top: 3px solid var(--gold);
      padding: 32px 48px;
      text-align: center;
    }
    footer p {
      font-size: 12px; color: #6B7A99;
    }
    footer strong { color: var(--gold); }
    footer a { color: #8A99B3; text-decoration: none; }
    footer a:hover { color: var(--gold); }

    /* ─── SUCCESS STATE ─── */
    .success-overlay {
      display: none;
      background: var(--white);
      border-radius: 18px;
      padding: 50px 40px;
      text-align: center;
    }
    .success-overlay.show { display: block; }
    .success-icon {
      width: 72px; height: 72px;
      background: #EAFAF1;
      border: 2px solid rgba(30,132,73,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 32px;
      margin: 0 auto 20px;
    }
    .success-overlay h3 {
      font-size: 22px; font-weight: 700;
      color: var(--navy); margin-bottom: 10px;
    }
    .success-overlay p {
      font-size: 14px; color: var(--muted);
      margin-bottom: 26px;
      line-height: 1.75;
    }
    .calendly-btn {
      display: inline-block;
      background: var(--gold);
      color: var(--navy);
      font-size: 15px; font-weight: 700;
      padding: 16px 32px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .calendly-btn:hover { background: var(--gold-light); }
    .skip-link {
      display: block;
      margin-top: 14px;
      font-size: 12px; color: var(--muted);
    }
    .skip-link a { color: var(--muted); text-decoration: underline; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero-form-wrap { display: none; }
      .hiw-steps { grid-template-columns: repeat(2, 1fr); }
      .hiw-steps::before { display: none; }
      .why-inner { grid-template-columns: 1fr; }
      .why-right { grid-template-columns: repeat(4, 1fr); }
      .why-right .stat-card:first-child { grid-column: span 4; }
      .form-section-inner { grid-template-columns: 1fr; gap: 40px; }
      .projects-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      nav { padding: 14px 20px; }
      .hero-inner, .section, .hiw-inner, .why-inner, .testimonials-inner, .form-section-inner { padding-left: 20px; padding-right: 20px; }
      footer { padding: 24px 20px; }
      .proof-strip { padding: 14px 20px; gap: 20px; }
      .projects-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .why-right { grid-template-columns: 1fr 1fr; }
      .why-right .stat-card:first-child { grid-column: span 2; }
      .hiw-steps { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .hero h1 { font-size: 28px; }
      .projects-grid { grid-template-columns: 1fr; }
      .hiw-steps { grid-template-columns: 1fr; }
      .why-right { grid-template-columns: 1fr; }
      .why-right .stat-card:first-child { grid-column: span 1; }
    }
  