    :root {
      --black: #0a0a0a;
      --dark1: #111010;
      --dark2: #1a1616;
      --dark3: #222020;
      --dark4: #2e2a2a;
      --red: #d72323;
      --red-dark: #a41a1a;
      --teal: #0b4c64;
      --cream: #f5eded;
      --white: #ffffff;
      --glass: rgba(255, 255, 255, 0.04);
      --border: rgba(255, 255, 255, 0.08);
      --muted: rgba(255, 255, 255, 0.40);
      --soft: rgba(255, 255, 255, 0.62);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--dark1);
      color: var(--white);
      overflow-x: hidden;

    }

    /* ── Noise grain overlay ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      opacity: .025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    /* ── KEYFRAMES ── */
    @keyframes marquee {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(215, 35, 35, .5)
      }

      50% {
        box-shadow: 0 0 0 12px rgba(215, 35, 35, 0)
      }
    }

    @keyframes shimmer {
      from {
        left: -60%
      }

      to {
        left: 130%
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes scanline {
      from {
        top: -4px
      }

      to {
        top: 100%
      }
    }

    @keyframes glow-pulse {

      0%,
      100% {
        opacity: .5
      }

      50% {
        opacity: 1
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    @keyframes borderPop {
      from {
        transform: scaleX(0)
      }

      to {
        transform: scaleX(1)
      }
    }

    /* ── LAYOUT ── */
    .wrap {
      max-width: 1200px;
      margin: auto;
      padding: 0 2rem;
    }

    /* ── EYEBROW ── */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: .9rem;
    }

    .eyebrow::before {
      content: '';
      display: block;
      width: 30px;
      height: 2px;
      background: var(--red);
    }

    .eyebrow span {
      font-family: 'Rajdhani', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--red);
    }

    .eyebrow-center {
      justify-content: center;
    }

    .eyebrow-center::before,
    .eyebrow-center::after {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--red);
    }

    /* ── SECTION TITLE ── */
    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: .93;
      letter-spacing: 1.5px;
      color: var(--white);
    }

    .sec-title .red {
      color: var(--red);
    }

    .sec-title .outline {
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, .65);
      color: transparent;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
             HERO
          ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .hero {
      position: relative;
      min-height: 58vh;
      display: flex;
      align-items: center;
      background:
        radial-gradient(ellipse 80% 60% at 75% 40%, rgba(215, 35, 35, .16) 0%, transparent 60%),
        radial-gradient(ellipse 55% 50% at 15% 70%, rgba(11, 76, 100, .14) 0%, transparent 55%),
        linear-gradient(155deg, #0a0a0a 0%, #160d0d 45%, #0d0d0d 100%);
      overflow: hidden;
      padding-top: 80px;
    }

    /* Animated grid */
    .hero-grid {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
      background-size: 52px 52px;
    }

    /* Diagonal red accent panel */
    .hero-band {
      position: absolute;
      z-index: 2;
      top: -10%;
      right: -4%;
      width: 48%;
      height: 130%;
      background: linear-gradient(160deg, rgba(215, 35, 35, .055) 0%, transparent 55%);
      border-left: 1px solid rgba(215, 35, 35, .15);
      transform: skewX(-8deg);
    }

    /* Vertical red accent lines */
    .hero-vline {
      position: absolute;
      z-index: 2;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
      opacity: .18;
      animation: glow-pulse 3s ease infinite;
    }

    .hero-vline-1 {
      left: 8%;
    }

    .hero-vline-2 {
      right: 10%;
      animation-delay: 1.5s;
    }

    .hero-inner {
      position: relative;
      z-index: 5;
      width: 100%;
      max-width: 1200px;
      margin: auto;
      padding: 2.5rem 2rem;
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      align-items: center;
      gap: 3.5rem;
    }

    /* badge */
    .h-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 5px 14px;
      border-radius: 100px;
      border: 1px solid rgba(215, 35, 35, .4);
      background: rgba(215, 35, 35, .07);
      backdrop-filter: blur(12px);
      margin-bottom: 1rem;
      animation: fadeUp .6s ease both;
    }

    .h-badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--red);
      animation: pulse 2s ease infinite;
    }

    .h-badge span {
      color: rgba(255, 255, 255, .7);
      font-family: 'Rajdhani', sans-serif;
      font-size: .67rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
    }

    .h-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: .92;
      letter-spacing: 2px;
      color: var(--white);
      margin-bottom: .8rem;
      animation: fadeUp .7s .1s ease both;
    }

    .h-title .red {
      color: var(--red);
    }

    .h-title .outline {
      -webkit-text-stroke: 1.5px rgba(255, 255, 255, .6);
      color: transparent;
    }

    /* animated red underline on title */
    .h-title-underline {
      display: block;
      height: 3px;
      width: 80px;
      background: linear-gradient(90deg, var(--red), var(--teal));
      margin: .6rem 0 .8rem;
      animation: borderPop .8s .4s ease both;
      transform-origin: left;
    }

    .h-sub {
      color: rgba(255, 255, 255, .48);
      font-size: .88rem;
      line-height: 1.7;
      max-width: 460px;
      margin-bottom: 1.4rem;
      font-weight: 300;
      animation: fadeUp .7s .2s ease both;
    }

    .h-ctas {
      display: flex;
      gap: .9rem;
      flex-wrap: wrap;
      animation: fadeUp .7s .3s ease both;
    }

    /* BUTTONS */
    .btn-red {
      padding: 10px 24px;
      border-radius: 4px;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      letter-spacing: 1px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(215, 35, 35, .35);
    }

    .btn-red::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .15) 50%, transparent 100%);
      left: -100%;
      transition: left .4s ease;
    }

    .btn-red:hover::after {
      left: 100%;
    }

    .btn-red:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(215, 35, 35, .5);
    }

    .btn-ghost {
      padding: 9px 22px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, .18);
      color: rgba(255, 255, 255, .72);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 600;
      font-size: .85rem;
      letter-spacing: 1px;
      background: rgba(255, 255, 255, .03);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all .3s ease;
      backdrop-filter: blur(8px);
    }

    .btn-ghost:hover {
      border-color: var(--red);
      color: #fff;
      background: rgba(215, 35, 35, .1);
      transform: translateY(-2px);
    }

    /* hero right stat cards */
    .hero-cards {
      display: flex;
      flex-direction: column;
      gap: .7rem;
    }

    .h-stat {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .07);
      border-left: 3px solid transparent;
      border-radius: 10px;
      padding: .9rem 1.1rem;
      display: flex;
      align-items: center;
      gap: .9rem;
      backdrop-filter: blur(16px);
      transition: all .3s ease;
    }

    .h-stat:nth-child(1) {
      border-left-color: var(--red);
      animation: fadeUp .6s .4s ease both;
    }

    .h-stat:nth-child(2) {
      border-left-color: var(--teal);
      animation: fadeUp .6s .5s ease both;
    }

    .h-stat:nth-child(3) {
      border-left-color: #444;
      animation: fadeUp .6s .6s ease both;
    }

    .h-stat:nth-child(4) {
      border-left-color: var(--red);
      animation: fadeUp .6s .7s ease both;
    }

    .h-stat:hover {
      background: rgba(255, 255, 255, .06);
      transform: translateX(-4px);
    }

    .h-stat-icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      color: #fff;
    }

    .icon-red {
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      box-shadow: 0 4px 12px rgba(215, 35, 35, .3);
    }

    .icon-teal {
      background: linear-gradient(135deg, var(--teal), #063a50);
      box-shadow: 0 4px 12px rgba(11, 76, 100, .3);
    }

    .icon-dark {
      background: linear-gradient(135deg, #333, #1a1a1a);
    }

    .h-stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      line-height: 1;
      color: #fff;
      letter-spacing: .5px;
    }

    .h-stat-num span {
      color: var(--red);
    }

    .h-stat-lbl {
      color: rgba(255, 255, 255, .38);
      font-size: .63rem;
      font-weight: 500;
      letter-spacing: .5px;
      font-family: 'Rajdhani', sans-serif;
      text-transform: uppercase;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
             MARQUEE
          ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .marquee-wrap {
      background: var(--red);
      overflow: hidden;
      padding: 11px 0;
      border-top: 1px solid rgba(255, 255, 255, .1);
      border-bottom: 1px solid var(--red-dark);
      position: relative;
      z-index: 10;
    }

    /* Overlay stripe pattern */
    .marquee-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255, 255, 255, .04) 60px, rgba(255, 255, 255, .04) 61px);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    .m-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0 2.5rem;
      white-space: nowrap;
      font-family: 'Bebas Neue', sans-serif;
      font-size: .9rem;
      letter-spacing: 3.5px;
      color: rgba(255, 255, 255, .92);
    }

    .m-sep {
      color: rgba(255, 255, 255, .35);
      font-size: .38rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
             SECTION CHROME
          ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .page-sec {
      padding: 5rem 0;
      position: relative;
    }

    .sec-head {
      margin-bottom: 3rem;
    }

    .sec-head p {
      color: rgba(255, 255, 255, .38);
      font-size: .9rem;
      max-width: 520px;
      line-height: 1.75;
      font-weight: 300;
      margin-top: .6rem;
    }

    /* Premium section title bar */
    /* ── Premium section titles ── */
    .sec-title-bar {
      display: inline-block;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      letter-spacing: 2px;
      color: var(--white);
      position: relative;
      margin-bottom: 2rem;
      padding-bottom: .5rem;
    }

    /* red underline accent */
    .sec-title-bar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--teal), transparent);
    }

    /* left teal bracket */
    .sec-title-bar::before {
      content: '';
      position: absolute;
      left: -14px;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--red), var(--teal));
      border-radius: 2px;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           SERVICES GRID
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .services-sec {
      background: var(--dark1);
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
    }

    .svc-card {
      background: var(--dark2);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 6px;
      position: relative;
      overflow: hidden;
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
      display: flex;
      flex-direction: column;
    }

    /* Corner bracket accents */
    .svc-card::before,
    .svc-card::after {
      content: '';
      position: absolute;
      z-index: 3;
      pointer-events: none;
      width: 18px;
      height: 18px;
      border-color: var(--red);
      border-style: solid;
      opacity: 0;
      transition: opacity .35s ease;
    }

    .svc-card::before {
      top: 8px;
      left: 8px;
      border-width: 2px 0 0 2px;
    }

    .svc-card::after {
      bottom: 8px;
      right: 8px;
      border-width: 0 2px 2px 0;
    }

    .svc-card:hover::before,
    .svc-card:hover::after {
      opacity: 1;
    }

    /* Top color sweep */
    .svc-card .svc-top-line {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      z-index: 4;
      background: linear-gradient(90deg, var(--red), var(--teal));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .45s ease;
    }

    .svc-card:hover .svc-top-line {
      transform: scaleX(1);
    }

    .svc-card:hover {
      transform: translateY(-6px);
      border-color: rgba(215, 35, 35, .3);
      box-shadow: 0 20px 50px rgba(0, 0, 0, .5), 0 0 0 1px rgba(215, 35, 35, .1);
    }

    /* Image */
    .svc-img {
      width: 100%;
      height: 210px;
      overflow: hidden;
      background: #fff;
      position: relative;
    }

    /* scan-line removed */
    .svc-img img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      display: block;
      transition: transform .55s ease;
    }

    .svc-card:hover .svc-img img {
      transform: scale(1.06);
    }

    /* Content */
    .svc-content {
      padding: 1.4rem;
      background: var(--dark2);
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .svc-content::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--red);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .4s ease;
    }

    .svc-card:hover .svc-content::before {
      transform: scaleY(1);
    }

    .svc-icon {
      width: 36px;
      height: 36px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      margin-bottom: .7rem;
      background: rgba(215, 35, 35, .1);
      color: var(--red);
      border: 1px solid rgba(215, 35, 35, .2);
      transition: all .3s ease;
    }

    .svc-card:hover .svc-icon {
      background: var(--red);
      color: #fff;
      border-color: var(--red);
      transform: rotate(6deg) scale(1.08);
    }

    .svc-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.25rem;
      letter-spacing: .5px;
      color: #fff;
      margin-bottom: .4rem;
      line-height: 1.15;
    }

    .svc-desc {
      color: rgba(255, 255, 255, .38);
      font-size: .78rem;
      line-height: 1.55;
      font-weight: 300;
      margin-bottom: .7rem;
      flex: 1;
    }

    .svc-list {
      list-style: none;
      margin-bottom: .7rem;
    }

    .svc-list li {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, .55);
      font-size: .75rem;
      margin-bottom: .25rem;
    }

    .svc-list li i {
      color: var(--red);
      font-size: .5rem;
    }

    .svc-tag {
      display: inline-block;
      padding: 3px 9px;
      border-radius: 2px;
      background: rgba(215, 35, 35, .1);
      color: rgba(215, 35, 35, .9);
      font-family: 'Rajdhani', sans-serif;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: 1px;
      border: 1px solid rgba(215, 35, 35, .25);
      text-transform: uppercase;
      align-self: flex-start;
    }

    /* reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           CONTACT FORM
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .form-sec {
      background: var(--dark2);
    }

    .form-shell {
      background: rgba(255, 255, 255, .03);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 6px;
      padding: 3rem;
      max-width: 860px;
      margin: auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
      position: relative;
      overflow: hidden;
    }

    /* form shell corner brackets */
    .form-shell::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 40px;
      height: 40px;
      border-top: 2px solid var(--red);
      border-left: 2px solid var(--red);
    }

    .form-shell::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 40px;
      height: 40px;
      border-bottom: 2px solid var(--teal);
      border-right: 2px solid var(--teal);
    }

    .f-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.3rem;
    }

    .f-group {
      margin-bottom: 1.2rem;
    }

    .f-label {
      display: flex;
      align-items: center;
      gap: 7px;
      font-family: 'Rajdhani', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      margin-bottom: .45rem;
    }

    .f-label i {
      color: var(--red);
      font-size: .72rem;
    }

    .f-input,
    .f-select,
    .f-textarea {
      width: 100%;
      padding: 12px 15px;
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, .09);
      background: rgba(255, 255, 255, .04);
      font-family: 'Outfit', sans-serif;
      font-size: .9rem;
      color: #fff;
      transition: all .3s ease;
      outline: none;
    }

    .f-input:focus,
    .f-select:focus,
    .f-textarea:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(215, 35, 35, .1);
      background: rgba(255, 255, 255, .06);
    }

    .f-input::placeholder,
    .f-textarea::placeholder {
      color: rgba(255, 255, 255, .2);
    }

    .f-select {
      appearance: none;
      cursor: pointer;
      color: rgba(255, 255, 255, .65);
    }

    .f-select option {
      background: #1a1616;
      color: #fff;
    }

    .f-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .f-check {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      color: rgba(255, 255, 255, .4);
      font-size: .84rem;
    }

    .f-check input {
      width: 15px;
      height: 15px;
      accent-color: var(--red);
      cursor: pointer;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           FAQ
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .faq-sec {
      background: var(--dark1);
    }

    .faq-list {
      max-width: 780px;
      margin: auto;
    }

    .faq-item {
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 4px;
      margin-bottom: .9rem;
      overflow: hidden;
      background: rgba(255, 255, 255, .025);
      transition: border-color .3s, box-shadow .3s;
      position: relative;
    }

    .faq-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--red);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .3s ease;
    }

    .faq-item:hover::before,
    .faq-item.open::before {
      transform: scaleY(1);
    }

    .faq-item:hover {
      border-color: rgba(215, 35, 35, .2);
    }

    .faq-item.open {
      border-color: rgba(215, 35, 35, .4);
      box-shadow: 0 8px 28px rgba(215, 35, 35, .1);
    }

    .faq-btn {
      width: 100%;
      padding: 1.3rem 1.6rem;
      background: none;
      border: none;
      font-family: 'Outfit', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .75);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      text-align: left;
      transition: color .3s;
      gap: 1rem;
    }

    .faq-btn:hover {
      color: #fff;
    }

    .faq-item.open .faq-btn {
      color: var(--red);
    }

    .faq-icon {
      color: var(--red);
      font-size: .8rem;
      transition: transform .38s cubic-bezier(.16, 1, .3, 1);
      flex-shrink: 0;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .48s cubic-bezier(.16, 1, .3, 1);
    }

    .faq-body.open {
      max-height: 400px;
    }

    .faq-body-inner {
      padding: 0 1.6rem 1.4rem;
      color: rgba(255, 255, 255, .4);
      font-size: .87rem;
      line-height: 1.75;
      font-weight: 300;
    }

    .faq-body-inner ul {
      padding-left: .8rem;
      margin-top: .5rem;
    }

    .faq-body-inner li {
      margin-bottom: .35rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           TRUST BAR
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .trust-bar {
      background: var(--black);
      padding: 1.2rem 0;
      border-top: 1px solid rgba(255, 255, 255, .06);
      position: relative;
    }

    .trust-bar::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--red) 30%, var(--teal) 70%, transparent);
    }

    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3rem;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      padding: 0 2rem;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, .5);
      font-size: .8rem;
      font-weight: 600;
      font-family: 'Rajdhani', sans-serif;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .trust-item i {
      color: var(--red);
    }

    .trust-item .fas.fa-star {
      color: #f5a623;
      font-size: .65rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
           RESPONSIVE
        ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 2rem;
        text-align: center;
      }

      .h-sub {
        margin: 0 auto 1.4rem;
      }

      .h-ctas {
        justify-content: center;
      }

      .hero-cards {
        display: none;
      }

      .svc-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .f-grid {
        grid-template-columns: 1fr;
      }

      .trust-inner {
        gap: 1.8rem;
      }
    }

    @media (max-width: 768px) {
      .hero {
        min-height: auto;
      }

      .hero-inner {
        padding: 3rem 1.2rem 2rem;
      }

      .h-title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
      }

      .h-title-underline {
        margin: .4rem auto .7rem;
      }

      .svc-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
      }

      .form-shell {
        padding: 2rem 1.4rem;
      }

      .trust-inner {
        gap: 1.2rem;
      }

      .trust-item {
        font-size: .72rem;
      }
    }

    @media (max-width: 480px) {
      .h-ctas {
        flex-direction: column;
        align-items: center;
      }

      .btn-red,
      .btn-ghost {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }

      .svc-grid {
        max-width: 100%;
      }

      .trust-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
      }

      .sec-title {
        font-size: 2.2rem;
      }

      .page-sec {
        padding: 3.5rem 0;
      }
    }
