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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: #111827;
      background: #fff;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button {
      font-family: inherit;
      border: none;
      outline: none;
      cursor: pointer;
    }

    /* ── TOKENS ─────────────────────────────────────────── */
    :root {
      --blue: #2C44E4;
      --bluedk: #1e30c0;
      --yellow: #FFE93B;
      --yeldk: #e6d000;
      --g50: #f9fafb;
      --g100: #f3f4f6;
      --g200: #e5e7eb;
      --g500: #6b7280;
      --g700: #374151;
      --g900: #111827;
      --mono: 'Space Mono', monospace;
      --r: 16px;
      --rsm: 8px;
      --sh: 0 4px 24px rgba(44, 68, 228, .10);
      --shlg: 0 12px 48px rgba(44, 68, 228, .16);
      --ease: all .3s cubic-bezier(.4, 0, .2, 1);
    }

    /* ── LAYOUT ─────────────────────────────────────────── */
    .wrap {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .sec {
      padding: 40px 0;
    }

    /* decreased the section padding from 80 to 40px */

    /* ── TYPE HELPERS ───────────────────────────────────── */
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--blue);
      background: rgba(44, 68, 228, .08);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .chip::before {
      content: '';
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--blue);
      flex-shrink: 0;
    }

    .chip-y {
      background: rgba(255, 233, 59, .14);
      color: var(--yellow);
    }

    .chip-y::before {
      background: var(--yellow);
    }

    .h2 {
      font-size: clamp(26px, 3.2vw, 44px);
      font-weight: 800;
      line-height: 1.18;
      color: var(--g900);
    }

    .h2 b {
      color: var(--blue);
      font-weight: 800;
    }

    .h2 em {
      font-style: normal;
      position: relative;
      display: inline-block;
    }

    .h2 em::after {
      content: '';
      position: absolute;
      bottom: 1px;
      left: 0;
      width: 100%;
      height: 7px;
      background: var(--yellow);
      z-index: -1;
      border-radius: 2px;
    }

    .h2w {
      color: #fff;
    }

    .sub {
      font-size: 16px;
      color: var(--g500);
      line-height: 1.7;
      max-width: 680px;
      margin-top: 14px;
    }

    .subw {
      color: rgba(255, 255, 255, .62);
    }

    .nowrap-title {
      white-space: nowrap;
    }

    /* ── BUTTONS ────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 13px 28px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 600;
      transition: var(--ease);
      white-space: nowrap;
    }

    .btn svg {
      width: 16px;
      height: 16px;
      transition: transform .3s;
      flex-shrink: 0;
    }

    .btn:hover svg {
      transform: translateX(3px);
    }

    .btn-blue {
      background: var(--blue);
      color: #fff;
      box-shadow: 0 4px 18px rgba(44, 68, 228, .35);
    }

    .btn-blue:hover {
      background: var(--bluedk);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(44, 68, 228, .45);
    }

    .btn-yellow {
      background: var(--yellow);
      color: #000;
      box-shadow: 0 4px 18px rgba(255, 233, 59, .4);
    }

    .btn-yellow:hover {
      background: var(--yeldk);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, .35);
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, .1);
      border-color: #fff;
      transform: translateY(-2px);
    }

    /* ── REVEAL ANIMATIONS ──────────────────────────────── */
    .rv {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }

    .rv.in {
      opacity: 1;
      transform: translateY(0);
    }

    .d1 {
      transition-delay: .08s;
    }

    .d2 {
      transition-delay: .16s;
    }

    .d3 {
      transition-delay: .24s;
    }

    .d4 {
      transition-delay: .32s;
    }

    .d5 {
      transition-delay: .40s;
    }

    /* ════════════════════════════════════════════════════
       HEADER
    ════════════════════════════════════════════════════ */
    #hdr {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 999;
      padding: 18px 0;
      transition: var(--ease);
    }

    #hdr.scrolled {
      background: rgba(255, 255, 255, .96);
      backdrop-filter: blur(18px);
      padding: 12px 0;
      box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 19px;
      font-weight: 900;
      color: #fff;
      flex-shrink: 0;
      transition: var(--ease);
    }

    #hdr.scrolled .logo {
      color: var(--g900);
    }

    .lbox {
      width: 36px;
      height: 36px;
      background: var(--yellow);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 900;
      color: #000;
      flex-shrink: 0;
    }

    .logo .ac {
      color: var(--yellow);
    }

    #hdr.scrolled .logo .ac {
      color: var(--blue);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      padding: 7px 14px;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255, 255, 255, .82);
      border-radius: 100px;
      transition: var(--ease);
    }

    .nav-links a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .12);
    }

    #hdr.scrolled .nav-links a {
      color: var(--g700);
    }

    #hdr.scrolled .nav-links a:hover {
      color: var(--blue);
      background: rgba(44, 68, 228, .07);
    }

    .nav-cta .btn {
      font-size: 13px;
      padding: 10px 20px;
    }

    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 6px;
      background: transparent;
      border-radius: 6px;
    }

    .ham span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: var(--ease);
    }

    #hdr.scrolled .ham span {
      background: var(--g900);
    }

    /* Drawer */
    .drawer {
      display: none;
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 998;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
    }

    .drawer.open {
      display: flex;
    }

    .drawer a {
      font-size: 22px;
      font-weight: 700;
      color: var(--g900);
      padding: 11px 28px;
      border-radius: var(--r);
      transition: var(--ease);
    }

    .drawer a:hover {
      background: var(--g100);
      color: var(--blue);
    }

    .dclose {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      background: var(--g100);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--g900);
      cursor: pointer;
    }

    .drawer .btn {
      margin-top: 12px;
      font-size: 15px;
      padding: 12px 28px;
    }

    /* ════════════════════════════════════════════════════
       HERO — locked to 100vh, zero overflow
    ════════════════════════════════════════════════════ */
    #hero {
      position: relative;
      height: 100svh;
      min-height: 100svh;
      background: var(--blue);
      display: flex;
      align-items: center;
      padding: clamp(96px, 12vh, 140px) 0 clamp(48px, 8vh, 88px);
      overflow: hidden;
    }

    /* bg decoration */
    .hdeco {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .hdeco::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -80px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(255, 233, 59, .16) 0%, transparent 68%);
      border-radius: 50%;
    }

    .hdeco::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -60px;
      width: 340px;
      height: 340px;
      background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 68%);
      border-radius: 50%;
    }

    .hgrid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
      background-size: 56px 56px;
    }

    .hring {
      position: absolute;
      width: 150px;
      height: 150px;
      border: 2px solid rgba(255, 233, 59, .18);
      border-radius: 50%;
      top: 30%;
      right: 12%;
      animation: spin20 20s linear infinite;
    }

    @keyframes spin20 {
      to {
        transform: rotate(360deg);
      }
    }

    /* hero content */
    .hero-inner {
      position: relative;
      z-index: 2;
      display: block;
      width: 100%;
      max-width: 980px;
    }

    /* left text */
    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      color: var(--yellow);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 9px 18px;
      border-radius: 100px;
      margin-bottom: 24px;
      animation: fup .8s ease both;
    }

    .hero-chip i {
      width: 5px;
      height: 5px;
      background: var(--yellow);
      border-radius: 50%;
      display: inline-block;
      animation: blink 2s ease-in-out infinite;
      font-style: normal;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .35
      }
    }

    .h1 {
      font-size: clamp(40px, 6.8vw, 84px);
      font-weight: 900;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 24px;
      animation: fup .9s ease .08s both;
    }

    .h1 .yl {
      color: var(--yellow);
    }

    .hero-p {
      font-size: clamp(17px, 2vw, 24px);
      color: rgba(255, 255, 255, .78);
      line-height: 1.55;
      max-width: 760px;
      margin-bottom: 34px;
      animation: fup .9s ease .16s both;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      animation: fup .9s ease .24s both;
    }

    .hero-btns .btn {
      font-size: 15px;
      padding: 15px 32px;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, .13);
      animation: fup .9s ease .32s both;
    }

    .hs-n {
      font-size: 26px;
      font-weight: 900;
      color: var(--yellow);
      line-height: 1;
      font-family: var(--mono);
    }

    .hs-l {
      font-size: 12px;
      color: rgba(255, 255, 255, .55);
      margin-top: 3px;
      font-weight: 500;
    }

    /* right card */
    .hero-card {
      background: rgba(255, 255, 255, .09);
      border: 1px solid rgba(255, 255, 255, .15);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 24px;
      animation: fup 1s ease .3s both;
    }

    .hcrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .hcico {
      width: 46px;
      height: 46px;
      background: var(--yellow);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      flex-shrink: 0;
    }

    .hclbl {
      font-size: 11px;
      color: rgba(255, 255, 255, .55);
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hcval {
      font-size: 26px;
      font-weight: 900;
      color: #fff;
      font-family: var(--mono);
      line-height: 1.1;
    }

    .hcbt {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: rgba(255, 255, 255, .55);
      font-weight: 600;
      margin-bottom: 6px;
    }

    .hcbt span:last-child {
      color: var(--yellow);
    }

    .hcbar {
      height: 7px;
      background: rgba(255, 255, 255, .12);
      border-radius: 100px;
      overflow: hidden;
    }

    .hcfill {
      height: 100%;
      border-radius: 100px;
      background: linear-gradient(90deg, var(--yellow), #3d57f5);
      width: 87%;
    }

    .hcmini {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 16px;
    }

    .hcm {
      background: rgba(255, 255, 255, .07);
      border-radius: 10px;
      padding: 12px;
      text-align: center;
    }

    .hcmv {
      font-size: 18px;
      font-weight: 900;
      color: #fff;
      font-family: var(--mono);
    }

    .hcmv.yl {
      color: var(--yellow);
    }

    .hcml {
      font-size: 10px;
      color: rgba(255, 255, 255, .5);
      margin-top: 2px;
    }

    .hcbadges {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .hcbadge {
      background: var(--yellow);
      color: #000;
      font-size: 11px;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: 100px;
    }

    @keyframes fup {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* ════════════════════════════════════════════════════
       ABOUT
    ════════════════════════════════════════════════════ */
    #about {
      background: #fff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
      /* changed gap from 58 to 30px for better visual appearence */
    }

    .abox {
      background: var(--blue);
      border-radius: 22px;
      padding: 40px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .abox::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 180px;
      height: 180px;
      background: rgba(255, 233, 59, .14);
      border-radius: 50%;
    }

    .abig {
      font-size: 64px;
      font-weight: 900;
      color: var(--yellow);
      line-height: 1;
      font-family: var(--mono);
      display: block;
      margin-bottom: 6px;
      position: relative;
      z-index: 1;
    }

    .abox p {
      font-size: 14px;
      color: rgba(255, 255, 255, .72);
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    .apills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
      position: relative;
      z-index: 1;
    }

    .apill {
      background: rgba(255, 255, 255, .13);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
    }

    .about-content .sub {
      margin-bottom: 28px;
    }

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

    .acard {
      background: var(--g50);
      border: 1px solid var(--g200);
      border-radius: var(--r);
      padding: 18px;
      transition: var(--ease);
    }

    .acard:hover {
      border-color: var(--blue);
      background: rgba(44, 68, 228, .03);
      transform: translateY(-2px);
    }

    .aico {
      width: 40px;
      height: 40px;
      background: rgba(44, 68, 228, .09);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .acard h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--g900);
      margin-bottom: 5px;
    }

    .acard p {
      font-size: 12px;
      color: var(--g500);
      line-height: 1.5;
    }

    /* ════════════════════════════════════════════════════
       SERVICES
    ════════════════════════════════════════════════════ */
    #services {
      background: var(--g50);
    }

    .sechd {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 52px;
    }

    .sechd .chip {
      display: flex;
      width: fit-content;
      margin: 0 auto 16px;
    }

    .sechd .sub {
      margin: 12px auto 0;
    }

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

    .svcard {
      background: #fff;
      border: 1px solid var(--g200);
      border-radius: 18px;
      padding: 30px 26px;
      position: relative;
      overflow: hidden;
      transition: var(--ease);
      cursor: default;
    }

    .svcard::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--blue);
      opacity: 0;
      transition: var(--ease);
      z-index: 0;
    }

    .svcard:hover {
      transform: translateY(-5px);
      box-shadow: var(--shlg);
      border-color: transparent;
    }

    .svcard:hover::before {
      opacity: 1;
    }

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

    .svico {
      width: 54px;
      height: 54px;
      background: rgba(44, 68, 228, .08);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 18px;
      transition: var(--ease);
    }

    .svcard:hover .svico {
      background: rgba(255, 233, 59, .22);
    }

    .svcard h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--g900);
      margin-bottom: 10px;
      transition: var(--ease);
    }

    .svcard:hover h3 {
      color: #fff;
    }

    .svcard p {
      font-size: 13px;
      color: var(--g500);
      line-height: 1.65;
      transition: var(--ease);
    }

    .svcard:hover p {
      color: rgba(255, 255, 255, .78);
    }

    .svlnk {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 600;
      color: var(--blue);
      margin-top: 16px;
      transition: var(--ease);
    }

    .svlnk svg {
      width: 14px;
      height: 14px;
      transition: transform .3s;
    }

    .svcard:hover .svlnk {
      color: var(--yellow);
    }

    .svcard:hover .svlnk svg {
      transform: translateX(4px);
    }

    /* ════════════════════════════════════════════════════
       WHY CHOOSE US
    ════════════════════════════════════════════════════ */
    #why {
      background: #fff;
    }

    .whygrid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .wpts {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .wpt {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 20px;
      border-radius: var(--r);
      border: 1px solid transparent;
      transition: var(--ease);
    }

    .wpt:hover {
      border-color: var(--g200);
      background: var(--g50);
    }

    .wpn {
      width: 44px;
      height: 44px;
      background: var(--blue);
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
      color: #fff;
      font-family: var(--mono);
      flex-shrink: 0;
    }

    .wpt h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--g900);
      margin-bottom: 5px;
    }

    .wpt p {
      font-size: 13px;
      color: var(--g500);
      line-height: 1.6;
    }

    .wquote {
      margin-top: 32px;
      background: var(--g900);
      border-radius: var(--r);
      padding: 22px 26px;
      border-left: 4px solid var(--yellow);
    }

    .wquote p {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      line-height: 1.5;
    }

    .wquote p span {
      color: var(--yellow);
    }

    /* right panel */
    .wpanel {
      background: linear-gradient(135deg, var(--blue), var(--bluedk));
      border-radius: 22px;
      padding: 40px 36px;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .wpanel::after {
      content: '';
      position: absolute;
      top: -70px;
      right: -70px;
      width: 240px;
      height: 240px;
      background: rgba(255, 233, 59, .11);
      border-radius: 50%;
      pointer-events: none;
    }

    .wpanel h3 {
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .wpanel>p {
      font-size: 13px;
      color: rgba(255, 255, 255, .65);
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    .wmetrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 26px;
      position: relative;
      z-index: 1;
    }

    .wm {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 12px;
      padding: 18px;
      text-align: center;
    }

    .wmv {
      font-size: 28px;
      font-weight: 900;
      color: var(--yellow);
      font-family: var(--mono);
      display: block;
    }

    .wml {
      font-size: 11px;
      color: rgba(255, 255, 255, .6);
      margin-top: 3px;
    }

    .wtags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
      position: relative;
      z-index: 1;
    }

    .wtag {
      background: rgba(255, 233, 59, .14);
      color: var(--yellow);
      font-size: 11px;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 100px;
    }

    /* ════════════════════════════════════════════════════
       GOALS
    ════════════════════════════════════════════════════ */
    #goals {
      background: var(--g900);
    }

    .ghd {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }

    .ghd .chip {
      display: flex;
      width: fit-content;
      margin: 0 auto 16px;
    }

    .ghd .sub {
      margin: 12px auto 0;
    }

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

    .gcard {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .09);
      border-radius: 18px;
      padding: 20px 20px;
      position: relative;
      overflow: hidden;
      transition: var(--ease);
    }

    .gcard::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--yellow));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--ease);
    }

    .gcard:hover {
      background: rgba(255, 255, 255, .08);
      transform: translateY(-4px);
    }

    .gcard:hover::after {
      transform: scaleX(1);
    }

    /* .gico {
      font-size: 30px;
      margin-bottom: 16px;
      display: block;
    } */

    /* Adding New gico css for single line logo and text */
    .gico {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
    }

    .gico span {
      font-size: 30px;
      line-height: 1;
    }

    .gico h3 {
      margin: 0;
    }

    .gcard h3 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
    }

    .gcard p {
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.65;
    }

    .gtag {
      display: inline-block;
      background: rgba(44, 68, 228, .3);
      color: #a0b4ff;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      margin-top: 14px;
    }

    /* ════════════════════════════════════════════════════
       AUDIENCE
    ════════════════════════════════════════════════════ */
    #audience {
      background: #fff;
    }

    .audhd {
      text-align: center;
      margin: 0 auto;
    }

    .audhd .chip {
      display: flex;
      width: fit-content;
      margin: 0 auto 16px;
    }

    .audhd .sub {
      margin: 12px auto 0;
    }

    .audgrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 52px;
    }

    .audcard {
      display: flex;
      gap: 22px;
      align-items: flex-start;
      padding: 28px;
      background: #fff;
      border: 1px solid var(--g200);
      border-radius: 18px;
      transition: var(--ease);
    }

    .audcard:hover {
      box-shadow: var(--sh);
      border-color: rgba(44, 68, 228, .2);
      transform: translateY(-3px);
    }

    .audico {
      width: 50px;
      height: 50px;
      background: var(--blue);
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .audbody h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--g900);
      margin-bottom: 7px;
    }

    .audbody p {
      font-size: 13px;
      color: var(--g500);
      line-height: 1.65;
    }

    .audtags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 12px;
    }

    .audtag {
      font-size: 10px;
      font-weight: 600;
      color: var(--blue);
      background: rgba(44, 68, 228, .08);
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* ════════════════════════════════════════════════════
       CTA
    ════════════════════════════════════════════════════ */
    #cta {
      background: var(--blue);
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(255, 233, 59, .14) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    #cta::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(0, 0, 0, .18) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .ctain {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 66px 0;
    }

    .ctachip {
      display: inline-block;
      background: rgba(255, 255, 255, .14);
      color: var(--yellow);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    .ctah2 {
      font-size: clamp(32px, 5vw, 62px);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .ctah2 .yl {
      color: var(--yellow);
    }

    .ctap {
      font-size: 16px;
      color: rgba(255, 255, 255, .68);
      max-width: 552px;
      margin: 0 auto 36px;
      line-height: 1.65;
    }

    .ctabtns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
    }

    /* ════════════════════════════════════════════════════
       CONTACT
    ════════════════════════════════════════════════════ */
    #contact {
      background: var(--g50);
    }

    .cgrid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 56px;
      align-items: start;
    }

    .cinfo .sub {
      margin: 14px 0 32px;
    }

    .cdet {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 18px;
    }

    .cico {
      width: 40px;
      height: 40px;
      background: rgba(44, 68, 228, .08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .cdet h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--g900);
    }

    .cdet p {
      font-size: 12px;
      color: var(--g500);
      margin-top: 2px;
    }

    .trustbox {
      background: var(--blue);
      border-radius: var(--r);
      padding: 18px 22px;
      margin-top: 28px;
    }

    .trustbox p {
      font-size: 13px;
      color: rgba(255, 255, 255, .82);
      line-height: 1.6;
    }

    .trustbox strong {
      color: var(--yellow);
    }

    .fwrap {
      background: #fff;
      border-radius: 22px;
      padding: 40px 36px;
      box-shadow: var(--sh);
      border: 1px solid var(--g200);
    }

    .fwrap h3 {
      font-size: 20px;
      font-weight: 800;
      color: var(--g900);
      margin-bottom: 6px;
    }

    .fsub {
      font-size: 13px;
      color: var(--g500);
      margin-bottom: 28px;
    }

    .frow {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .fg {
      margin-bottom: 16px;
    }

    .fg label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: var(--g700);
      margin-bottom: 6px;
    }

    .fg label em {
      color: var(--blue);
      font-style: normal;
    }

    .fc {
      width: 100%;
      padding: 12px 16px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      color: var(--g900);
      background: var(--g50);
      border: 1.5px solid var(--g200);
      border-radius: var(--rsm);
      transition: var(--ease);
      outline: none;
      resize: none;
    }

    .fc::placeholder {
      color: var(--g500);
    }

    .fc:focus {
      border-color: var(--blue);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(44, 68, 228, .09);
    }

    textarea.fc {
      min-height: 110px;
    }

    .ffoot {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .fnote {
      font-size: 11px;
      color: var(--g500);
      flex: 1;
    }

    .fnote strong {
      color: var(--g700);
    }

    /* ════════════════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════════════════ */
    #footer {
      background: var(--g900);
      padding: 64px 0 28px;
    }

    .ftgrid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .fb .logo {
      color: #fff;
      margin-bottom: 14px;
    }

    .fb p {
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.7;
      max-width: 260px;
      margin-bottom: 20px;
    }

    .socs {
      display: flex;
      gap: 9px;
    }

    .soc {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      color: rgba(255, 255, 255, .65);
      transition: var(--ease);
    }

    .soc:hover {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
      transform: translateY(-2px);
    }

    .fcol h4 {
      font-size: 11px;
      font-weight: 700;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 18px;
    }

    .fcol ul {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .fcol ul li a {
      font-size: 13px;
      color: rgba(255, 255, 255, .5);
      transition: var(--ease);
    }

    .fcol ul li a:hover {
      color: var(--yellow);
    }

    .fbot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 24px;
    }

    .fbot p {
      font-size: 12px;
      color: rgba(255, 255, 255, .35);
    }

    .fbot span {
      color: var(--yellow);
    }

    .fbottag {
      font-family: var(--mono);
      font-size: 11px;
      color: rgba(255, 255, 255, .28);
    }

    .flink {
      color: rgba(255, 255, 255, .3);
      font-size: 12px;
      margin-right: 14px;
    }

    .flink:last-child {
      margin-right: 0;
    }

    /* ════════════════════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════════════════════ */

    /* Larger Desktop */
    @media (min-width: 1024px) {
      .h2 {
        white-space: nowrap;
      }
    }

    /* Large tablet */
    @media (max-width: 1024px) {
      .wrap {
        padding: 0 24px;
      }

      .about-grid {
        gap: 36px;
      }

      .whygrid {
        gap: 36px;
      }

      .cgrid {
        gap: 36px;
      }

      .ggrid {
        grid-template-columns: repeat(2, 1fr);
      }

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

    /* Tablet portrait */
    @media (max-width: 860px) {
      #hero {
        padding: 104px 0 56px;
      }

      .hero-inner {
        max-width: 100%;
      }

      .hero-card {
        display: none;
      }

      .h1 {
        font-size: clamp(32px, 8vw, 56px);
      }

      .hero-p {
        font-size: 17px;
        max-width: 100%;
      }

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

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

      .wpanel {
        display: none;
      }

      .svcgrid {
        grid-template-columns: repeat(2, 1fr);
      }

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

    /* Mobile */
    @media (max-width: 768px) {
      .sec {
        padding: 60px 0;
      }

      .wrap {
        padding: 0 20px;
      }

      .nowrap-title {
        white-space: normal;
      }

      .nav-links,
      .nav-cta {
        display: none;
      }

      .ham {
        display: flex;
      }

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

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

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

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

      .ftgrid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .fb {
        grid-column: 1 / -1;
      }

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

      .h2 {
        font-size: clamp(24px, 6vw, 36px);
      }

      .sechd {
        margin-bottom: 36px;
      }
    }

    /* Small mobile */
    @media (max-width: 480px) {
      .sec {
        padding: 52px 0;
      }

      #hero {
        padding: 92px 0 44px;
      }

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

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

      .fb {
        grid-column: auto;
      }

      .hero-btns {
        flex-direction: column;
        align-items: flex-start;
      }

      .ctabtns {
        flex-direction: column;
        align-items: center;
      }

      .hero-stats {
        gap: 20px;
      }

      .fwrap {
        padding: 28px 20px;
      }
    }