 :root {
      --blue: #0059C4;
      --sky: #008DE1;
      --green: #28A123;
      --lime: #76C91F;
      --orange: #FF6606;
      --amber: #FF9E1D;
      --pink: #D1096D;
      --hotpink: #EF187A;
      --black: #050505;
      --white: #FFFFFF;
      --light: #F8FAFC;
      --soft: #EEF4FF;
      --border: #E6ECF5;
      --text: #111827;
      --muted: #5B6575;
      --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
      --radius: 28px;
      --container: 1240px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Montserrat", Arial, sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font-family: inherit;
    }

    .container {
      width: min(var(--container), 92%);
      margin: 0 auto;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .blue { color: var(--blue); }
    .orange { color: var(--orange); }
    .pink { color: var(--hotpink); }
    .green { color: var(--green); }

    .gradient-text {
      background: linear-gradient(90deg, var(--blue), var(--sky), var(--hotpink), var(--orange));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 15px 26px;
      border-radius: 15px;
      font-size: 14px;
      font-weight: 900;
      border: 2px solid transparent;
      cursor: pointer;
      transition: 0.25s ease;
      overflow: hidden;
      isolation: isolate;
      white-space: nowrap;
    }

    .btn::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.32), transparent);
      transform: translateX(-120%);
      transition: 0.55s ease;
      z-index: -1;
    }

    .btn:hover::before {
      transform: translateX(120%);
    }

    .btn:hover {
      transform: translateY(-3px);
    }

    .btn-primary {
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), var(--sky));
      box-shadow: 0 16px 32px rgba(0, 89, 196, 0.25);
    }

    .btn-orange {
      color: var(--white);
      background: linear-gradient(135deg, var(--orange), var(--hotpink));
      box-shadow: 0 16px 32px rgba(255, 102, 6, 0.22);
    }

    .btn-black {
      color: var(--white);
      background: var(--black);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    }

    .btn-outline {
      color: var(--blue);
      background: rgba(255, 255, 255, 0.85);
      border-color: rgba(0, 89, 196, 0.20);
      backdrop-filter: blur(12px);
    }

    .btn-outline:hover {
      color: var(--white);
      background: var(--blue);
      border-color: var(--blue);
    }

    .glow {
      position: fixed;
      width: 420px;
      height: 420px;
      border-radius: 50%;
      filter: blur(70px);
      opacity: 0.16;
      pointer-events: none;
      z-index: -1;
      animation: glowMove 9s ease-in-out infinite alternate;
    }

    .glow.one {
      background: var(--hotpink);
      left: -160px;
      top: 150px;
    }

    .glow.two {
      background: var(--sky);
      right: -180px;
      top: 420px;
      animation-delay: 1.5s;
    }

    .glow.three {
      background: var(--lime);
      left: 30%;
      bottom: -220px;
      animation-delay: 2.5s;
    }

    @keyframes glowMove {
      from { transform: translate3d(0, 0, 0) scale(1); }
      to { transform: translate3d(30px, -34px, 0) scale(1.12); }
    }

    /* TOP BAR */
    .topbar {
      background: var(--black);
      color: rgba(255, 255, 255, 0.82);
      font-size: 12px;
      padding: 8px 0;
    }

    .topbar-inner {
      width: min(var(--container), 92%);
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .topbar a:hover {
      color: var(--amber);
    }

    .top-pill {
      background: linear-gradient(90deg, var(--orange), var(--hotpink));
      color: var(--white);
      padding: 6px 13px;
      border-radius: 999px;
      font-weight: 900;
    }

    /* TICKER */
    .ticker {
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      gap: 14px;
      background: linear-gradient(90deg, var(--orange), var(--hotpink), var(--blue), var(--green));
      color: var(--white);
      padding: 10px 0;
    }

    .ticker-label {
      margin-left: 4%;
      background: var(--black);
      padding: 5px 12px;
      border-radius: 10px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .ticker-content {
      overflow: hidden;
      flex: 1;
    }

    .ticker-track {
      display: flex;
      white-space: nowrap;
      animation: ticker 28s linear infinite;
    }

    .ticker-track span {
      padding-right: 84px;
      font-size: 13px;
      font-weight: 800;
    }

    @keyframes ticker {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(230, 236, 245, 0.9);
      box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
    }

    .header-inner {
      width: min(var(--container), 92%);
      min-height: 88px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 260px;
    }

    .logo-mark {
      width: 62px;
      height: 62px;
      flex: 0 0 62px;
      position: relative;
      transform: rotate(45deg);
      filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.16));
    }

    .logo-mark span {
      position: absolute;
      width: 30px;
      height: 30px;
      border-radius: 5px 24px 5px 24px;
    }

    .lm1 {
      background: linear-gradient(135deg, #008DE1, #0059C4);
      left: 16px;
      top: 0;
    }

    .lm2 {
      background: linear-gradient(135deg, #76C91F, #28A123);
      right: 0;
      top: 16px;
    }

    .lm3 {
      background: linear-gradient(135deg, #FF9E1D, #FF6606);
      left: 16px;
      bottom: 0;
    }

    .lm4 {
      background: linear-gradient(135deg, #EF187A, #D1096D);
      left: 0;
      top: 16px;
    }

    .logo-text strong {
      display: block;
      color: var(--black);
      font-size: 23px;
      line-height: 0.98;
      font-weight: 900;
      letter-spacing: -1px;
      text-transform: uppercase;
    }

    .logo-text small {
      display: block;
      margin-top: 7px;
      font-size: 12px;
      color: var(--text);
      font-style: italic;
      font-weight: 600;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-item {
      position: relative;
    }

    .nav-item > a {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 12px 12px;
      color: var(--text);
      border-radius: 12px;
      font-size: 13px;
      font-weight: 900;
      transition: 0.2s ease;
    }

    .nav-item:hover > a,
    .nav-item > a:focus-visible {
      color: var(--blue);
      background: rgba(0, 89, 196, 0.08);
      outline: none;
    }

    .caret {
      font-size: 9px;
      opacity: 0.7;
      transition: 0.22s ease;
    }

    .nav-item:hover .caret {
      transform: rotate(180deg);
    }

    .submenu {
      position: absolute;
      top: calc(100% + 16px);
      left: 0;
      min-width: 292px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
      padding: 12px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.22s ease;
    }

    .submenu::before {
      content: "";
      position: absolute;
      left: 24px;
      top: -7px;
      width: 14px;
      height: 14px;
      background: var(--white);
      border-left: 1px solid var(--border);
      border-top: 1px solid var(--border);
      transform: rotate(45deg);
    }

    .submenu.wide {
      min-width: 540px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4px;
    }

    .nav-item:hover .submenu,
    .nav-item:focus-within .submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .submenu a {
      display: block;
      padding: 14px;
      border-radius: 14px;
      transition: 0.18s ease;
    }

    .submenu a:hover,
    .submenu a:focus-visible {
      background: linear-gradient(90deg, rgba(0, 89, 196, 0.08), rgba(239, 24, 122, 0.08));
      outline: none;
    }

    .submenu .t {
      display: block;
      color: var(--black);
      font-size: 13px;
      font-weight: 900;
    }

    .submenu .d {
      display: block;
      color: var(--muted);
      font-size: 11px;
      line-height: 1.5;
      margin-top: 3px;
      font-weight: 600;
    }

    .submenu-divider {
      height: 1px;
      background: var(--border);
      grid-column: 1 / -1;
      margin: 5px 0;
    }

    .btn-nav {
      padding: 13px 18px;
      font-size: 13px;
    }

    .hamburger {
      display: none;
      width: 52px;
      height: 44px;
      border: none;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--blue), var(--sky));
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      box-shadow: 0 12px 26px rgba(0, 89, 196, 0.23);
    }

    .hamburger span {
      width: 22px;
      height: 2.5px;
      background: var(--white);
      border-radius: 99px;
      transition: 0.25s ease;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1500;
      background:
        radial-gradient(circle at 8% 10%, rgba(239, 24, 122, 0.12), transparent 34%),
        radial-gradient(circle at 90% 92%, rgba(0, 141, 225, 0.14), transparent 32%),
        var(--white);
      overflow-y: auto;
      padding: 100px 26px 48px;
    }

    .mobile-nav.open {
      display: block;
    }

    .mnav-logo {
      position: absolute;
      top: 20px;
      left: 22px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .mnav-logo .logo-mark {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
    }

    .mnav-logo .logo-mark span {
      width: 23px;
      height: 23px;
    }

    .mnav-logo .lm1,
    .mnav-logo .lm3 {
      left: 12px;
    }

    .mnav-logo .lm2,
    .mnav-logo .lm4 {
      top: 12px;
    }

    .mnav-logo strong {
      color: var(--black);
      font-size: 15px;
      line-height: 1.1;
      text-transform: uppercase;
    }

    .mnav-close {
      position: absolute;
      top: 22px;
      right: 22px;
      width: 42px;
      height: 42px;
      border: none;
      border-radius: 14px;
      color: var(--white);
      background: linear-gradient(135deg, var(--orange), var(--hotpink));
      font-weight: 900;
      font-size: 18px;
      cursor: pointer;
    }

    .mnav-link,
    .macc-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 4px;
      border-bottom: 1px solid var(--border);
      color: var(--black);
      font-weight: 900;
      font-size: 16px;
      cursor: pointer;
    }

    .macc-body {
      max-height: 0;
      overflow: hidden;
      background: var(--light);
      border-radius: 16px;
      transition: max-height 0.3s ease;
    }

    .macc.open .macc-body {
      max-height: 720px;
      margin-bottom: 10px;
    }

    .macc.open .caret {
      transform: rotate(180deg);
      color: var(--orange);
    }

    .macc-body a {
      display: block;
      padding: 14px 18px;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
      font-size: 14px;
      font-weight: 700;
    }

    .mnav-cta {
      width: 100%;
      margin-top: 26px;
    }

    /* HERO */
    .hero {
      position: relative;
      min-height: 88vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 90px 0 80px;
      background:
        radial-gradient(circle at 10% 12%, rgba(239, 24, 122, 0.10), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(0, 141, 225, 0.16), transparent 30%),
        radial-gradient(circle at 78% 90%, rgba(118, 201, 31, 0.14), transparent 34%),
        linear-gradient(180deg, #FFFFFF 0%, #F6FAFF 100%);
    }

    .mesh {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 89, 196, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 89, 196, 0.04) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, black, transparent 92%);
      pointer-events: none;
    }

    .hero-shape {
      position: absolute;
      border-radius: 999px;
      opacity: 0.2;
      animation: float 7s ease-in-out infinite;
    }

    .shape1 {
      width: 190px;
      height: 190px;
      background: var(--orange);
      right: 8%;
      top: 14%;
    }

    .shape2 {
      width: 110px;
      height: 110px;
      background: var(--hotpink);
      left: 5%;
      bottom: 12%;
      animation-delay: 1.2s;
    }

    .shape3 {
      width: 150px;
      height: 150px;
      background: var(--sky);
      right: 36%;
      bottom: 10%;
      animation-delay: 2s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-22px); }
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 56px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--border);
      backdrop-filter: blur(14px);
      border-radius: 999px;
      padding: 11px 17px;
      color: var(--blue);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
      margin-bottom: 22px;
    }

    .eyebrow-dot {
      width: 10px;
      height: 10px;
      background: var(--green);
      border-radius: 50%;
      box-shadow: 0 0 0 7px rgba(40, 161, 35, 0.12);
    }

    .hero h1 {
      font-size: clamp(32px, 4.2vw, 56px);
      line-height: 1.02;
      letter-spacing: -2.5px;
      font-weight: 900;
      color: var(--black);
      margin-bottom: 22px;
    }

    .hero-desc {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
      max-width: 670px;
      margin-bottom: 30px;
      font-weight: 500;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }

    .hero-trust {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .trust-mini {
      display: flex;
      align-items: center;
      gap: 9px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 10px 14px;
      color: var(--text);
      font-size: 12px;
      font-weight: 800;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
    }

    .check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      color: var(--white);
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 900;
    }

    .hero-visual {
      position: relative;
      min-height: 545px;
      perspective: 1000px;
    }

    .phone-card {
      position: absolute;
      top: 30px;
      left: 45px;
      width: 315px;
      min-height: 505px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(255, 255, 255, 0.75);
      border-radius: 38px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
      padding: 24px;
      transform: rotate(-4deg);
      overflow: hidden;
    }

    .phone-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(0, 89, 196, 0.18), transparent 34%, rgba(239, 24, 122, 0.12));
      pointer-events: none;
    }

    .phone-top {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .phone-title strong {
      display: block;
      font-size: 18px;
      font-weight: 900;
    }

    .phone-title small {
      display: block;
      color: var(--muted);
      margin-top: 3px;
      font-size: 12px;
      font-weight: 700;
    }

    .live-badge {
      color: var(--green);
      background: rgba(40, 161, 35, 0.11);
      border-radius: 999px;
      padding: 8px 10px;
      font-size: 11px;
      font-weight: 900;
    }

    .metric-main {
      position: relative;
      z-index: 1;
      background: var(--black);
      color: var(--white);
      border-radius: 26px;
      padding: 24px;
      margin-bottom: 18px;
      overflow: hidden;
    }

    .metric-main::before {
      content: "";
      position: absolute;
      right: -42px;
      top: -42px;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--orange), var(--hotpink));
      opacity: 0.8;
    }

    .metric-main small {
      position: relative;
      z-index: 1;
      color: rgba(255, 255, 255, 0.70);
      font-weight: 800;
    }

    .metric-main strong {
      position: relative;
      z-index: 1;
      display: block;
      margin-top: 8px;
      font-size: 46px;
      line-height: 1;
      font-weight: 900;
      color: var(--amber);
    }

    .progress-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 14px;
    }

    .progress-item {
      background: rgba(248, 250, 252, 0.96);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 15px;
    }

    .progress-head {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 9px;
    }

    .progress {
      height: 10px;
      background: #E4EBF5;
      border-radius: 99px;
      overflow: hidden;
    }

    .progress span {
      display: block;
      height: 100%;
      border-radius: 99px;
    }

    .p1 span { width: 94%; background: var(--blue); }
    .p2 span { width: 88%; background: var(--hotpink); }
    .p3 span { width: 82%; background: var(--orange); }
    .p4 span { width: 96%; background: var(--green); }

    .float-card {
      position: absolute;
      z-index: 2;
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 22px 48px rgba(15, 23, 42, 0.16);
      color: var(--white);
      animation: cardFloat 5s ease-in-out infinite;
    }

    @keyframes cardFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-14px); }
    }

    .fc1 {
      right: 12px;
      top: 10px;
      width: 210px;
      background: linear-gradient(135deg, var(--blue), var(--sky));
    }

    .fc2 {
      right: 0;
      bottom: 65px;
      width: 220px;
      background: linear-gradient(135deg, var(--orange), var(--hotpink));
      animation-delay: 1.3s;
    }

    .fc3 {
      left: 0;
      bottom: 10px;
      width: 200px;
      background: linear-gradient(135deg, var(--green), var(--lime));
      animation-delay: 2s;
    }

    .float-card strong {
      display: block;
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .float-card small {
      display: block;
      color: rgba(255, 255, 255, 0.84);
      font-size: 12px;
      line-height: 1.45;
      font-weight: 700;
    }

    /* BRAND STRIP */
    .brand-strip {
      padding: 24px 0;
      background: var(--black);
      color: var(--white);
      overflow: hidden;
    }

    .brand-track {
      display: flex;
      align-items: center;
      gap: 18px;
      animation: brandMove 30s linear infinite;
      white-space: nowrap;
    }

    .brand-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.07);
      padding: 10px 18px;
      border-radius: 999px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
      font-weight: 800;
    }

    .brand-chip span {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--amber);
    }

    @keyframes brandMove {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* COMMON SECTIONS */
    section {
      padding: 86px 0;
    }

    .section-head {
      max-width: 820px;
      margin-bottom: 44px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: 999px;
      color: var(--orange);
      background: rgba(255, 102, 6, 0.10);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .tag::before {
      content: "";
      width: 8px;
      height: 8px;
      background: currentColor;
      border-radius: 50%;
    }

    .section-title {
      font-size: clamp(25px, 3vw, 40px);
      line-height: 1.12;
      letter-spacing: -1px;
      font-weight: 900;
      color: var(--black);
      margin-bottom: 14px;
      white-space: nowrap;
    }

    .section-desc {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      font-weight: 500;
    }

    /* SERVICES */
    .services {
      background: var(--white);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .service-card {
      position: relative;
      min-height: 270px;
      padding: 28px;
      border-radius: 28px;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 14px 36px rgba(15, 23, 42, 0.04);
      overflow: hidden;
      transition: 0.28s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 28px 66px rgba(15, 23, 42, 0.12);
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 6px;
      background: var(--blue);
    }

    .service-card:nth-child(2)::before,
    .service-card:nth-child(6)::before {
      background: var(--hotpink);
    }

    .service-card:nth-child(3)::before,
    .service-card:nth-child(7)::before {
      background: var(--orange);
    }

    .service-card:nth-child(4)::before,
    .service-card:nth-child(8)::before {
      background: var(--green);
    }

    .service-card::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: rgba(0, 89, 196, 0.07);
      transition: 0.3s ease;
    }

    .service-card:hover::after {
      transform: scale(1.35);
      opacity: 0.85;
    }

    .service-icon {
      position: relative;
      z-index: 1;
      width: 62px;
      height: 62px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      background: var(--light);
      font-size: 28px;
      margin-bottom: 18px;
    }

    .service-card h3 {
      position: relative;
      z-index: 1;
      font-size: 18px;
      font-weight: 900;
      color: var(--black);
      margin-bottom: 10px;
    }

    .service-card p {
      position: relative;
      z-index: 1;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      font-weight: 500;
    }

    .service-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      margin-top: 20px;
      color: var(--blue);
      font-weight: 900;
      font-size: 13px;
    }

    /* STATS */
    .stats-area {
      background:
        radial-gradient(circle at 10% 20%, rgba(255, 102, 6, 0.10), transparent 24%),
        radial-gradient(circle at 92% 80%, rgba(0, 141, 225, 0.12), transparent 28%),
        var(--light);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .stat-card {
      padding: 24px 18px;
      text-align: center;
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 26px;
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
    }

    .stat-card strong {
      display: block;
      font-size: 34px;
      font-weight: 900;
      background: linear-gradient(90deg, var(--blue), var(--hotpink), var(--orange));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 7px;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    /* WHY */
    .why {
      background: var(--white);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 48px;
      align-items: center;
    }

    .why-visual {
      position: relative;
      min-height: 500px;
      border-radius: 38px;
      background: var(--black);
      padding: 40px;
      color: var(--white);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .why-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 22%, rgba(239, 24, 122, 0.42), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(0, 141, 225, 0.40), transparent 30%),
        radial-gradient(circle at 70% 90%, rgba(118, 201, 31, 0.28), transparent 33%);
    }

    .why-content {
      position: relative;
      z-index: 1;
    }

    .why-big {
      font-size: 90px;
      line-height: 1;
      font-weight: 900;
      color: var(--amber);
      margin-bottom: 16px;
    }

    .why-content h3 {
      font-size: 31px;
      line-height: 1.18;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .why-content p {
      color: rgba(255, 255, 255, 0.73);
      font-size: 15px;
      line-height: 1.75;
    }

    .mini-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 30px;
    }

    .mini {
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 18px;
    }

    .mini strong {
      display: block;
      font-size: 25px;
      color: var(--amber);
      font-weight: 900;
    }

    .mini span {
      display: block;
      margin-top: 4px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 12px;
      font-weight: 800;
    }

    .why-list {
      display: grid;
      gap: 18px;
    }

    .why-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 22px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      transition: 0.25s ease;
    }

    .why-item:hover {
      transform: translateX(8px);
      box-shadow: 0 18px 44px rgba(15, 23, 42, 0.09);
    }

    .why-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      flex: 0 0 54px;
      color: var(--white);
      background: var(--blue);
      font-size: 22px;
    }

    .why-item:nth-child(2) .why-icon { background: var(--orange); }
    .why-item:nth-child(3) .why-icon { background: var(--hotpink); }
    .why-item:nth-child(4) .why-icon { background: var(--green); }
    .why-item:nth-child(5) .why-icon { background: var(--black); }

    .why-text h4 {
      font-size: 17px;
      color: var(--black);
      font-weight: 900;
      margin-bottom: 6px;
    }

    .why-text p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
      font-weight: 500;
    }

    /* PROCESS */
    .process {
      background: var(--light);
      overflow: hidden;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      position: relative;
    }

    .process-step {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
      transition: 0.25s ease;
    }

    .process-step:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 58px rgba(15, 23, 42, 0.10);
    }

    .step-num {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: linear-gradient(135deg, var(--blue), var(--sky));
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .process-step:nth-child(2) .step-num {
      background: linear-gradient(135deg, var(--orange), var(--amber));
    }

    .process-step:nth-child(3) .step-num {
      background: linear-gradient(135deg, var(--hotpink), var(--pink));
    }

    .process-step:nth-child(4) .step-num {
      background: linear-gradient(135deg, var(--green), var(--lime));
    }

    .process-step h3 {
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .process-step p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      font-weight: 500;
    }

    /* RESULTS */
    .results {
      position: relative;
      background: var(--black);
      color: var(--white);
      overflow: hidden;
    }

    .results::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 10% 18%, rgba(0, 141, 225, 0.32), transparent 26%),
        radial-gradient(circle at 92% 84%, rgba(255, 102, 6, 0.24), transparent 30%),
        radial-gradient(circle at 45% 110%, rgba(239, 24, 122, 0.18), transparent 34%);
    }

    .results .container {
      position: relative;
      z-index: 1;
    }

    .results .section-title {
      color: var(--white);
    }

    .results .section-desc {
      color: rgba(255, 255, 255, 0.70);
    }

    .result-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .result-card {
      position: relative;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 26px;
      padding: 30px 24px;
      text-align: center;
      overflow: hidden;
      transition: 0.25s ease;
    }

    .result-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 5px;
      background: linear-gradient(90deg, var(--orange), var(--hotpink), var(--blue));
    }

    .result-card:hover {
      transform: translateY(-8px);
      background: rgba(255, 255, 255, 0.11);
      border-color: rgba(255, 255, 255, 0.30);
    }

    .result-card strong {
      display: block;
      color: var(--amber);
      font-size: 43px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .result-card p {
      color: rgba(255, 255, 255, 0.86);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 800;
    }

    .result-card small {
      display: block;
      margin-top: 9px;
      color: rgba(255, 255, 255, 0.55);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* CASE STUDIES */
    .cases {
      background: var(--white);
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .case-card {
      border: 1px solid var(--border);
      border-radius: 30px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
      transition: 0.28s ease;
    }

    .case-card:hover {
      transform: translateY(-9px);
      box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
    }

    .case-img {
      min-height: 210px;
      padding: 26px;
      display: flex;
      align-items: flex-end;
      color: var(--white);
      font-size: 23px;
      line-height: 1.25;
      font-weight: 900;
      position: relative;
      overflow: hidden;
    }

    .case-img::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
      top: -60px;
      right: -60px;
    }

    .case-img span {
      position: relative;
      z-index: 1;
    }

    .case1 { background: linear-gradient(135deg, var(--blue), var(--sky)); }
    .case2 { background: linear-gradient(135deg, var(--orange), var(--hotpink)); }
    .case3 { background: linear-gradient(135deg, var(--green), var(--lime)); }

    .case-body {
      padding: 25px;
    }

    .case-tag {
      display: inline-flex;
      background: rgba(0, 89, 196, 0.10);
      color: var(--blue);
      border-radius: 999px;
      padding: 7px 11px;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .case-card:nth-child(2) .case-tag {
      color: var(--orange);
      background: rgba(255, 102, 6, 0.10);
    }

    .case-card:nth-child(3) .case-tag {
      color: var(--green);
      background: rgba(40, 161, 35, 0.10);
    }

    .case-body h3 {
      color: var(--black);
      font-size: 19px;
      line-height: 1.35;
      font-weight: 900;
      margin-bottom: 9px;
    }

    .case-body p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      font-weight: 500;
    }

    .case-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .case-stats div {
      border-radius: 15px;
      background: var(--light);
      padding: 12px 8px;
      text-align: center;
      font-size: 10px;
      color: var(--muted);
      font-weight: 800;
    }

    .case-stats b {
      display: block;
      color: var(--black);
      font-size: 16px;
      font-weight: 900;
      margin-bottom: 3px;
    }

    /* PACKAGES */
    .packages {
      background:
        radial-gradient(circle at 8% 20%, rgba(239, 24, 122, 0.08), transparent 28%),
        radial-gradient(circle at 92% 90%, rgba(0, 141, 225, 0.10), transparent 28%),
        var(--light);
    }

    .package-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: stretch;
    }

    .package-card {
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 30px;
      box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
      transition: 0.28s ease;
      overflow: hidden;
    }

    .package-card.featured {
      transform: scale(1.04);
      border-color: rgba(0, 89, 196, 0.24);
      box-shadow: 0 30px 70px rgba(0, 89, 196, 0.14);
    }

    .package-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
    }

    .package-card.featured:hover {
      transform: scale(1.04) translateY(-8px);
    }

    .popular {
      position: absolute;
      top: 18px;
      right: -34px;
      background: linear-gradient(90deg, var(--orange), var(--hotpink));
      color: var(--white);
      padding: 8px 46px;
      transform: rotate(35deg);
      font-size: 11px;
      font-weight: 900;
    }

    .package-card h3 {
      font-size: 22px;
      font-weight: 900;
      color: var(--black);
      margin-bottom: 8px;
    }

    .price {
      font-size: 36px;
      font-weight: 900;
      margin: 18px 0;
      color: var(--blue);
    }

    .price small {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .package-card ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin: 22px 0 26px;
    }

    .package-card li {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.45;
    }

    .package-card li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
      margin-right: 8px;
    }

    /* TESTIMONIAL SLIDER */
    .testimonials {
      background: var(--white);
    }

    .testimonial-slider {
      position: relative;
      overflow: hidden;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.55s ease;
      will-change: transform;
    }

    .testimonial-slide {
      min-width: 33.333%;
      padding: 0 12px;
    }

    .test-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 30px;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
      transition: 0.25s ease;
      min-height: 290px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .test-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
    }

    .stars {
      color: var(--amber);
      letter-spacing: 2px;
      margin-bottom: 18px;
      font-size: 16px;
    }

    .test-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.78;
      font-weight: 500;
      margin-bottom: 24px;
    }

    .person {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--blue);
      font-weight: 900;
      flex: 0 0 46px;
    }

    .testimonial-slide:nth-child(2) .avatar,
    .testimonial-slide:nth-child(5) .avatar {
      background: var(--orange);
    }

    .testimonial-slide:nth-child(3) .avatar {
      background: var(--hotpink);
    }

    .testimonial-slide:nth-child(4) .avatar {
      background: var(--green);
    }

    .person strong {
      display: block;
      color: var(--black);
      font-size: 14px;
      font-weight: 900;
    }

    .person small {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }

    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .slider-btn {
      width: 44px;
      height: 44px;
      border: none;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--black);
      color: var(--white);
      font-size: 18px;
      font-weight: 900;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .slider-btn:hover {
      background: linear-gradient(135deg, var(--blue), var(--hotpink));
      transform: translateY(-3px);
    }

    .slider-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .slider-dot {
      width: 10px;
      height: 10px;
      border: none;
      border-radius: 50%;
      background: #CBD5E1;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .slider-dot.active {
      width: 28px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue), var(--hotpink), var(--orange));
    }

    /* INDUSTRIES */
    .industries {
      background: var(--light);
      padding-top: 78px;
      padding-bottom: 78px;
    }

    .industry-showcase {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 28px;
      align-items: stretch;
    }

    .industry-feature {
      position: relative;
      min-height: 430px;
      border-radius: 34px;
      padding: 36px;
      color: var(--white);
      background:
        radial-gradient(circle at 18% 18%, rgba(239, 24, 122, 0.42), transparent 28%),
        radial-gradient(circle at 88% 28%, rgba(0, 141, 225, 0.40), transparent 30%),
        radial-gradient(circle at 70% 92%, rgba(118, 201, 31, 0.34), transparent 30%),
        var(--black);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .industry-feature::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: 0.35;
    }

    .industry-feature-content {
      position: relative;
      z-index: 1;
      max-width: 640px;
    }

    .industry-feature h3 {
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: -1.4px;
      margin-bottom: 14px;
    }

    .industry-feature p {
      color: rgba(255, 255, 255, 0.76);
      line-height: 1.75;
      font-size: 15px;
      font-weight: 500;
      max-width: 560px;
    }

    .industry-feature-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 30px;
    }

    .industry-feature-stats div {
      border: 1px solid rgba(255, 255, 255, 0.14);
      background: rgba(255, 255, 255, 0.10);
      border-radius: 18px;
      padding: 16px;
      backdrop-filter: blur(10px);
    }

    .industry-feature-stats strong {
      display: block;
      color: var(--amber);
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .industry-feature-stats span {
      color: rgba(255, 255, 255, 0.72);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .industry-card {
      position: relative;
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 18px;
      min-height: 88px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.86);
      border: 1px solid var(--border);
      box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
      transition: 0.25s ease;
      overflow: hidden;
    }

    .industry-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 4px;
      background: var(--blue);
    }

    .industry-card:nth-child(4n+2)::before { background: var(--orange); }
    .industry-card:nth-child(4n+3)::before { background: var(--hotpink); }
    .industry-card:nth-child(4n+4)::before { background: var(--green); }

    .industry-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
    }

    .industry-icon {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: var(--white);
      background: var(--blue);
      font-size: 20px;
      flex: 0 0 46px;
    }

    .industry-card:nth-child(4n+2) .industry-icon { background: var(--orange); }
    .industry-card:nth-child(4n+3) .industry-icon { background: var(--hotpink); }
    .industry-card:nth-child(4n+4) .industry-icon { background: var(--green); }

    .industry-card strong {
      display: block;
      color: var(--black);
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 3px;
    }

    .industry-card span {
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
    }

    /* BLOG */
    .blogs {
      background:
        radial-gradient(circle at 8% 16%, rgba(0, 141, 225, 0.09), transparent 26%),
        radial-gradient(circle at 92% 84%, rgba(239, 24, 122, 0.08), transparent 28%),
        var(--white);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .blog-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
      transition: 0.28s ease;
    }

    .blog-card:hover {
      transform: translateY(-9px);
      box-shadow: 0 30px 70px rgba(15, 23, 42, 0.13);
    }

    .blog-thumb {
      min-height: 185px;
      padding: 24px;
      display: flex;
      align-items: flex-end;
      color: var(--white);
      font-size: 22px;
      line-height: 1.2;
      font-weight: 900;
      background: linear-gradient(135deg, var(--blue), var(--sky));
      position: relative;
      overflow: hidden;
    }

    .blog-thumb::before {
      content: "";
      position: absolute;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      right: -58px;
      top: -58px;
      background: rgba(255, 255, 255, 0.18);
    }

    .blog-card:nth-child(2) .blog-thumb {
      background: linear-gradient(135deg, var(--orange), var(--hotpink));
    }

    .blog-card:nth-child(3) .blog-thumb {
      background: linear-gradient(135deg, var(--green), var(--lime));
    }

    .blog-thumb span {
      position: relative;
      z-index: 1;
    }

    .blog-body {
      padding: 24px;
    }

    .blog-meta {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      color: var(--muted);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 13px;
    }

    .blog-body h3 {
      color: var(--black);
      font-size: 19px;
      line-height: 1.35;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .blog-body p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      font-weight: 500;
      margin-bottom: 18px;
    }

    .blog-link {
      display: inline-flex;
      color: var(--blue);
      font-size: 13px;
      font-weight: 900;
    }

    /* CONTACT */
    .contact {
      background:
        radial-gradient(circle at 10% 18%, rgba(255, 102, 6, 0.09), transparent 28%),
        radial-gradient(circle at 92% 86%, rgba(0, 141, 225, 0.12), transparent 30%),
        var(--light);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 34px;
      align-items: stretch;
    }

    .contact-info {
      background: var(--black);
      color: var(--white);
      border-radius: 34px;
      padding: 36px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .contact-info::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(239, 24, 122, 0.34), transparent 28%),
        radial-gradient(circle at 90% 85%, rgba(0, 141, 225, 0.30), transparent 30%);
    }

    .contact-info > * {
      position: relative;
      z-index: 1;
    }

    .contact-info h2 {
      font-size: clamp(24px, 2.6vw, 34px);
      line-height: 1.15;
      font-weight: 900;
      margin-bottom: 14px;
      white-space: nowrap;
    }

    .contact-info p {
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.75;
      font-size: 15px;
      margin-bottom: 26px;
    }

    .contact-list {
      display: grid;
      gap: 14px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 15px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .contact-item span {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: var(--amber);
      color: var(--black);
      font-weight: 900;
      flex: 0 0 40px;
    }

    .contact-item strong {
      display: block;
      color: var(--white);
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 3px;
    }

    .contact-item small {
      color: rgba(255, 255, 255, 0.70);
      font-size: 12px;
      font-weight: 600;
      line-height: 1.4;
    }

    .contact-form {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 34px;
      padding: 34px;
      box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: var(--black);
      font-size: 13px;
      font-weight: 900;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid var(--border);
      background: var(--light);
      border-radius: 15px;
      padding: 14px 15px;
      color: var(--text);
      font-weight: 600;
      outline: none;
      transition: 0.2s ease;
    }

    .field textarea {
      min-height: 130px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(0, 89, 196, 0.10);
      background: var(--white);
    }

    .form-note {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.6;
      margin-top: 12px;
      font-weight: 600;
    }

    /* CTA */
    .cta {
      position: relative;
      padding: 90px 0;
      background: var(--black);
      color: var(--white);
      overflow: hidden;
    }

    .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 8% 20%, rgba(239, 24, 122, 0.30), transparent 28%),
        radial-gradient(circle at 92% 84%, rgba(255, 102, 6, 0.26), transparent 30%),
        radial-gradient(circle at 50% 10%, rgba(0, 141, 225, 0.28), transparent 32%);
    }

    .cta-box {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 36px;
      align-items: center;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(16px);
      border-radius: 36px;
      padding: 46px;
    }

    .cta h2 {
      font-size: clamp(24px, 3vw, 40px);
      line-height: 1.12;
      letter-spacing: -1px;
      font-weight: 900;
      margin-bottom: 12px;
      white-space: nowrap;
    }

    .cta p {
      color: rgba(255, 255, 255, 0.72);
      line-height: 1.72;
      font-size: 16px;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    /* FOOTER */
    footer {
      background: #050505;
      color: rgba(255, 255, 255, 0.72);
    }

    .footer-top {
      width: min(var(--container), 92%);
      margin: auto;
      padding: 60px 0 36px;
      display: grid;
      grid-template-columns: 1.7fr 1fr 1fr 1fr;
      gap: 36px;
    }

    .color-line {
      height: 5px;
      width: 100%;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--orange), var(--amber), var(--green), var(--sky), var(--blue), var(--hotpink));
      margin-bottom: 18px;
    }

    .footer-brand .name {
      color: var(--white);
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.8;
      max-width: 430px;
      font-weight: 500;
    }

    .badges {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .badge {
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.08);
      color: var(--amber);
      border-radius: 10px;
      padding: 8px 10px;
      font-size: 11px;
      font-weight: 900;
    }

    .footer-col h4 {
      color: var(--white);
      font-size: 14px;
      font-weight: 900;
      margin-bottom: 16px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .footer-col a {
      display: block;
      margin-bottom: 10px;
      color: rgba(255, 255, 255, 0.64);
      font-size: 13px;
      font-weight: 600;
      transition: 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--amber);
      transform: translateX(5px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 4%;
      text-align: center;
      color: rgba(255, 255, 255, 0.52);
      font-size: 12px;
      font-weight: 600;
    }

    .wa-float,
    .back-top {
      position: fixed;
      z-index: 999;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    }

    .wa-float {
      right: 22px;
      bottom: 22px;
      width: 60px;
      height: 60px;
      background: #25D366;
      font-size: 28px;
      animation: pulseWa 2s infinite;
    }

    .back-top {
      right: 22px;
      bottom: 94px;
      width: 46px;
      height: 46px;
      border: none;
      background: linear-gradient(135deg, var(--blue), var(--hotpink));
      font-size: 18px;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.25s ease;
    }

    .back-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    @keyframes pulseWa {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.38), 0 16px 36px rgba(0, 0, 0, 0.25); }
      70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 16px 36px rgba(0, 0, 0, 0.25); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 16px 36px rgba(0, 0, 0, 0.25); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: 0.75s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1160px) {
      .desktop-nav,
      .btn-nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .header-inner {
        min-height: 80px;
      }
    }

    @media (max-width: 980px) {
      .hero-inner,
      .why-grid,
      .industry-showcase,
      .contact-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 540px;
      }

      .service-grid,
      .process-grid,
      .result-grid,
      .stat-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .case-grid,
      .package-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }

      .package-card.featured,
      .package-card.featured:hover {
        transform: none;
      }

      .testimonial-slide {
        min-width: 50%;
      }

      .footer-top {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
      .topbar-right {
        display: none;
      }

      .topbar-left {
        gap: 8px;
      }

      .ticker-label {
        margin-left: 3%;
      }

      .ticker-track span {
        font-size: 12px;
        padding-right: 48px;
      }

      .logo {
        min-width: 0;
        gap: 10px;
      }

      .logo-mark {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
      }

      .logo-mark span {
        width: 24px;
        height: 24px;
      }

      .lm1,
      .lm3 {
        left: 13px;
      }

      .lm2,
      .lm4 {
        top: 13px;
      }

      .logo-text strong {
        font-size: 16px;
      }

      .logo-text small {
        font-size: 10px;
      }

      .hero {
        min-height: auto;
        padding: 66px 0 56px;
      }

      .hero h1 {
        font-size: clamp(30px, 9vw, 42px);
        letter-spacing: -1px;
      }

      .section-title {
        font-size: clamp(16px, 4.7vw, 25px);
        line-height: 1.18;
        letter-spacing: -0.7px;
        white-space: nowrap;
      }

      .cta h2,
      .contact-info h2 {
        font-size: clamp(16px, 4.7vw, 25px);
        line-height: 1.18;
        letter-spacing: -0.7px;
        white-space: nowrap;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-trust {
        display: grid;
      }

      .hero-visual {
        min-height: auto;
        display: grid;
        gap: 14px;
      }

      .phone-card,
      .float-card {
        position: static;
        width: 100% !important;
        min-height: auto;
        transform: none;
        animation: none;
      }

      .phone-card {
        order: 1;
      }

      .fc1,
      .fc2,
      .fc3 {
        order: 2;
      }

      .service-grid,
      .process-grid,
      .result-grid,
      .stat-grid,
      .industry-grid,
      .footer-top,
      .mini-grid,
      .form-grid,
      .industry-feature-stats {
        grid-template-columns: 1fr;
      }

      .testimonial-slide {
        min-width: 100%;
        padding: 0;
      }

      section {
        padding: 64px 0;
      }

      .why-visual {
        padding: 30px;
        min-height: auto;
      }

      .why-big {
        font-size: 66px;
      }

      .why-content h3 {
        font-size: 25px;
      }

      .case-stats {
        grid-template-columns: 1fr;
      }

      .industry-feature {
        min-height: auto;
        padding: 28px;
      }

      .contact-info,
      .contact-form {
        padding: 28px;
        border-radius: 28px;
      }

      .cta {
        padding: 64px 0;
      }

      .cta-box {
        padding: 28px;
        border-radius: 28px;
      }

      .wa-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
        font-size: 24px;
      }

      .back-top {
        right: 16px;
        bottom: 78px;
        width: 42px;
        height: 42px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
    }