 :root {
      --bg: #fafaf7;
      --bg2: #f2f1ec;
      --white: #ffffff;
      --ink: #1a1814;
      --ink2: #3d3a35;
      --muted: #8c8880;
      --border: #e4e2db;
      --border2: #d0cdc5;
      --accent: #2563eb;
      --accent-lt: #eff4ff;
      --accent-md: #bfcffe;
      --green: #16a34a;
      --green-lt: #f0fdf4;
      --orange: #ea580c;
      --orange-lt: #fff7ed;
      --violet: #7c3aed;
      --violet-lt: #f5f3ff;
      --rose: #e11d48;
      --rose-lt: #fff1f2;
      --teal: #0d9488;
      --teal-lt: #f0fdfa;
      --amber: #d97706;
      --amber-lt: #fffbeb;
      --cyan: #0891b2;
      --cyan-lt: #ecfeff;
      --pink: #db2777;
      --pink-lt: #fdf2f8;
      --shadow-sm: 0 1px 3px rgba(26, 24, 20, .06), 0 1px 2px rgba(26, 24, 20, .04);
      --shadow-md: 0 4px 16px rgba(26, 24, 20, .08), 0 2px 6px rgba(26, 24, 20, .05);
      --shadow-lg: 0 16px 48px rgba(26, 24, 20, .1), 0 4px 16px rgba(26, 24, 20, .06);
      --shadow-xl: 0 32px 80px rgba(26, 24, 20, .12), 0 8px 24px rgba(26, 24, 20, .08);
      --radius: 16px;
      --radius-sm: 10px;
      --radius-lg: 24px;
    }



    .hero {
      position: relative;
      overflow: hidden;
      background: var(--bg);
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(37, 99, 235, .07), transparent),
        radial-gradient(ellipse 40% 40% at 15% 70%, rgba(124, 58, 237, .06), transparent),
        radial-gradient(ellipse 30% 30% at 55% 10%, rgba(13, 148, 136, .05), transparent);
    }

    .hero-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(26, 24, 20, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 24, 20, .04) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 50% 60% at 15% 50%, black 0%, transparent 80%);
    }

    .hero-inner {
      position: relative;
      z-index: 1;
    }

    .hero-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* Eyebrow pill */
    .eyebrow-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-lt);
      border: 1px solid var(--accent-md);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: .3px;
      text-transform: uppercase;
      margin-bottom: 22px;
      animation: fadeUp .5s ease both;
    }

    .e-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
      animation: blink 1.8s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: .3
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0
      }

      to {
        opacity: 1
      }
    }

    @keyframes slideRight {
      from {
        opacity: 0;
        transform: translateX(-16px)
      }

      to {
        opacity: 1;
        transform: translateX(0)
      }
    }

    .hero h1 {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(42px, 5.5vw, 70px);
      font-weight: 700;
      line-height: 1.0;
      letter-spacing: -2.5px;
      animation: fadeUp .55s .08s ease both;
    }

    .hero h1 em {
      font-style: normal;
      position: relative;
      background: linear-gradient(135deg, var(--accent) 0%, var(--teal) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .solution-bannertext{
      font-size: clamp(40px, 7vw, 60px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -1px;
    color: #0f172a;
    }

    .hero-sub {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
      max-width: 460px;
      margin-top: 20px;
      animation: fadeUp .55s .16s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      margin-top: 32px;
      animation: fadeUp .55s .24s ease both;
    }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      padding: 13px 28px;
      border-radius: var(--radius-sm);
      border: none;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      box-shadow: 0 4px 20px rgba(37, 99, 235, .3);
      transition: all .25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-primary:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 99, 235, .38);
    }

    .btn-secondary {
      background: var(--white);
      color: var(--ink2);
      padding: 13px 22px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      font-family: 'Instrument Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      box-shadow: var(--shadow-sm);
      transition: all .25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-secondary:hover {
      border-color: var(--border2);
      box-shadow: var(--shadow-md);
      transform: translateY(-1px);
    }

    /* Hero right — service quick-nav */
    .hero-service-grid img {
      width: 100%;
    }

    /* ══════════════════
   SECTION COMMONS
══════════════════ */
    section {
      padding: 70px 56px;
      position: relative;
    }

    .sec-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .sec-sub {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-top: 14px;
    }

    /* ── Scroll reveal ── */
    .rv {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .rv.in {
      opacity: 1;
      transform: translateY(0);
    }

    .rv.d1 {
      transition-delay: .06s;
    }

    .rv.d2 {
      transition-delay: .12s;
    }

    .rv.d3 {
      transition-delay: .18s;
    }

    .rv.d4 {
      transition-delay: .24s;
    }

    /* ══════════════════
   SERVICES MARQUEE TICKER
══════════════════ */
    .ticker-band {
      background: var(--ink);
      overflow: hidden;
      padding: 14px 0;
      border-top: 1px solid rgba(255, 255, 255, .06);
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .ticker-track {
      display: flex;
      gap: 0;
      animation: tickerScroll 25s linear infinite;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, .55);
      font-size: 13px;
      font-weight: 500;
      white-space: nowrap;
      padding: 0 32px;
    }

    .ticker-item i {
      color: rgba(255, 255, 255, .25);
      font-size: 12px;
    }

    .ticker-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .2);
    }

    @keyframes tickerScroll {
      to {
        transform: translateX(-50%);
      }
    }

    /* ══════════════════
   SERVICES MAIN GRID
══════════════════ */
    .services-section {
      background: radial-gradient(circle at 20% 15%, rgba(10, 165, 255, 0.10), transparent 30%),
        radial-gradient(circle at 85% 40%, rgba(123, 75, 255, 0.10), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%)
    }

    .srv-head {
      margin-bottom: 60px;
      text-align: center;
    }

    .srv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .choose-company img {
      width: 100%;
      border-radius: 10px;
      margin-top: 20px;
    }

    .srv-card {
      background: white;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      text-decoration: none;
      color: var(--ink);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all .3s;
      box-shadow: var(--shadow-sm);
    }

    .srv-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--srv-grad, linear-gradient(90deg, var(--accent), var(--teal)));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }

    .srv-card:hover {
      background: var(--white);
      border-color: var(--srv-border, rgba(37, 99, 235, .3));
      box-shadow: var(--shadow-lg);
      transform: translateY(-5px);
    }

    .srv-card:hover::after {
      transform: scaleX(1);
    }

    .srv-num {
      font-family: 'Clash Display', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .srv-icon-wrap {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 24px;
      border: 1px solid transparent;
      transition: transform .25s;
    }

    .srv-card:hover .srv-icon-wrap {
      transform: scale(1.08) rotate(-3deg);
    }

    .srv-card h3 {
      font-family: 'Clash Display', sans-serif;
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -.8px;
      margin-bottom: 10px;
    }

    .srv-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.72;
      flex: 1;
    }

    .srv-features {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-top: 22px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .srv-feat {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--ink2);
    }

    .srv-feat i {
      font-size: 14px;
    }

    .srv-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 24px;
      font-size: 13px;
      font-weight: 600;
      padding: 10px 18px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      color: var(--ink2);
      background: var(--white);
      transition: all .2s;
      align-self: flex-start;
    }

    .srv-card:hover .srv-cta {
      background: var(--srv-cta-bg, var(--accent));
      border-color: var(--srv-cta-bg, var(--accent));
      color: #fff;
    }

    .srv-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3px;
      padding: 4px 11px;
      border-radius: 100px;
      text-transform: uppercase;
    }

    /* ══════════════════
   WHY TRUESEND BAND
══════════════════ */
    .why-band {
      background: radial-gradient(900px 500px at 15% 25%, rgba(62, 171, 255, .30), transparent 60%),
        radial-gradient(900px 500px at 85% 30%, rgba(108, 70, 255, .22), transparent 60%),
        linear-gradient(135deg, #0a4da6 0%, #0a84d6 45%, #0b3b8f 100%);
    }

    .why-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: center;
    }

    .why-left h2 {
      color: #fff;
      line-height: 1.3;
    }

    .why-left h2 span {
      color: rgba(191, 207, 254, 1);
    }

    .why-left p {
      color: rgba(255, 255, 255, .5);
      font-size: 15px;
      line-height: 1.75;
      margin-top: 16px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .why-item {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--radius);
      padding: 24px;
      transition: background .2s;
    }

    .why-item:hover {
      background: rgba(255, 255, 255, .08);
    }

    .why-item i {
      font-size: 24px;
      color: rgba(191, 207, 254, .8);
      margin-bottom: 14px;
      display: block;
    }

    .why-item h4 {
      font-family: 'Clash Display', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 6px;
    }

    .why-item p {
      font-size: 13px;
      color: rgba(255, 255, 255, .45);
      line-height: 1.65;
    }

    /* ══════════════════
   USE CASE TABS
══════════════════ */
    .usecase-section {
      background: radial-gradient(circle at 20% 15%, rgba(10, 165, 255, 0.10), transparent 30%), radial-gradient(circle at 85% 40%, rgba(123, 75, 255, 0.10), transparent 40%), linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    }

    .usecase-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .uc-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 60px;
      justify-content: center;
      margin-bottom: 48px;
    }

    .uc-tab {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      background: var(--white);
      color: var(--muted);
      font-size: 14px;
      font-weight: 500;
      transition: all .2s;
    }

    .uc-tab i {
      font-size: 16px;
    }

    .uc-tab.on {
      background: radial-gradient(900px 500px at 15% 25%, rgba(62, 171, 255, .30), transparent 60%),
        radial-gradient(900px 500px at 85% 30%, rgba(108, 70, 255, .22), transparent 60%),
        linear-gradient(135deg, #0a4da6 0%, #0a84d6 45%, #0b3b8f 100%);
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .uc-tab:not(.on):hover {
      border-color: var(--border2);
      color: var(--ink);
    }

    .uc-panel {
      display: none;
    }

    .uc-panel.on {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      animation: fadeUp .4s ease both;
    }

    .uc-text .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      color: var(--ink2);
      margin-bottom: 20px;
      box-shadow: var(--shadow-sm);
    }

    .uc-text h3 {
      font-family: 'Clash Display', sans-serif;
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 700;
      letter-spacing: -1.5px;
      color: var(--ink);
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .uc-text p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.78;
      margin-bottom: 24px;
    }

    .uc-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }

    .uc-pill {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 7px 14px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--ink2);
      box-shadow: var(--shadow-sm);
    }

    .uc-pill i {
      font-size: 14px;
      color: var(--accent);
    }

    .uc-visual {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-lg);
    }

    .uc-vis-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }

    .uc-vis-title {
      font-family: 'Clash Display', sans-serif;
      font-size: 15px;
      font-weight: 600;
    }

    .live-dot {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--green);
    }

    .live-dot::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      animation: blink 1.5s infinite;
    }

    /* ══════════════════
   COMPARISON TABLE
══════════════════ */
    .compare-section {
      background: var(--white);
    }

    .compare-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .compare-head {
      text-align: center;
      margin-bottom: 56px;
    }

    .compare-head .sec-eyebrow {
      justify-content: center;
    }

    .compare-head .sec-sub {
      margin: 14px auto 0;
      text-align: center;
    }

    .compare-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .compare-table th {
      background: var(--bg);
      padding: 16px 20px;
      font-family: 'Clash Display', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -.3px;
      color: var(--ink);
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    .compare-table th:first-child {
      width: 30%;
      border-right: 1px solid var(--border);
    }

    .compare-table th:not(:first-child) {
      text-align: center;
      width: 10%;
    }

    .compare-table td {
      padding: 14px 20px;
      font-size: 14px;
      color: var(--ink2);
      border-bottom: 1px solid var(--border);
      background: var(--white);
    }

    .compare-table tr:last-child td {
      border-bottom: none;
    }

    .compare-table td:first-child {
      font-weight: 500;
      border-right: 1px solid var(--border);
      color: var(--ink);
    }

    .compare-table td:not(:first-child) {
      text-align: center;
    }

    .compare-table tr:hover td {
      background: var(--bg);
    }

    .check-yes {
      color: var(--green);
      font-size: 18px;
    }

    .check-no {
      color: var(--border2);
      font-size: 18px;
    }

    .check-partial {
      color: var(--amber);
      font-size: 14px;
      font-weight: 600;
    }

    .th-highlight {
      background: var(--accent-lt) !important;
      color: var(--accent) !important;
    }

    .td-highlight {
      background: rgba(37, 99, 235, .03) !important;
    }

    .popular-banner {
      background: var(--accent);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .5px;
      padding: 4px 0;
      text-align: center;
      text-transform: uppercase;
    }


    /* ══════════════════
   GETTING STARTED STEPS
══════════════════ */
    .steps-section {
      background: radial-gradient(circle at 20% 15%, rgba(10, 165, 255, 0.10), transparent 30%),
        radial-gradient(circle at 85% 40%, rgba(123, 75, 255, 0.10), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    }

    .steps-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .steps-head {
      text-align: center;
      margin-bottom: 60px;
    }

    .steps-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .step-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .step-item {
      display: flex;
      gap: 20px;
      padding: 24px 0;
      border-bottom: 1px solid var(--border);
      cursor: none;
    }

    .step-item:last-child {
      border-bottom: none;
    }

    .step-num {
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Clash Display', sans-serif;
      font-size: 16px;
      font-weight: 700;
      border: 1.5px solid var(--border);
      color: var(--muted);
      background: var(--bg);
      transition: all .25s;
    }

    .step-item:hover .step-num,
    .step-item.active .step-num {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
    }

    .step-content {
      flex: 1;
    }

    .step-title {
      font-family: 'Clash Display', sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 6px;
      letter-spacing: -.3px;
    }

    .step-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.68;
    }

    .step-visual {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-md);
      position: sticky;
      top: 100px;
    }

    .sv-title {
      font-family: 'Clash Display', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 20px;
    }

    .progress-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .prog-item {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .prog-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
    }

    .prog-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--ink2);
      flex: 1;
    }

    .prog-status {
      font-size: 12px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
    }

    .s-done {
      background: var(--green-lt);
      color: var(--green);
    }

    .s-active {
      background: var(--accent-lt);
      color: var(--accent);
      animation: blink 1.5s infinite;
    }

    .s-pending {
      background: var(--bg2);
      color: var(--muted);
    }


    /* ══════════════════
   FAQ
══════════════════ */
    .faq-section {
      background: var(--white);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: start;
    }

    .faq-layout img {
      width: 100%;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-item:first-child {
      border-top: 1px solid var(--border);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 0;
      font-family: 'Clash Display', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: -.3px;
      gap: 16px;
    }

    .faq-toggle {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      border: 1.5px solid var(--border);
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 14px;
      color: var(--muted);
      transition: all .2s;
    }

    .faq-item.open .faq-toggle {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      transform: rotate(45deg);
    }

    .faq-a {
      display: none;
      padding: 0 0 18px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.75;
    }

    .faq-item.open .faq-a {
      display: block;
      animation: fadeUp .3s ease both;
    }


    /* ══════════════════
   RESPONSIVE
══════════════════ */
    @media(max-width:1024px) {
      .srv-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-top {
        grid-template-columns: 1fr;
      }

      .hero-service-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .why-inner {
        grid-template-columns: 1fr;
      }

      .uc-panel.on {
        grid-template-columns: 1fr;
      }

      .steps-layout {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr 1fr;
      }

      .faq-layout {
        grid-template-columns: 1fr;
      }

      .compare-table {
        font-size: 13px;
      }

      .testi-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:768px) {
      .hero-top {
        gap: 40px;
      }

      nav {
        padding: 0 20px;
      }

      .nav-links {
        display: none;
      }

      section {
        padding: 40px 10px;
      }

      .hero {
        padding: 50px 20px 60px;
      }
      .solution-bannertext {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0px;
    color: #0f172a;
}
.hero-sub {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    max-width: 460px;
    margin-top: 10px;
    animation: fadeUp .55s .16s ease both;
}

      .srv-grid {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .hero-service-grid {
        grid-template-columns: 1fr 1fr;
      }

      footer {
        padding: 48px 20px;
      }
    }