/*
=========================================================
Bareeq Tawasul — Extracted Homepage Base CSS
Extracted safely from index.html
Layout and existing structure preserved
=========================================================
*/

:root{
    --bt-navy:#07111f;
    --bt-navy-2:#0b1c2d;
    --bt-gold:#0ea57f;
    --bt-gold-2:#299fd5;
    --bt-white:#f8fafc;
    --bt-muted:#b8c4d4;
    --bt-container:min(1240px, calc(100% - 40px));
    --topbar-h:78px;
  }

  *{box-sizing:border-box}

  html{
    scroll-behavior:smooth;
    overflow-x:hidden;
  }

  body{
    margin:0;
    padding-top:var(--topbar-h);
    overflow-x:hidden;
    font-family:"Tajawal", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
      radial-gradient(900px 520px at 20% 19%, rgba(212,175,55,.18), transparent 62%),
      radial-gradient(900px 560px at 78% 34%, rgba(30,85,130,.18), transparent 66%),
      linear-gradient(180deg, #07111f 0%, #081827 44%, #06111f 100%);
    color:var(--bt-white);
  }

  body::before{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-2;
    background:
      linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size:72px 72px;
    mask-image:linear-gradient(180deg, rgba(0,0,0,.5), transparent 85%);
  }

  body::after{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    background:
      radial-gradient(circle at 50% 0%, rgba(255,255,255,.08), transparent 34%),
      linear-gradient(180deg, rgba(2,6,23,.10), rgba(2,6,23,.46));
  }

  a{color:inherit}

  .sr-only{
    position:absolute!important;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }

  .topbar{
    position:fixed!important;
    top:0!important;
    right:0!important;
    left:0!important;
    width:100%!important;
    height:var(--topbar-h)!important;
    min-height:0!important;
    max-height:var(--topbar-h)!important;
    z-index:99999!important;
    overflow:hidden!important;
    display:block!important;
    background:rgba(7,17,31,.94)!important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 42px rgba(0,0,0,.30);
  }

  .topbar__in{
    width:var(--bt-container);
    height:var(--topbar-h)!important;
    min-height:0!important;
    max-height:var(--topbar-h)!important;
    margin-inline:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
  }

  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    flex:0 0 auto;
  }

  .brand img{
    width:42px;
    height:42px;
    border-radius:999px;
    background:rgba(255,255,255,.94);
    padding:4px;
    box-shadow:0 10px 26px rgba(0,0,0,.24);
  }

  .brand b{
    font-size:23px;
    font-weight:900;
    letter-spacing:-.3px;
    color:#fff;
    white-space:nowrap;
  }

  .topbar__nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:34px;
    flex:1 1 auto;
  }

  .topbar__link{
    position:relative;
    text-decoration:none;
    font-weight:900;
    color:rgba(248,250,252,.82);
    transition:color .22s ease, transform .22s ease;
    white-space:nowrap;
  }

  .topbar__link::after{
    content:"";
    position:absolute;
    right:0;
    left:0;
    bottom:-10px;
    height:2px;
    border-radius:99px;
    background:linear-gradient(90deg, transparent, var(--bt-gold), transparent);
    opacity:0;
    transform:scaleX(.35);
    transition:.22s ease;
  }

  .topbar__link:hover{
    color:#fff;
    transform:translateY(-1px);
  }

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

  .topbar__actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex:0 0 auto;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 22px;
    border-radius:18px;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.10);
    font-weight:900;
    transition:.22s ease;
    cursor:pointer;
    white-space:nowrap;
  }

  .btn--lg{
    min-height:56px;
    padding-inline:26px;
  }

  .btn--primary{
    color:#111827!important;
    background:linear-gradient(180deg, #5fcdb7 0%, #0ea57f 100%)!important;
    border:1px solid rgba(255,235,150,.75)!important;
    box-shadow:0 16px 34px rgba(212,175,55,.28), inset 0 1px 0 rgba(255,255,255,.42);
  }

  .btn--primary:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 44px rgba(212,175,55,.36), inset 0 1px 0 rgba(255,255,255,.52);
  }

  .btn--ghost{
    color:#fff;
    background:rgba(255,255,255,.045)!important;
    border:1px solid rgba(255,255,255,.11)!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  }

  .btn--ghost:hover{
    transform:translateY(-2px);
    border-color:rgba(212,175,55,.30)!important;
  }

  .mnav-btn{
    display:none;
    width:48px;
    height:48px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.055);
    color:#fff;
    font-size:22px;
    cursor:pointer;
  }

  .mnav-backdrop,
  .mnav{
    display:none;
  }

  .hero.hero--dash{
    position:relative;
    isolation:isolate;
    padding:0 0 92px;
    min-height:auto;
  }

  .hero.hero--dash::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-3;
    background:
      radial-gradient(780px 480px at 22% 26%, rgba(212,175,55,.20), transparent 68%),
      radial-gradient(760px 520px at 72% 45%, rgba(34,96,145,.21), transparent 64%),
      radial-gradient(520px 420px at 53% 16%, rgba(255,255,255,.055), transparent 68%);
  }

  .hero.hero--dash::after{
    content:"";
    position:absolute;
    right:0;
    left:0;
    top:0;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(212,175,55,.36), transparent);
    opacity:.7;
  }

  .hero__bg{
    position:absolute;
    inset:0;
    z-index:-2;
    pointer-events:none;
    background:
      radial-gradient(580px 360px at 18% 42%, rgba(212,175,55,.12), transparent 72%),
      linear-gradient(180deg, rgba(11,28,45,.40), rgba(7,17,31,.18));
  }

  .hero__in{
    width:var(--bt-container);
    margin-inline:auto;
    padding-top:86px;
  }

  .hero__grid.hero__grid--dash{
    display:grid;
    grid-template-columns:minmax(0, .95fr) minmax(420px, 1.05fr);
    gap:42px 54px;
    align-items:start;
  }

  .hero__statement{
    grid-column:1 / -1;
    width:100%;
    max-width:1240px;
    margin:0 auto 42px;
    display:grid;
    grid-template-columns:120px minmax(0, 1fr) 120px;
    align-items:center;
    gap:22px;
    text-align:center;
  }

  .hero__statement > span{
    position:relative;
    display:block;
    height:1px;
    background:linear-gradient(90deg, transparent, rgba(212,175,55,.86), transparent);
  }

  .hero__statement > span::after{
    content:"";
    position:absolute;
    top:50%;
    width:11px;
    height:11px;
    border-radius:999px;
    background:linear-gradient(180deg, #5fcdb7, #0ea57f);
    box-shadow:0 0 0 5px rgba(212,175,55,.10), 0 0 22px rgba(212,175,55,.74);
    transform:translateY(-50%);
  }

  .hero__statement > span:first-child::after{left:0}
  .hero__statement > span:last-child::after{right:0}

  .hero__title--single{
    margin:0 auto;
    width:100%;
    max-width:none;
    white-space:nowrap!important;
    text-wrap:nowrap;
    font-size:clamp(26px, 2.45vw, 40px);
    line-height:1.25;
    letter-spacing:-.4px;
    text-align:center;
    color:#fff;
    text-shadow:0 18px 40px rgba(0,0,0,.44);
  }

  .grad-text{
    color:#299fd5;
    background:linear-gradient(180deg, #5fcdb7 0%, #0ea57f 72%, #087a68 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    filter:drop-shadow(0 10px 18px rgba(212,175,55,.16));
  }

  .hero__copy{
    padding-top:86px;
    order:3;
  }

  .hero__desc.hero__desc--dash{
    margin:0;
    color:rgba(248,250,252,.88);
    font-size:clamp(18px, 1.35vw, 23px);
    line-height:2.05;
    font-weight:800;
    text-align:right;
    max-width:720px;
  }

  .hero__desc strong{
    color:#fff;
    font-weight:900;
  }

  .hero__slogans{
    position:relative;
    margin-top:30px;
    padding:28px 30px 28px 94px;
    border-radius:28px;
    background:
      radial-gradient(360px 160px at 92% 0%, rgba(212,175,55,.13), transparent 64%),
      linear-gradient(180deg, rgba(16,38,59,.72), rgba(9,24,39,.66));
    border:1px solid rgba(255,255,255,.09);
    box-shadow:0 22px 58px rgba(0,0,0,.36), inset 0 1px 0 rgba(255,255,255,.055);
    overflow:hidden;
  }

  .hero__slogans::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(90deg, transparent, rgba(255,255,255,.05), transparent);
    mask:linear-gradient(#000, transparent 74%);
  }

  .hero__slogans::after{
    content:"📈\A⚙️\A🎯";
    white-space:pre;
    position:absolute;
    left:24px;
    top:50%;
    transform:translateY(-50%);
    color:var(--bt-gold);
    font-size:25px;
    line-height:2.18;
    text-align:center;
    opacity:.95;
  }

  .hero__slogans p{
    margin:0;
    color:#f8fafc;
    font-size:19px;
    line-height:2.15;
    font-weight:800;
  }

  .hero__slogans p + p{margin-top:8px}
  .hero__slogans b{color:var(--bt-gold-2);font-weight:900}

  .hero__ctas{
    display:flex;
    align-items:center;
    margin-top:26px;
    gap:12px;
    flex-wrap:wrap;
  }

  .hero__note{
    display:inline-flex;
    align-items:center;
    min-height:48px;
    padding:0 16px;
    border-radius:16px;
    color:rgba(248,250,252,.78);
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
  }

  .stats.stats--dash{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;
    margin-top:24px;
  }

  .stat{
    padding:18px 16px;
    border-radius:22px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 16px 42px rgba(0,0,0,.20);
  }

  .stat b{
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:900;
    margin-bottom:8px;
  }

  .stat span{
    color:rgba(226,232,240,.76);
    font-size:14px;
    line-height:1.8;
    font-weight:700;
  }

  .dashwrap{
    position:relative;
    order:2;
    margin-top:150px;
    padding:34px;
    border-radius:34px;
    background:
      linear-gradient(180deg, rgba(212,175,55,.15), rgba(212,175,55,.04)),
      rgba(255,255,255,.035);
    border:1px solid rgba(212,175,55,.18);
    box-shadow:0 30px 90px rgba(0,0,0,.46), inset 0 1px 0 rgba(255,255,255,.06);
  }

  .dashwrap::before{
    content:"";
    position:absolute;
    inset:-1px;
    z-index:-1;
    border-radius:inherit;
    background:
      radial-gradient(360px 180px at 18% 10%, rgba(212,175,55,.20), transparent 70%),
      radial-gradient(320px 180px at 88% 80%, rgba(58,130,188,.16), transparent 70%);
    filter:blur(.2px);
  }

  .dashcard{
    border-radius:28px;
    background:linear-gradient(180deg, rgba(11,28,45,.82), rgba(7,17,31,.92));
    border:1px solid rgba(255,255,255,.10);
    overflow:hidden;
    box-shadow:0 24px 64px rgba(0,0,0,.42);
  }

  .dashcard__top{
    display:flex;
    flex-direction:row-reverse;
    justify-content:space-between;
    align-items:flex-start;
    gap:18px;
    padding:24px 26px 20px;
  }

  .dashcard__badge{
    flex:0 0 auto;
    padding:9px 14px;
    border-radius:999px;
    color:var(--bt-gold-2);
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.22);
    font-size:13px;
    font-weight:900;
    letter-spacing:.3px;
  }

  .dashcard__title{
    color:#f8fafc;
    font-size:18px;
    line-height:1.8;
    font-weight:900;
    max-width:430px;
  }

  .dashcard video{
    display:block;
    width:calc(100% - 48px);
    margin:0 24px 24px;
    aspect-ratio:16 / 10;
    object-fit:cover;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 50px rgba(0,0,0,.42);
  }

  .gridsec,
  .why,
  .testi,
  .about,
  .faq,
  .finalcta,
  .article-hub{
    position:relative;
    z-index:2;
  }

  .gridsec,
  .why,
  .testi,
  .about,
  .faq,
  .affsec,
  .payglow,
  .finalcta{
    padding:70px 0;
  }

  .gridsec__in,
  .why__in,
  .testi__in,
  .about__in,
  .faq__in,
  .affsec__in,
  .payglow__in,
  .finalcta__in,
  .footer__in,
  .grids{
    width:var(--bt-container);
    margin-inline:auto;
  }

  .gridsec__title,
  .why__title,
  .testi__title,
  .faq__title,
  .about__title{
    margin:0 0 26px;
    text-align:center;
    color:#fff;
    font-size:clamp(28px, 2.4vw, 42px);
    font-weight:900;
    line-height:1.3;
    text-shadow:0 16px 40px rgba(0,0,0,.35);
  }

  .whygrid,
  .media-grid,
  .testigrid,
  .faqgrid,
  .grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:18px;
  }

  .faqgrid,
  .testigrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .whycard,
  .gcard,
  .media-card,
  .tcard,
  .faqcard,
  .affcard,
  .about__media,
  .finalcta__in{
    border:1px solid rgba(255,255,255,.09);
    box-shadow:0 20px 58px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
    background:linear-gradient(180deg, rgba(16,38,59,.70), rgba(9,24,39,.72));
    border-radius:26px;
  }

  .whycard,
  .media-card,
  .tcard,
  .faqcard{
    padding:24px;
    transition:.22s ease;
  }

  .whycard:hover,
  .media-card:hover,
  .tcard:hover{
    transform:translateY(-5px);
    border-color:rgba(212,175,55,.26);
    box-shadow:0 28px 74px rgba(0,0,0,.34), 0 0 0 1px rgba(212,175,55,.06) inset;
  }

  .whycard__title,
  .gcard__title,
  .cap{
    color:#fff;
    font-size:21px;
    font-weight:900;
    margin-bottom:10px;
  }

  .whycard__desc,
  .gcard__desc,
  .about__desc,
  .tcard__txt,
  .faqcard__a{
    color:rgba(226,232,240,.82);
    font-size:16px;
    line-height:1.9;
    font-weight:600;
  }

  /* ================================
     Premium Platform Cards - Clean Equal Layout
  ================================= */

  .gridsec{
    overflow:hidden;
  }

  .gridsec::before{
    content:"";
    position:absolute;
    inset:auto 0 20px 0;
    height:360px;
    pointer-events:none;
    background:
      radial-gradient(520px 220px at 18% 50%, rgba(212,175,55,.13), transparent 68%),
      radial-gradient(520px 220px at 82% 50%, rgba(67,132,188,.14), transparent 68%);
    opacity:.9;
    z-index:-1;
  }

  .gridsec .grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    align-items:stretch;
    gap:26px;
    perspective:1200px;
  }

  .gcard{
    position:relative;
    display:grid;
    grid-template-rows:auto auto auto 1fr;
    height:100%;
    min-height:560px;
    padding:30px 28px 28px;
    text-decoration:none;
    overflow:hidden;
    isolation:isolate;
    border-radius:34px;
    border:1px solid rgba(212,175,55,.18);
    background:
      radial-gradient(360px 190px at 82% 0%, rgba(212,175,55,.17), transparent 68%),
      radial-gradient(320px 190px at 12% 92%, rgba(59,130,246,.12), transparent 70%),
      linear-gradient(180deg, rgba(14,38,61,.92), rgba(7,20,35,.96));
    box-shadow:
      0 28px 80px rgba(0,0,0,.38),
      inset 0 1px 0 rgba(255,255,255,.08);
    transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  }

  .gcard::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    border-radius:inherit;
    background:
      linear-gradient(135deg, rgba(255,255,255,.12), transparent 34%),
      linear-gradient(315deg, rgba(212,175,55,.10), transparent 42%);
    opacity:.75;
    pointer-events:none;
  }

  .gcard::after{
    content:"";
    position:absolute;
    inset:1px;
    z-index:-1;
    border-radius:32px;
    border:1px solid rgba(255,255,255,.045);
    pointer-events:none;
  }

  .gcard:hover{
    transform:translateY(-8px) scale(1.012);
    border-color:rgba(247,217,106,.46);
    box-shadow:
      0 34px 96px rgba(0,0,0,.48),
      0 0 0 1px rgba(212,175,55,.08) inset,
      0 0 42px rgba(212,175,55,.10);
  }

  .gcard .icon-badge{
    position:absolute;
    top:24px;
    left:24px;
    width:62px;
    height:54px;
    margin:0;
    border-radius:20px;
    display:grid;
    place-items:center;
    font-size:25px;
    color:#5fcdb7;
    background:
      linear-gradient(180deg, rgba(255,230,128,.18), rgba(212,175,55,.08)),
      rgba(255,255,255,.035);
    border:1px solid rgba(247,217,106,.25);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.10),
      0 12px 28px rgba(0,0,0,.24);
  }

  .gcard__title{
    margin:0;
    padding-left:86px;
    min-height:66px;
    display:flex;
    align-items:center;
    color:#fff;
    font-size:24px;
    line-height:1.35;
    font-weight:900;
    letter-spacing:-.2px;
    text-shadow:0 12px 28px rgba(0,0,0,.35);
  }

  .gcard__desc{
    margin:20px 0 0;
    min-height:210px;
    color:rgba(235,242,250,.84);
    font-size:16.5px;
    line-height:2.05;
    font-weight:800;
    text-align:right;
  }

  .gcard .btn,
  .gcard__cta{
    width:100%;
    min-height:54px;
    margin:24px 0 18px;
    border-radius:18px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#111827!important;
    background:linear-gradient(180deg, #5fcdb7 0%, #0ea57f 100%)!important;
    border:1px solid rgba(255,235,150,.72)!important;
    box-shadow:
      0 16px 34px rgba(212,175,55,.24),
      inset 0 1px 0 rgba(255,255,255,.45);
    font-weight:900;
    text-decoration:none;
    transition:.22s ease;
  }

  .gcard:hover .btn,
  .gcard:hover .gcard__cta{
    transform:translateY(-2px);
    box-shadow:
      0 20px 42px rgba(212,175,55,.32),
      inset 0 1px 0 rgba(255,255,255,.55);
  }

  .gcard__links{
    margin-top:auto;
    padding-top:0;
    display:grid;
    align-content:start;
    gap:14px;
  }

  .gcard .gcard__links a,
  .gcard .gcard__links a.btn,
  .gcard .gcard__links a.gcard__cta{
    position:relative;
    width:100%;
    min-height:64px;
    margin:0;
    padding:13px 16px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    color:#176f86!important;
    text-decoration:none!important;
    font-size:16px;
    line-height:1.65;
    font-weight:900;
    text-align:right;
    background:rgba(255,255,255,.045)!important;
    border:1px solid rgba(255,255,255,.075)!important;
    box-shadow:0 10px 24px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.035)!important;
    transition:.22s ease;
  }

  .gcard .gcard__links a::before,
  .gcard .gcard__links a.btn::before,
  .gcard .gcard__links a.gcard__cta::before{
    content:"←";
    order:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:22px;
    height:22px;
    margin-left:8px;
    border-radius:999px;
    color:#111827;
    background:linear-gradient(180deg, #5fcdb7, #0ea57f);
    font-size:13px;
    font-weight:900;
    flex:0 0 22px;
  }

  .gcard .gcard__links a:hover,
  .gcard .gcard__links a.btn:hover,
  .gcard .gcard__links a.gcard__cta:hover{
    color:#245d70!important;
    background:rgba(212,175,55,.08)!important;
    border-color:rgba(212,175,55,.24)!important;
    transform:translateX(-3px);
    box-shadow:0 14px 30px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.045)!important;
  }

  .gcard:nth-child(1){
    background:
      radial-gradient(380px 190px at 82% 0%, rgba(212,175,55,.18), transparent 68%),
      radial-gradient(320px 190px at 12% 92%, rgba(34,197,94,.10), transparent 70%),
      linear-gradient(180deg, rgba(14,38,61,.94), rgba(7,20,35,.97));
  }

  .gcard:nth-child(2){
    background:
      radial-gradient(380px 190px at 82% 0%, rgba(212,175,55,.16), transparent 68%),
      radial-gradient(320px 190px at 12% 92%, rgba(168,85,247,.11), transparent 70%),
      linear-gradient(180deg, rgba(14,38,61,.94), rgba(7,20,35,.97));
  }

  .gcard:nth-child(3){
    background:
      radial-gradient(380px 190px at 82% 0%, rgba(212,175,55,.16), transparent 68%),
      radial-gradient(320px 190px at 12% 92%, rgba(59,130,246,.12), transparent 70%),
      linear-gradient(180deg, rgba(14,38,61,.94), rgba(7,20,35,.97));
  }

  .affcard{
    padding:34px;
    border-radius:30px;
    background:
      radial-gradient(900px 300px at 18% 24%, rgba(212,175,55,.10), transparent 62%),
      linear-gradient(180deg, rgba(11,28,45,.90), rgba(9,23,40,.90));
    border:1px solid rgba(212,175,55,.18);
  }

  .affcard__top,
  .affflow,
  .affchips,
  .affcta{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
  }

  .affbadge,
  .chip{
    padding:9px 14px;
    border-radius:999px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.20);
    color:#176f86;
    font-weight:900;
  }

  .affmini{
    color:rgba(226,232,240,.75);
    font-weight:800;
  }

  .affcard__title{
    color:#fff;
    font-size:clamp(26px, 2.2vw, 38px);
    line-height:1.4;
    margin:22px 0 12px;
    font-weight:900;
  }

  .affcard__desc{
    color:rgba(226,232,240,.82);
    line-height:1.9;
    font-size:17px;
    margin:0 0 20px;
  }

  .affstep{
    flex:1 1 240px;
    display:flex;
    gap:12px;
    align-items:center;
    padding:16px;
    border-radius:20px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.08);
  }

  .afftxt{
    color:#fff;
    font-weight:800;
    line-height:1.8;
  }

  .afftxt b{color:#176f86}

  .affchips,
  .affcta{margin-top:18px}

  .grids{
    padding:70px 0;
  }

  .paylines{
    padding:28px;
    border-radius:28px;
    text-align:center;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.09);
  }

  .paylines p{
    color:#fff;
    font-size:18px;
    line-height:1.9;
    margin:8px 0;
    font-weight:800;
  }

  .paylines em{
    color:#176f86;
    font-style:normal;
  }

  .tcard__stars{
    color:#176f86;
    letter-spacing:2px;
    margin-bottom:10px;
  }

  .tcard__user{
    color:#fff;
    font-weight:900;
    margin-top:18px;
  }

  .about__in{
    display:grid;
    grid-template-columns:1fr .8fr;
    gap:34px;
    align-items:center;
  }

  .about__title{
    text-align:right;
  }

  .about__bullets{
    margin:20px 0 0;
    padding:0 20px 0 0;
    color:#fff;
    line-height:2;
    font-weight:800;
  }

  .about__media{
    padding:28px;
    display:grid;
    place-items:center;
  }

  .about__media img{
    width:100%;
    height:auto;
    max-width:420px;
    border-radius:24px;
  }

  .faqcard summary{
    cursor:pointer;
    color:#fff;
    font-weight:900;
    font-size:18px;
    line-height:1.8;
  }

  .faqcard a{
    color:#176f86;
    text-decoration:none;
    font-weight:900;
  }

  .article-hub{
    width:var(--bt-container);
    margin-inline:auto;
    padding:0 0 72px;
  }

  .article-hub__box{
    padding:32px 26px;
    border-radius:28px;
    background:
      radial-gradient(900px 300px at 18% 24%, rgba(212,175,55,.10), transparent 62%),
      linear-gradient(180deg, rgba(11,28,45,.90), rgba(9,23,40,.90));
    border:1px solid rgba(212,175,55,.18);
    box-shadow:0 22px 60px rgba(0,0,0,.40), inset 0 0 0 1px rgba(255,255,255,.03);
  }

  .article-hub__lead{
    margin:0 0 18px;
    color:rgba(245,247,250,.78);
    font-size:16px;
    line-height:1.9;
  }

  .article-hub__grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px 18px;
    margin-top:18px;
  }

  .article-hub__grid h3{
    margin:0;
    font-size:17px;
    line-height:1.7;
    font-weight:800;
  }

  .article-hub__grid a{
    color:#176f86;
    text-decoration:none;
  }

  .article-hub__grid a:hover{text-decoration:underline}

  .article-hub__author{
    margin:22px 0 0;
    color:#cbd5e1;
    font-size:16px;
    line-height:1.9;
  }

  .article-hub__author a{
    color:#0ea57f;
    text-decoration:none;
    font-weight:800;
  }

  .articles-cta-row{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:22px;
  }

  .articles-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 20px;
    border-radius:18px;
    text-decoration:none;
    font-weight:900;
    color:#fff;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.10);
    transition:.22s ease;
  }

  .articles-cta:hover{
    transform:translateY(-2px);
    border-color:rgba(212,175,55,.28);
    color:#176f86;
  }

  .finalcta__in{
    padding:34px;
  }

  .final__rail{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
  }

  .final__pill{
    padding:12px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    font-weight:800;
  }

  .footer{
    padding:50px 0 30px;
    background:rgba(3,9,18,.55);
    border-top:1px solid rgba(255,255,255,.08);
  }

  .footer__in{
    display:grid;
    grid-template-columns:1.4fr repeat(3, 1fr);
    gap:24px;
  }

  .f_col strong{
    display:block;
    color:#fff;
    font-size:19px;
    margin-bottom:12px;
    font-weight:900;
  }

  .f_col p,
  .f_col a,
  .soc{
    display:block;
    color:rgba(226,232,240,.76);
    text-decoration:none;
    line-height:1.9;
    font-weight:700;
  }

  .f_col a:hover{color:#176f86}

  .f_copy{
    grid-column:1 / -1;
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    padding-top:24px;
    margin-top:10px;
    border-top:1px solid rgba(255,255,255,.08);
    color:rgba(226,232,240,.70);
    font-weight:700;
  }

  .f_copy a{
    color:#176f86;
    text-decoration:none;
  }

  .lazy{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .7s ease, transform .7s ease;
  }

  .lazy.is-in{
    opacity:1;
    transform:translateY(0);
  }

  @media (max-width:1180px){
    .hero__grid.hero__grid--dash{
      grid-template-columns:1fr;
    }

    .hero__statement{
      grid-template-columns:1fr;
      gap:15px;
    }

    .hero__statement > span{
      width:min(260px, 68%);
      margin-inline:auto;
    }

    .hero__title--single{
      white-space:normal!important;
      text-wrap:balance;
      font-size:clamp(30px, 6vw, 44px);
    }

    .hero__copy{
      order:2;
      padding-top:4px;
    }

    .dashwrap{
      order:3;
      max-width:760px;
      width:100%;
      margin:25px auto 0;
    }

    .hero__desc.hero__desc--dash{
      max-width:100%;
      text-align:center;
    }

    .hero__ctas{
      justify-content:center;
    }

    .stats.stats--dash{
      max-width:850px;
      margin-inline:auto;
    }

    .gridsec .grid{
      grid-template-columns:1fr;
      max-width:820px;
      margin-inline:auto;
    }

    .gcard{
      min-height:auto;
    }

    .gcard__desc{
      min-height:auto;
    }
  }

  @media (max-width:980px){
    :root{--topbar-h:70px}

    .topbar__nav{
      display:none;
    }

    .mnav-btn{
      display:inline-grid;
      place-items:center;
    }

    .topbar__actions .btn{
      display:none;
    }

    .mnav-backdrop{
      position:fixed;
      inset:0;
      z-index:99990;
      background:rgba(0,0,0,.55);
    }

    .mnav{
      position:fixed;
      top:84px;
      right:16px;
      left:16px;
      z-index:99991;
      padding:16px;
      border-radius:22px;
      background:rgba(7,17,31,.96);
      border:1px solid rgba(255,255,255,.10);
      box-shadow:0 20px 60px rgba(0,0,0,.45);
    }

    .mnav a{
      display:block;
      padding:14px;
      color:#fff;
      text-decoration:none;
      font-weight:900;
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .mnav a:last-child{border-bottom:0}

    body.mnav-open .mnav,
    body.mnav-open .mnav-backdrop{
      display:block;
    }

    .hero__in{
      width:min(100% - 24px, 760px);
      padding-top:62px;
    }

    .hero__slogans{
      padding:24px 22px;
      text-align:right;
    }

    .hero__slogans::after{
      display:none;
    }

    .stats.stats--dash,
    .whygrid,
    .media-grid,
    .testigrid,
    .faqgrid,
    .about__in,
    .footer__in,
    .article-hub__grid{
      grid-template-columns:1fr;
    }

    .about__title{
      text-align:center;
    }

    .gridsec .grid{
      gap:20px;
    }

    .gcard{
      padding:26px 22px 24px;
      border-radius:28px;
    }

    .gcard::after{
      border-radius:26px;
    }

    .gcard__title{
      font-size:22px;
      padding-left:80px;
    }

    .gcard .icon-badge{
      top:22px;
      left:22px;
    }
  }

  @media (max-width:620px){
    .brand b{
      font-size:18px;
    }

    .brand img{
      width:38px;
      height:38px;
    }

    .hero.hero--dash{
      padding-bottom:64px;
    }

    .hero__title--single{
      font-size:30px;
    }

    .hero__desc.hero__desc--dash{
      font-size:17px;
      line-height:1.95;
    }

    .hero__slogans p{
      font-size:16px;
      line-height:2;
    }

    .hero__ctas .btn,
    .hero__note{
      width:100%;
    }

    .dashwrap{
      padding:14px;
      border-radius:26px;
    }

    .dashcard{
      border-radius:22px;
    }

    .dashcard__top{
      padding:18px 16px 14px;
    }

    .dashcard__title{
      font-size:15px;
    }

    .dashcard video{
      width:calc(100% - 28px);
      margin:0 14px 14px;
      border-radius:18px;
    }

    .gridsec,
    .why,
    .testi,
    .about,
    .faq,
    .affsec,
    .payglow,
    .finalcta,
    .grids{
      padding:52px 0;
    }

    .gcard{
      padding:24px 18px 22px;
      border-radius:26px;
      min-height:auto;
    }

    .gcard::after{
      border-radius:24px;
    }

    .gcard .icon-badge{
      position:relative;
      top:auto;
      left:auto;
      width:58px;
      height:54px;
      margin:0 auto 16px;
    }

    .gcard__title{
      min-height:0;
      padding-left:0;
      justify-content:center;
      text-align:center;
      font-size:22px;
    }

    .gcard__desc{
      min-height:auto;
      text-align:center;
      font-size:16px;
      line-height:1.95;
    }

    .gcard .gcard__links a{
      min-height:auto;
      text-align:right;
      justify-content:space-between;
    }

    .article-hub{
      width:min(100% - 24px, 760px);
      padding:0 0 58px;
    }

    .article-hub__box,
    .affcard,
    .finalcta__in{
      padding:24px 16px;
      border-radius:24px;
    }

  }
/* Fix: Digital Growth Article Cards - Desktop + All Screens */
.grids .gcard,
.article-hub .gcard{
  min-height:220px !important;
  height:auto !important;
  display:flex !important;
  flex-direction:column !important;
  padding:26px 24px !important;
}

.grids .gcard__desc,
.article-hub .gcard__desc{
  min-height:0 !important;
  margin-top:12px !important;
}

.grids .gcard__title,
.article-hub .gcard__title{
  min-height:0 !important;
  padding-left:0 !important;
}

.grids .gcard .icon-badge,
.article-hub .gcard .icon-badge{
  position:relative !important;
  top:auto !important;
  left:auto !important;
  margin:0 0 16px !important;
}
