 :root {
      --navy: #1B4E9B;
      --navy-light: #163F82;
      --navy-dark: #122E6A;
      --orange: #EF7F1A;
      --orange-light: #F5A44E;
      --orange-dark: #D96A0A;
      --white: #FFFFFF;
      --off-white: #F4F7FC;
      --gray: #6B7280;
      --light-gray: #DDE6F3;
      --text-dark: #2B2A29;
      --green: #16A34A;
      --font-head: 'Sora', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

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

    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: #fff;
    }

    /* ─── STICKY TOP BAR ─── */
    .sticky-bar {
      background: var(--navy);
      color: #fff;
      text-align: center;
      padding: 10px 20px;
      font-size: 14px;
      font-family: var(--font-head);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .sticky-bar a {
      color: var(--orange);
      font-weight: 700;
      text-decoration: none;
      font-size: 16px;
    }

    .pulse-dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      display: inline-block;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .5;
        transform: scale(1.4)
      }
    }

    /* ─── NAVBAR ─── */
    nav {
      background: #fff;
      box-shadow: 0 2px 16px rgba(27, 78, 155, .08);
      padding: 14px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .nav-phone {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy-dark);
      text-decoration: none;
    }

    .nav-cta {
      background: var(--orange);
      color: #fff;
      padding: 10px 22px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: background .2s;
    }

    .nav-cta:hover {
      background: var(--orange-dark);
    }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
      color: #fff;
      padding: 60px 5% 60px;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
      min-height: 580px;
    }

    /* Hero background image overlay */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1400&q=80') center/cover no-repeat;
      opacity: 0.08;
      z-index: 0;
    }

    .hero>* {
      position: relative;
      z-index: 1;
    }

    .hero::before {
      content: '';
      position: absolute;
      right: -80px;
      top: -80px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(239, 127, 26, .10);
      border: 60px solid rgba(239, 127, 26, .07);
      z-index: 1;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(239, 127, 26, .15);
      border: 1px solid rgba(239, 127, 26, .4);
      color: #FFD4A0;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 20px;
      margin-bottom: 18px;
      letter-spacing: .05em;
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
      letter-spacing: -.02em;
    }

    .hero h1 span {
      color: #FFBD6F;
    }

    .hero-sub {
      font-size: 17px;
      color: #BDCFE8;
      line-height: 1.65;
      margin-bottom: 24px;
      max-width: 520px;
    }

    .trust-bullets {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 32px;
    }

    .trust-bullets li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #BDCFE8;
    }

    .trust-bullets li::before {
      content: '✔';
      color: #22c55e;
      font-weight: 700;
      font-size: 13px;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--orange);
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: none;
      cursor: pointer;
      transition: background .2s;
    }

    .btn-primary:hover {
      background: var(--orange-light);
    }

    .btn-outline {
      background: transparent;
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      border: 2px solid rgba(255, 255, 255, .4);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    /* Hero Form Card */
    .hero-form-card {
      background: #fff;
      border-radius: 16px;
      padding: 32px 28px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
      position: relative;
      z-index: 2;
    }

    .hero-form-card h3 {
      font-family: var(--font-head);
      color: var(--navy);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .hero-form-card p {
      color: var(--gray);
      font-size: 13px;
      margin-bottom: 20px;
    }

    .form-field {
      margin-bottom: 14px;
    }

    .form-field label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 5px;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid var(--light-gray);
      border-radius: 8px;
      font-size: 14px;
      font-family: var(--font-body);
      color: var(--text-dark);
      outline: none;
      transition: border-color .15s;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(27, 78, 155, .1);
    }

    .form-trust {
      display: flex;
      gap: 10px;
      margin-top: 10px;
      flex-wrap: wrap;
    }

    .form-trust-item {
      font-size: 11px;
      color: var(--gray);
      display: flex;
      align-items: center;
      gap: 4px;
    }

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

    /* ─── STATS STRIP ─── */
    .stats-strip {
      background: var(--navy-dark);
      color: #fff;
      padding: 28px 5%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
    }

    .stat-item h3 {
      font-family: var(--font-head);
      font-size: 30px;
      font-weight: 800;
      color: #FFB347;
      margin-bottom: 4px;
    }

    .stat-item p {
      font-size: 13px;
      color: #BDCFE8;
    }

    /* ─── SECTION BASE ─── */
    section {
      padding: 64px 5%;
    }

    .section-title {
      font-family: var(--font-head);
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 800;
      color: var(--navy-dark);
      margin-bottom: 10px;
      letter-spacing: -.02em;
    }

    .section-sub {
      color: var(--gray);
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 640px;
    }

    .section-title span {
      color: var(--orange);
    }

    .eyebrow {
      font-size: 11px;
      color: var(--orange);
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: block;
    }

    /* ─── BENEFITS ─── */
    .benefits-section {
      position: relative;
      overflow: hidden;
    }

    .benefits-section::before {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 38%;
      background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=900&q=80') center/cover no-repeat;
      opacity: 0.06;
    }

    .benefits-inner {
      position: relative;
      z-index: 1;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .benefit-card {
      background: var(--off-white);
      border-radius: 16px;
      padding: 28px 24px;
      border: 1.5px solid var(--light-gray);
      transition: box-shadow .2s, transform .2s;
      position: relative;
      overflow: hidden;
    }

    .benefit-card:hover {
      box-shadow: 0 8px 32px rgba(27, 78, 155, .1);
      transform: translateY(-4px);
    }

    .benefit-icon {
      width: 52px;
      height: 52px;
      background: var(--navy);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }

    .benefit-card h4 {
      font-family: var(--font-head);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--navy);
    }

    .benefit-card p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.6;
    }

    .citation-link {
      font-size: 11px;
      color: var(--navy);
      text-decoration: none;
      margin-top: 8px;
      display: inline-block;
      border-bottom: 1px solid var(--light-gray);
    }

    /* ─── VISUAL BREAK: 2-col image + text layout ─── */
    .split-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      min-height: 420px;
    }

    .split-img {
      background-size: cover;
      background-position: center;
      min-height: 340px;
      position: relative;
    }

    .split-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(27, 78, 155, 0.3), transparent);
    }

    .split-content {
      padding: 60px 5%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--off-white);
    }

    .split-content-dark {
      padding: 60px 5%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: var(--navy);
      color: #fff;
    }

    .split-content-dark .section-title {
      color: #fff;
    }

    .split-content-dark .section-sub {
      color: #BDCFE8;
    }

    /* ─── EQUIPMENT ─── */
    .equipment-section {
      position: relative;
      background: var(--navy);
      color: #fff;
      overflow: hidden;
    }

    .equipment-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1551190822-a9333d879b1f?w=1400&q=80') center/cover no-repeat;
      opacity: 0.07;
    }

    .equipment-inner {
      position: relative;
      z-index: 1;
    }

    .equipment-section .section-title {
      color: #fff;
    }

    .equipment-section .section-sub {
      color: #BDCFE8;
    }

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

    .equip-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 14px;
      padding: 22px 18px;
      text-align: center;
      transition: background .2s;
    }

    .equip-card:hover {
      background: rgba(255, 255, 255, .13);
      border-color: rgba(239, 127, 26, .4);
    }

    .equip-icon {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .equip-card h4 {
      font-family: var(--font-head);
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .equip-items {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .equip-item {
      font-size: 12px;
      color: #7FA8CC;
      padding: 3px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    /* ─── PROCESS ─── */
    .process-section {
      background: #fff;
    }

    .process-with-image {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
      align-items: start;
    }

    .process-side-img {
      border-radius: 20px;
      overflow: hidden;
      position: sticky;
      top: 120px;
      height: 500px;
    }

    .process-side-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .process-wrap {
      position: relative;
    }

    .process-line {
      position: absolute;
      left: 27px;
      top: 24px;
      bottom: 24px;
      width: 2px;
      background: linear-gradient(to bottom, var(--orange), var(--navy-dark));
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }

    .process-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 18px 0;
      border-bottom: 1px solid var(--light-gray);
    }

    .step-num {
      width: 48px;
      height: 48px;
      background: var(--navy-dark);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 15px;
      flex-shrink: 0;
      border: 3px solid var(--orange);
    }

    .step-content h4 {
      font-family: var(--font-head);
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .step-content p {
      font-size: 13px;
      color: var(--gray);
      line-height: 1.55;
    }

    .process-columns {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    /* ─── SCOPE ─── */
    .scope-section {
      position: relative;
      overflow: hidden;
    }

    .scope-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1559757175-5700dde675bc?w=1400&q=80') center/cover no-repeat;
      opacity: 0.04;
    }

    .scope-inner {
      position: relative;
      z-index: 1;
    }

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

    .scope-card {
      border: 1.5px solid var(--light-gray);
      border-radius: 12px;
      padding: 20px 18px;
      cursor: pointer;
      transition: all .2s;
      display: flex;
      align-items: center;
      gap: 14px;
      background: #fff;
    }

    .scope-card:hover {
      border-color: var(--orange);
      background: #fff5f0;
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(239, 127, 26, .1);
    }

    .scope-icon {
      font-size: 26px;
    }

    .scope-card h4 {
      font-family: var(--font-head);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .scope-card p {
      font-size: 12px;
      color: var(--gray);
    }

    .scope-arrow {
      margin-left: auto;
      color: var(--orange);
      font-size: 18px;
    }

    /* ─── PRICING ─── */
    .pricing-section {
      position: relative;
      overflow: hidden;
    }

    .pricing-section::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 320px;
      background: url('https://images.unsplash.com/photo-1582750433449-648ed127bb54?w=700&q=80') center/cover no-repeat;
      opacity: 0.07;
      border-radius: 0 40px 40px 0;
    }

    .pricing-inner {
      position: relative;
      z-index: 1;
    }

    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      max-width: 700px;
      margin: 0 auto 28px;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(27, 78, 155, .08);
    }

    .pricing-table th {
      background: var(--navy-dark);
      color: #fff;
      padding: 16px 20px;
      font-family: var(--font-head);
      font-size: 14px;
      text-align: left;
    }

    .pricing-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--light-gray);
      font-size: 14px;
    }

    .pricing-table tr:last-child td {
      border-bottom: none;
    }

    .pricing-table .highlight-row td {
      background: #FFF7EE;
      font-weight: 700;
      color: var(--navy-dark);
      border-left: 3px solid var(--orange);
    }

    .pricing-cta {
      text-align: center;
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-section {
      position: relative;
      overflow: hidden;
    }

    .testimonials-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1400&q=80') center/cover no-repeat;
      opacity: 1;
    }

    .testi-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--navy) 0%, rgba(27, 78, 155, 0.94) 100%);
    }

    .testi-inner {
      position: relative;
      z-index: 1;
    }

    .testimonials-section .section-title {
      color: #fff;
    }

    .testimonials-section .section-sub {
      color: #BDCFE8;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testi-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 16px;
      padding: 28px 24px;
      transition: background .2s;
    }

    .testi-card:hover {
      background: rgba(255, 255, 255, .11);
    }

    .stars {
      color: #fbbf24;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .testi-card blockquote {
      font-size: 14px;
      color: #BDCFE8;
      line-height: 1.7;
      margin-bottom: 18px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border: 2px solid rgba(255, 255, 255, .15);
      overflow: hidden;
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .author-info h5 {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .author-info p {
      font-size: 12px;
      color: #7FA8CC;
    }

    /* ─── VIDEO SECTION ─── */
    .video-section {
      position: relative;
      background: var(--off-white);
      overflow: hidden;
    }

    .video-inner {
      text-align: center;
    }

    .video-thumb {
      max-width: 800px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      aspect-ratio: 16/9;
      box-shadow: 0 24px 64px rgba(27, 78, 155, .2);
    }

    .video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-thumb-overlay {
      position: absolute;
      inset: 0;
      background: rgba(27, 78, 155, 0.55);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .play-btn {
      width: 80px;
      height: 80px;
      background: var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      color: #fff;
      box-shadow: 0 0 0 12px rgba(239, 127, 26, .2);
      transition: transform .2s;
    }

    .video-thumb:hover .play-btn {
      transform: scale(1.08);
    }

    .video-thumb-overlay h4 {
      font-family: var(--font-head);
      font-size: 18px;
      color: #fff;
    }

    .video-thumb-overlay p {
      color: #BDCFE8;
      font-size: 13px;
    }

    /* ─── MID CTA ─── */
    .mid-cta {
      background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
      padding: 48px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      position: relative;
      overflow: hidden;
    }

    .mid-cta::before {
      content: '';
      position: absolute;
      right: -60px;
      top: -60px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
    }

    .mid-cta>* {
      position: relative;
      z-index: 1;
    }

    .mid-cta h2 {
      font-family: var(--font-head);
      font-size: 26px;
      font-weight: 800;
      color: #fff;
    }

    .mid-cta p {
      color: rgba(255, 255, 255, .8);
      font-size: 15px;
      margin-top: 6px;
    }

    .mid-cta-btns {
      display: flex;
      gap: 14px;
    }

    .btn-white {
      background: #fff;
      color: var(--orange);
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
    }

    .btn-outline-white {
      background: transparent;
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 15px;
      border: 2px solid rgba(255, 255, 255, .5);
      text-decoration: none;
    }

    /* ─── LOCATIONS ─── */
    .location-section {
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .location-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1400&q=80') center/cover no-repeat;
      opacity: 0.05;
    }

    .location-inner {
      position: relative;
      z-index: 1;
    }

    .location-section .section-title {
      color: #fff;
    }

    .location-section .section-sub {
      color: #BDCFE8;
    }

    .location-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .location-chip {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 30px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
      cursor: pointer;
    }

    .location-chip:hover {
      border-color: var(--orange);
      color: var(--orange-light);
      background: rgba(239, 127, 26, .12);
    }

    /* ─── FAQ ─── */
    .faq-section {
      background: var(--off-white);
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      background: #fff;
      border: 1.5px solid var(--light-gray);
      border-radius: 12px;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .faq-q {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 15px;
      color: var(--navy);
    }

    .faq-q:hover {
      color: var(--navy);
    }

    .faq-icon {
      font-size: 20px;
      color: var(--orange);
      flex-shrink: 0;
    }

    .faq-a {
      padding: 0 22px 18px;
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
      display: none;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    /* ─── FINAL FORM ─── */
    .final-form-section {
      background: var(--navy);
      padding: 64px 5%;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .final-form-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1584515933487-779824d29309?w=1400&q=80') center/cover no-repeat;
      opacity: 0.06;
    }

    .final-form-section>* {
      position: relative;
      z-index: 1;
    }

    .final-form-section .section-title {
      color: #fff;
    }

    .final-form-section .section-sub {
      color: #BDCFE8;
    }

    .form-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 32px;
    }

    .form-card h3 {
      font-family: var(--font-head);
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--navy);
    }

    .form-card .sub {
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 24px;
    }

    /* ─── MOBILE STICKY ─── */
    .mobile-sticky {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--navy);
      z-index: 999;
      padding: 10px 16px;
      gap: 10px;
    }

    .mob-btn {
      flex: 1;
      padding: 12px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 14px;
      text-align: center;
      text-decoration: none;
      border: none;
      cursor: pointer;
    }

    .mob-call {
      background: var(--orange);
      color: #fff;
    }

    .mob-wa {
      background: #25D366;
      color: #fff;
    }

    /* ─── FOOTER ─── */
    footer {
      background: #050f1e;
      color: #7FA8CC;
      padding: 40px 5%;
      text-align: center;
      font-size: 13px;
    }

    footer .footer-logo {
      margin-bottom: 16px;
      display: flex;
      justify-content: center;
    }


    /* ─── TRUST STRIP ─── */
    .trust-strip {
      background: #fff;
      border-top: 1px solid var(--light-gray);
      border-bottom: 1px solid var(--light-gray);
      padding: 18px 5%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

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

    /* ─── IMAGE GALLERY STRIP ─── */
    .img-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      height: 220px;
      overflow: hidden;
    }

    .img-strip-item {
      position: relative;
      overflow: hidden;
    }

    .img-strip-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .img-strip-item:hover img {
      transform: scale(1.06);
    }

    .img-strip-item .img-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(27, 78, 155, .8), transparent);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 20px 12px 10px;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .process-with-image {
        grid-template-columns: 1fr;
      }

      .process-side-img {
        display: none;
      }
    }

    @media (max-width: 900px) {

      .hero,
      .final-form-section {
        grid-template-columns: 1fr;
      }

      .benefits-grid,
      .testi-grid {
        grid-template-columns: 1fr 1fr;
      }

      .equipment-grid {
        grid-template-columns: 1fr 1fr;
      }

      .scope-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-strip {
        grid-template-columns: 1fr 1fr;
      }

      .process-columns {
        grid-template-columns: 1fr;
      }

      .split-section {
        grid-template-columns: 1fr;
      }

      .split-img {
        min-height: 260px;
      }

      .mobile-sticky {
        display: flex;
      }

      body {
        padding-bottom: 70px;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .img-strip {
        grid-template-columns: 1fr 1fr;
        height: auto;
      }

      .img-strip-item {
        height: 160px;
      }

      .nav-phone {
        display: none;
      }
    }

    @media (max-width: 600px) {

      .benefits-grid,
      .testi-grid,
      .scope-grid {
        grid-template-columns: 1fr;
      }

      .equipment-grid {
        grid-template-columns: 1fr 1fr;
      }

      .img-strip {
        grid-template-columns: 1fr 1fr;
      }
    }