﻿    /* ============================================================
       CSS CUSTOM PROPERTIES  single source of truth
    ============================================================ */
    :root {
      --clr-primary:   #4361EE;
      --clr-primary-hover: #2a47e0;
      --clr-accent:    #4361EE;
      --clr-text-dark: #191C1E;
      --clr-text-muted:#444655;
      --clr-white:     #ffffff;
      --clr-badge:     #eef0ff;

      --clr-dark-bg:   #0d1117;   /* how-it-works section bg */

      --hero-min-h: 100vh;          /* easy to override */
      --hero-overlay: rgba(255,255,255,0.82); /* light tint over bg image */
      --ff-base: 'Montserrat', sans-serif;
    }

    /* ============================================================
       RESET / BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: var(--ff-base);
      color: var(--clr-text-dark);
      -webkit-font-smoothing: antialiased;
    }

    .container { max-width: 1140px; }

    /* ============================================================
       HERO SECTION
    ============================================================ */
    .hero {
      position: relative;
      min-height: var(--hero-min-h);
      display: flex;
      align-items: center;

      /*  BACKGROUND IMAGE          Replace the src below with your real background image.
         Using a free Unsplash placeholder so the file works out-of-the-box.
      */
      background-image:
        linear-gradient(to right, rgba(255,255,255,0.92) 45%, rgba(235,240,255,0.70) 100%),
        url('/Content/home-hero-bg.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;

      overflow: hidden;
    }

    /* decorative soft circle  top right */
    .hero::after {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 560px;
      height: 560px;
      border-radius: 50%;
      background: rgba(59, 91, 252, 0.08);
      pointer-events: none;
      display: none;
    }

    /*  BADGE  */
    .hero__badge {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--clr-accent);
      /* background: var(--clr-badge);
      border-radius: 999px;
      padding: .28rem .85rem; */
      margin-bottom: 1.1rem;
    }

    /*  HEADLINE  */
    .hero__headline {
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 800;
      line-height: 1.18;
      letter-spacing: -.02em;
      color: var(--clr-text-dark);
      margin-bottom: 1.25rem;
    }

    .hero__headline span {
      color: var(--clr-accent);
    }

    /*  BODY COPY  */
    .hero__body {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--clr-text-muted);
      max-width: 430px;
      margin-bottom: 2rem;
    }

    /*  CTA BUTTONS  */
    .hero__cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      align-items: center;
      margin-bottom: 1rem;
    }

    .btn-primary-custom {
      background-color: var(--clr-primary);
      border: 2px solid var(--clr-primary);
      color: var(--clr-white);
      font-weight: 700;
      font-size: .95rem;
      border-radius: 999px;
      padding: .7rem 1.75rem;
      transition: background .22s, transform .18s;
      text-decoration: none;
    }

    .btn-primary-custom:hover {
      background-color: var(--clr-primary-hover);
      border-color: var(--clr-primary-hover);
      color: var(--clr-white);
      transform: translateY(-2px);
    }

    .btn-outline-custom {
      background: var(--clr-white);
      /* border: 2px solid var(--clr-primary); */
      border: 1px solid #EEEEEE;
      color: var(--clr-primary);
      font-weight: 700;
      font-size: .95rem;
      border-radius: 999px;
      padding: .7rem 1.75rem;
      transition: background .22s, color .22s, transform .18s;
      text-decoration: none;
    }

    .btn-outline-custom:hover {
      border: 1px solid var(--clr-primary);
      color: var(--clr-primary);
      transform: translateY(-2px);
    }

    /*  GUARANTEE TEXT  */
    .hero__guarantee {
      font-size: .8rem;
      color: var(--clr-text-muted);
    }

    /* ============================================================
       DASHBOARD IMAGE (right column)
    ============================================================ */
    .hero__dashboard-wrap {
      position: relative;
      z-index: 2;
    }

    .hero__dashboard-img {
      width: 100%;
      max-width: 580px;
      /* border-radius: 18px;
      box-shadow:
        0 24px 64px rgba(59, 91, 252, 0.14),
        0  8px 24px rgba(0,0,0,0.08); */
      display: block;
      margin-left: auto;

      /* subtle float animation */
      animation: floatCard 4s ease-in-out infinite;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0);   }
      50%       { transform: translateY(-10px); }
    }

    /* ============================================================
       FEATURES SECTION
    ============================================================ */
    .features { padding: 80px 0; background: var(--clr-white); }

    .features__number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #F1F5F9;
      font-size: 18px;
      font-weight: 700;
      color: var(--clr-text-dark);
      margin-bottom: 1.5rem;
    }

    .features__title {
      font-size: 20px;
      font-weight: 700;
      color: var(--clr-text-dark);
      margin-bottom: .65rem;
    }

    .features__desc {
      font-size: 14px;
      line-height: 22px;
      color: var(--clr-text-muted);
      margin: 0;
    }

    /* divider between cols on desktop */
    .features__col:not(:last-child) {
      /* border-right: 1px solid #eef0f6; */
    }

    /* ============================================================
       PROBLEM SECTION
    ============================================================ */
    .problem { 
        padding: 80px 0;
        background: #F6FAFF;
    }

    .problem__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--clr-white);
      border: 1px solid #E2E8F0;
      margin-bottom: 1.25rem;
    }

    .problem__headline {
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: -.02em;
      color: var(--clr-text-dark);
      margin-bottom: 1rem;
    }

    .problem__headline span { color: var(--clr-accent); }

    .problem__sub {
      font-size: 18px;
      font-weight: 500;
      line-height: 1.5;
      color: var(--clr-text-muted);
      margin-bottom: 2.25rem;
    }

    /* main image */
    .problem__img-wrap { position: relative; }

    .problem__img {
      width: 100%;
      border-radius: 16px;
      display: block;
      object-fit: cover;
      max-height: 700px;
    }

    /* floating quote card over image */
    .problem__quote {
      position: absolute;
      bottom: 28px;
      right: 28px;
      background: var(--clr-white);
      border-radius: 12px;
      padding: 1rem 1.25rem;
      max-width: 468px;
      font-size: 16px;
      line-height: 1.6;
      color: var(--clr-text-muted);
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    }

    /* business cards grid */
    .biz-card {
      background: var(--clr-white);
      border-radius: 12px;
      border: 1px solid #E2E8F0B2;
      padding: 32px;
      height: 100%;
    }

    .biz-card__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 8px;
      background: #F1F5F9;
      font-size: 1rem;
      margin-bottom: 1rem;
      border: 1px solid #E2E8F0;
    }

    .biz-card__name {
      font-size: 22px;
      font-weight: 700;
      line-height: 28px;
      color: var(--clr-text-dark);
      margin-bottom: 1rem;
    }

    .biz-card__cols { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

    .biz-card__label {
      font-size: 12px;
      line-height: 16px;
      font-weight: 700;
      /* letter-spacing: .1em; */
      text-transform: uppercase;
      margin-bottom: .4rem;
    }

    .biz-card__label--red  { color: #AB2929; }
    .biz-card__label--blue { color: #155DFC; }

    .biz-card__box {
      border-radius: 8px;
      padding: .65rem .75rem;
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: var(--clr-text-dark);
      height: 100%;
    }

    .biz-card__box--red  { 
        background: #FFF0F0;
        border: 1px solid #0000000D;
    }
    .biz-card__box--blue { 
        background: #EFF6FF;
        border: 1px solid #DBEAFE; 
    }

    /* ============================================================
       HOW IT WORKS SECTION
    ============================================================ */
    .how { 
        padding: 80px 0; 
        /* background: color-mix(in srgb, #155DFC 5%, #0d1117 95%);  */
        text-align: center; 
        background: #155DFC0D;
        margin-top: 80px;
    }

    .how__icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 8px;
      background: var(--clr-white);
      border: 1px solid #E2E8F0;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }

    .how__headline {
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -.02em;
      color: var(--clr-text-dark);
      margin-bottom: .6rem;
    }

    .how__headline span { color: var(--clr-accent); }

    .how__sub {
      font-size: .97rem;
      color: var(--clr-text-muted);
      margin-bottom: 3.5rem;
    }

    /* step card */
    .how__card {
      position: relative;
      background: var(--clr-white);
      border-radius: 18px;
      padding: 2.25rem 1.75rem 1.75rem;
      text-align: center;
      height: 100%;
    }

    .how__step-badge {
      position: absolute;
      top: -22px;
      left: 50%;
      transform: translateX(-50%);
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--clr-primary);
      color: var(--clr-white);
      font-size: .95rem;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 18px rgba(59,91,252,0.35);
    }

    .how__card-title {
      font-size: 20px;
      font-weight: 700;
      line-height: 28px;
      color: var(--clr-text-dark);
      margin-bottom: .65rem;
    }

    .how__card-title span { 
        color: var(--clr-accent); 
    }

    .how__card-desc {
      font-size: 14px;
      line-height: 20px;
      color: var(--clr-text-muted);
      margin: 0;
    }

    /* ============================================================
       TRACKING TABLE SECTION
    ============================================================ */
    .tracking {
      padding: 80px 0 100px;
      /* background: color-mix(in srgb, #155DFC 5%, #0d1117 95%); */
      background-color: var(--clr-white);
      text-align: center;
    }

    .tracking__inner {
      background: #0F172B;
      border-radius: 44px;
      padding: 96px 72px;
    }

    .tracking__headline {
      font-size: 40px;
      font-weight: 900;
      color: var(--clr-white);
      line-height: 64px;
      letter-spacing: -.02em;
      margin-bottom: .5rem;
    }

    .tracking__headline mark {
      background: #EAEA52;
      color: var(--clr-text-dark);
      /* border-radius: 6px;
      padding: 0 .35em; */
    }

    .tracking__headline-blue {
      display: block;
      color: var(--clr-accent);
      font-size: clamp(1.4rem, 3.5vw, 2.2rem);
      margin-top: .2rem;
    }

    .tracking__sub {
      font-size: 18px;
      color: #90A1B9;
      line-height: 28px;
      margin: 1.25rem auto 3rem;
      max-width: 540px;
    }

    /* table */
    .tracking__table { width: 100%; border-collapse: collapse; }

    .tracking__table thead tr {
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .tracking__table th {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 0 0 1rem;
      text-align: left;
    }

    .tracking__table th:first-child  { color: #90A1B9; }
    .tracking__table th:nth-child(2) { color: #90A1B9; }
    .tracking__table th:last-child   { color: var(--clr-accent); }

    .tracking__table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .tracking__table tbody tr:last-child { border-bottom: none; }

    .tracking__table td {
      padding: 1.35rem 0;
      vertical-align: top;
      text-align: left;
      font-size: 16px;
      line-height: 24px;
    }

    .tracking__table td:first-child  { color: var(--clr-white); font-weight: 500; width: 25%; }
    .tracking__table td:nth-child(2) { color: #90A1B9; width: 38%; padding-right: 2rem; }
    .tracking__table td:last-child   { color: var(--clr-white); width: 37%; }

    .tracking__check {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
    }

    .tracking__check::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 20px;
      min-width: 20px;
      border-radius: 50%;
      border: 2px solid var(--clr-accent);
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b5bfc' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
    }

    /* ============================================================
       PRIVACY SECTION
    ============================================================ */
    .privacy { padding: 90px 0; background: var(--clr-white); text-align: center; }

    .privacy__headline {
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 48px;
      color: var(--clr-text-dark);
      margin-bottom: 3rem;
    }

    .privacy__headline span { color: var(--clr-accent); }

    /* cards */
    .priv-card {
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 2rem 1.75rem 1.75rem;
      text-align: left;
      height: 100%;
      position: relative;
      overflow: hidden;
      box-shadow: 0px 1px 2px -1px #0000001A;
      box-shadow: 0px 1px 3px 0px #0000001A;
    }

    /* blurred gradient blob top-right */
    .priv-card::after {
      content: '';
      position: absolute;
      top: -30px;
      right: -30px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(59,91,252,0.10) 0%, rgba(59,91,252,0.04) 100%);
      filter: blur(24px);
      pointer-events: none;
    }

    .priv-card__icon {
      font-size: 1.6rem;
      margin-bottom: 1.35rem;
      display: block;
      position: relative;
      z-index: 1;
    }

    /* icon colors per card */
    .priv-card--lock  .priv-card__icon { color: var(--clr-accent); }
    .priv-card--shield .priv-card__icon { color: #16a34a; }
    .priv-card--eye   .priv-card__icon { color: #7c3aed; }

    .priv-card__title {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--clr-text-dark);
      margin-bottom: .5rem;
      position: relative;
      z-index: 1;
    }

    .priv-card__desc {
      font-size: .88rem;
      line-height: 1.65;
      color: var(--clr-text-muted);
      margin: 0;
      position: relative;
      z-index: 1;
    }

    .privacy__footer {
      font-size: 18px;
      line-height: 28px;
      color: var(--clr-text-muted);
      max-width: 680px;
      margin: 3rem auto 0;
    }

    /* ============================================================
       CAMPAIGNS SECTION
    ============================================================ */
    .campaigns { 
        padding: 90px 0; 
        background: #F6FAFF; 
        text-align: center; 
    }

    .campaigns__eyebrow {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--clr-text-muted);
      margin-bottom: 1rem;
      display: block;
    }

    .campaigns__headline {
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -.02em;
      line-height: 48px;
      color: var(--clr-text-dark);
      margin-bottom: 1.1rem;
    }

    .campaigns__sub {
      font-size: 18px;
      line-height: 28px;
      color: var(--clr-text-muted);
      max-width: 560px;
      margin: 0 auto 2.5rem;
    }

    /* stats row */
    .campaigns__stats { margin-bottom: 2.75rem; }

    .stat__number {
      font-size: 40px;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--clr-text-dark);
      line-height: 36px;
      display: block;
    }

    .stat__number--accent { color: var(--clr-accent); }

    .stat__label {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--clr-text-muted);
      margin-top: .35rem;
      display: block;
    }

    .stat__label--accent { color: var(--clr-accent); }
    .stat__label--green { color: #009966; }
    .stat__label--purple { color: #9810FA; }

    /* divider between stats */
    .stat-col:not(:last-child) { 
        /* border-right: 1px solid #e4e7f0;  */
    }

    /* hero image */
    .campaigns__img {
      width: 100%;
      border-radius: 18px;
      display: block;
      object-fit: cover;
      max-height: 760px;
      box-shadow: 0 20px 60px rgba(59,91,252,0.10), 0 4px 16px rgba(0,0,0,0.06);
    }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    .cta {
      padding: 100px 0;
      background: color-mix(in srgb, #155DFC 5%, #0d1117 95%);
      text-align: center;
    }

    .cta__headline {
      font-size: 40px;
      font-weight: 800;
      letter-spacing: -.02em;
      color: var(--clr-white);
      margin-bottom: 1.25rem;
    }

    .cta__headline span { color: var(--clr-accent); }

    .cta__sub {
      font-size: 20px;
      line-height: 28px;
      color: #90A1B9;
      max-width: 520px;
      margin: 0 auto 2.5rem;
    }

    .cta__btns {
      display: flex;
      flex-wrap: wrap;
      gap: .85rem;
      justify-content: center;
      margin-bottom: 1.25rem;
    }

    /* outline white button for FAQs */
    .btn-outline-white {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.25);
      color: var(--clr-white);
      font-weight: 700;
      font-size: .95rem;
      border-radius: 999px;
      padding: .7rem 1.75rem;
      transition: border-color .22s, background .22s, transform .18s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .4rem;
    }

    .btn-outline-white:hover {
      border-color: rgba(255,255,255,0.6);
      background: rgba(255,255,255,0.06);
      color: var(--clr-white);
      transform: translateY(-2px);
    }

    .cta__guarantee {
      font-size: 14px;
      color: #62748E;
    }

    /* footer css starts here
    ============================================================
       FOOTER
    ============================================================ */
    .footer {
      background: #ECEFFD;
      padding: 60px 0 0;
    }

    .footer__logo-mark {
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--clr-accent);
      letter-spacing: -.03em;
      line-height: 1;
      display: inline-block;
      margin-bottom: .3rem;
      text-decoration: none;
    }

    .footer__logo-mark span { color: var(--clr-text-dark); }

    .footer__tagline {
      font-size: 10.7px;
      font-weight: 700;
      color: var(--clr-text-dark);
      margin-bottom: 1rem;
    }

    .footer__about {
      font-size: 12px;
      line-height: 20px;
      color: var(--clr-text-muted);
      max-width: 300px;
      margin-bottom: 1.25rem;
    }

    .footer__fine {
      font-size: 12px;
      color: var(--clr-text-muted);
    }

    /* nav columns */
    .footer__col-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--clr-text-dark);
      margin-bottom: 1.25rem;
    }

    .footer__links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer__links li { margin-bottom: .75rem; }

    .footer__links a {
      font-size: 12px;
      /* color: var(--clr-text-muted); */
      color: #000000;
      text-decoration: none;
      transition: color .18s;
    }

    .footer__links a:hover { color: var(--clr-accent); }

    /* contact items */
    .footer__contact-item {
      display: flex;
      align-items: flex-start;
      gap: .85rem;
      margin-bottom: 1.35rem;
    }

    .footer__contact-icon {
      width: 38px;
      height: 38px;
      min-width: 38px;
      border-radius: 8px;
      /* border: 1px solid #d0d5f5; */
      border: 1px solid #E2E8F0;
      background: #FFFFFF80;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--clr-text-dark);
    }

    .footer__contact-label {
      font-size: 12px;
      font-weight: 500;
      color: var(--clr-text-muted);
      margin-bottom: .15rem;
    }

    .footer__contact-value {
      font-size: 14px;
      font-weight: 500;
      color: var(--clr-text-dark);
      text-decoration: none;
      display: block;
      transition: color .18s;
    }

    .footer__contact-value:hover { color: var(--clr-accent); }

    /* bottom bar */
    .footer__bottom {
      border-top: 1px solid #D9D9D9;
      margin-top: 3rem;
      padding: 1.25rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: .75rem;
    }

    .footer__copy {
      font-size: 12px;
      color: #000;
      margin: 0;
    }

    .footer__legal {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer__legal a {
      font-size: 12px;
      color: #000;
      text-decoration: none;
      transition: color .18s;
    }

    .footer__legal a:hover { color: var(--clr-accent); }
    /* footer css ends here */

    /* ============================================================
       RESPONSIVE TWEAKS
    ============================================================ */
    @media (max-width: 991.98px) {
      .hero {
        /* background-image:
          linear-gradient(to bottom, rgba(255,255,255,0.94) 0%, rgba(235,240,255,0.88) 100%),
          url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1600&q=80'); */
        text-align: center;
      }

      .hero__body { max-width: 100%; }

      .hero__cta-group { justify-content: center; }

      .hero__dashboard-img {
        margin: 2.5rem auto 0;
        max-width: 90%;
      }

      .tracking__inner { padding: 36px 20px 48px; }

      /* stack table rows as cards on mobile */
      .tracking__table thead { display: none; }
      .tracking__table tbody tr {
        display: block;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        padding: 1rem;
        margin-bottom: 1rem;
      }
      .tracking__table td {
        display: block;
        width: 100% !important;
        padding: .3rem 0;
      }
      /* .tracking__table td:first-child::before { content: 'ðŸ“Œ '; } */
      /* .tracking__table td:nth-child(2)::before { content: 'â“ '; } */
      /* .tracking__table td:last-child::before  { content: 'âœ… '; } */
      .tracking__check::before{
        display: none;
      }

      .footer__about { max-width: 100%; }
      .footer__bottom { justify-content: center; text-align: center; }
      .stat-col:not(:last-child) { border-right: none; 
        /* border-bottom: 1px solid #e4e7f0;  */
        padding-bottom: 1rem; margin-bottom: 1rem; }
      .problem__quote { display: none; }
      .biz-card__cols { grid-template-columns: 1fr; }

      /* remove divider on mobile, add bottom border instead */
      .features__col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #eef0f6;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
      }

      .tracking__headline{
        font-size: 36px;
        line-height: 52px;
      }

      .campaigns__headline,
      .privacy__headline{
        font-size: 32px;
        line-height: 38px;
      }
    }
