    :root{
      --bg:#07111f;
      --bg-soft:#0d1b2f;
      --surface:#0f1f36;
      --surface-2:rgba(255,255,255,.05);
      --surface-3:rgba(255,255,255,.08);
      --stroke:rgba(255,255,255,.09);
      --stroke-strong:rgba(255,255,255,.16);
      --text:#f8fbff;
      --muted: #ededed;
      --muted-2:#ffffff;
      --brand:#72d5ff;
      --brand-2:#4e9eff;
      --brand-3:#7c5cff;
      --gold:#d4af37;
      --gold-soft:#ffd975;
      --success:#52d39c;
      --danger:#ff8b8b;
      --shadow: 0;
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1240px;
    }

    *{
      box-sizing:border-box;
      margin:0;
      padding:0;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:"Cairo","Inter",system-ui,sans-serif;
      background: radial-gradient(circle at top right, rgba(74, 100, 130, 0.06), transparent 30%),
        radial-gradient(circle at top left, rgba(51, 71, 92, 0.04), transparent 26%),
        linear-gradient(135deg, rgba(51, 71, 92, 0.03), rgba(74, 100, 130, 0.02)),
        #f9f9f9;
      color:var(--text);
      line-height:1.7;
      overflow-x:hidden;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    img{
      max-width:100%;
      display:block;
    }

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin-inline:auto;
    }

    .lang-en{
      display:none;
      direction:ltr;
      font-family:"Inter","Cairo",system-ui,sans-serif;
    }

    body.is-en{
      direction:ltr;
      font-family:"Inter","Cairo",system-ui,sans-serif;
    }

    body.is-en .lang-ar{
      display:none !important;
    }

    body.is-en .lang-en{
      display:initial !important;
    }

    body:not(.is-en) .lang-ar{
      display:initial !important;
    }

    body:not(.is-en) .lang-en{
      display:none !important;
    }

    .top-notice{
      position:sticky;
      top:0;
      z-index:300;
      backdrop-filter:blur(18px);
      background: linear-gradient(to right, #142850 0%, #27496d 100%);
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .top-notice-inner{
      min-height:56px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding:10px 0;
    }

    .top-notice-links{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
    }

    .mini-link{
      padding:10px 14px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:999px;
      background:rgba(255,255,255,.05);
      font-size:14px;
      font-weight:800;
      color:#fff;
      transition:.25s ease;
    }

    .mini-link:hover{
      transform:translateY(-2px);
      border-color:rgba(255,255,255,.2);
      background:rgba(255,255,255,.09);
    }

    .mini-link.hot{
      background: var(--th-accent);
      color: white;
    }

    .lang-switcher{
      display:flex;
      align-items:center;
      gap:8px;
    }

    .lang-btn{
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.05);
      color:#fff;
      min-width:46px;
      height:40px;
      padding:0 14px;
      border-radius:999px;
      cursor:pointer;
      font-weight:800;
      transition:.25s ease;
      font-family:inherit;
    }

    .lang-btn.active,
    .lang-btn:hover{
      background:linear-gradient(135deg, var(--brand), var(--brand-2));
      color:#07111f;
      border-color:transparent;
    }

    .navbar-wrap{
      position:sticky;
      top:56px;
      z-index:250;
      padding:14px 0 0;
    }

    .navbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:16px 22px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(9,18,33,.72);
      backdrop-filter:blur(20px);
      border-radius:24px;
      box-shadow:var(--shadow);
    }

    .brand-area{
      display:flex;
      align-items:center;
      gap:14px;
      min-width:0;
    }

    .brand-logo{
      width:56px;
      height:56px;
      border-radius:18px;
      overflow:hidden;
      background:linear-gradient(135deg, rgba(114,213,255,.18), rgba(124,92,255,.18));
      border:1px solid rgba(255,255,255,.1);
      padding:8px;
      flex-shrink:0;
    }

    .brand-meta{
      min-width:0;
    }

    .brand-title{
      font-size:18px;
      font-weight:900;
      letter-spacing:.3px;
    }

    .brand-subtitle{
      font-size:13px;
      color:var(--muted);
      font-weight:700;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:center;
    }

    .nav-links a{
      padding:10px 14px;
      color:var(--muted-2);
      font-weight:800;
      font-size:14px;
      border-radius:999px;
      transition:.25s ease;
    }

    .nav-links a:hover{
      color:#fff;
      background:rgba(255,255,255,.06);
    }

    .nav-cta{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:50px;
      padding:0 22px;
      border-radius:16px;
      font-size:15px;
      font-weight:900;
      border:1px solid transparent;
      transition:.25s ease;
      cursor:pointer;
      font-family:inherit;
      text-align:center;
    }

    .btn:hover{
      transform:translateY(-2px);
    }

    .btn-primary{
      background:linear-gradient(135deg, var(--brand), var(--brand-2));
      color:#06111d;
      box-shadow:0 18px 38px rgba(78,158,255,.28);
    }

    .btn-secondary{
      background: rgb(103 61 230);
      color:#fff;
      border-color:rgba(255,255,255,.1);
      font-weight: 300;
      font-size: 17px;
    }

    .btn-gold{
      background:linear-gradient(135deg, var(--gold-soft), var(--gold));
      color:#1b1304;
      box-shadow:0 18px 38px rgba(212,175,55,.22);
    }

    .hero{
      padding:34px 0 26px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:28px;
      align-items:stretch;
    }

    .hero-copy,
    .hero-panel{
      border:1px solid rgba(255,255,255,.08);
      background: linear-gradient(to right, #2c3e50, #4b6584)#f9f9f9;
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }

    .hero-copy{
      padding:46px;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 16px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.11);
      background:rgba(255,255,255,.05);
      color:var(--muted-2);
      font-size:13px;
      font-weight:900;
      margin-bottom:22px;
    }

    .hero-title{
      font-size:clamp(34px,5vw,68px);
      line-height:1.1;
      font-weight:900;
      letter-spacing:-1px;
      max-width:720px;
    }

    .hero-title .accent{
      background:linear-gradient(135deg, #dff7ff, var(--brand), #9fe6ff);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .hero-text{
      color:var(--muted-2);
      font-size:18px;
      margin-top:18px;
      max-width:720px;
    }

    .hero-actions{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      margin-top:28px;
    }

    .hero-contact{
      display:flex;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
      margin-top:26px;
    }

    .hero-contact-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 14px;
      border:1px solid rgba(255,255,255,.09);
      border-radius:16px;
      background:rgba(255,255,255,.04);
      color:var(--muted-2);
      font-size:14px;
      font-weight:800;
    }

    .hero-stats{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:14px;
      margin-top:28px;
    }

    .metric{
      padding:18px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
    }

    .metric strong{
      display:block;
      font-size:28px;
      line-height:1;
      font-weight:900;
      margin-bottom:8px;
      color:#fff;
    }

    .metric span{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }

    .hero-panel{
      padding:28px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:18px;
    }

    .panel-glow{
      position:absolute;
      inset:auto -12% -24% auto;
      width:320px;
      height:320px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(114,213,255,.22), transparent 62%);
      filter:blur(20px);
      pointer-events:none;
    }

    .hero-card{
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border-radius:24px;
      padding:22px;
      position:relative;
      overflow:hidden;
    }

    .hero-card.small{
      border-radius:20px;
      padding:18px;
    }

    .hero-card-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:18px;
    }

    .hero-card-label{
      font-size:12px;
      color:var(--muted);
      font-weight:900;
      letter-spacing:.4px;
      text-transform:uppercase;
    }

    .status-pill{
      padding:8px 12px;
      border-radius:999px;
      background:rgba(82,211,156,.14);
      color:#7cf0bd;
      font-size:12px;
      font-weight:900;
      border:1px solid rgba(82,211,156,.2);
    }

    .hero-price{
      font-size:48px;
      font-weight:900;
      line-height:1;
      margin-bottom:10px;
    }

    .hero-price small{
      font-size:18px;
      color:var(--muted);
      font-weight:800;
    }

    .mini-feature-list{
      display:grid;
      gap:12px;
    }

    .mini-feature{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 16px;
      border-radius:16px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.07);
      font-size:14px;
      font-weight:800;
      color:var(--muted-2);
    }

    .mini-feature i{
      color:var(--brand);
      font-size:18px;
    }

    .hero-bottom-grid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:16px;
    }

    .section{
      padding:32px 0;
    }

    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      margin-bottom:24px;
    }

    .section-tag{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.09);
      color: #000000;
      font-size:12px;
      font-weight:900;
      margin-bottom:12px;
    }

    .section-title{
      font-size:clamp(28px,4vw,44px);
      line-height:1.15;
      font-weight:900;
      color: #000;
    }

    .section-desc{
      color: #000000;
      max-width:720px;
      font-size:17px;
      margin-top: 15px;
    }

    .trust-grid{
      display:grid;
      grid-template-columns:repeat(4, 1fr);
      gap:16px;
    }

    .trust-card{
      padding:24px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background: linear-gradient(to right, #142850 0%, #27496d 100%);
      box-shadow:var(--shadow);
    }

    .trust-card i{
      width:52px;
      height:52px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:rgba(114,213,255,.13);
      color:var(--brand);
      font-size:22px;
      margin-bottom:16px;
    }

    .trust-card h3{
      font-size:20px;
      font-weight:900;
      margin-bottom:8px;
    }

    .trust-card p{
      color: var(--muted);
      font-size: 15px;
      font-weight: 300;
    }

    #th-hero{
      padding:14px 0 6px;
    }

    .league-shell{
      padding:26px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:30px;
      background:
        radial-gradient(800px 280px at 100% 0%, rgba(212,175,55,.12), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      box-shadow:var(--shadow);
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    }

    .league-top{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      margin-bottom:18px;
    }

    .league-title{
      font-size:32px;
      font-weight:900;
      line-height:1.2;
    }

    .league-sub{
      color:var(--muted);
      margin-top:10px;
      font-weight:700;
    }

    .seg{
      display:inline-flex;
      gap:8px;
      flex-wrap:wrap;
      padding:8px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.04);
    }

    .seg-btn{
      min-height:44px;
      padding:0 18px;
      border:none;
      border-radius:999px;
      background:transparent;
      color:var(--muted-2);
      font-size:14px;
      font-weight:900;
      cursor:pointer;
      transition:.25s ease;
      font-family:inherit;
    }

    .seg-btn[aria-pressed="true"]{
      background: linear-gradient(135deg, #673de6, var(--brand-2));
      color:#ffffff;
    }

    .notes{
      list-style:none;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }

    .notes li{
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      font-size:13px;
      font-weight:800;
      color:var(--muted-2);
    }

    .cta-row{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:space-between;
      flex-wrap:wrap;
      margin-bottom:20px;
    }

    .pitch{
      color:var(--muted-2);
      font-weight:800;
    }

    .brand-highlight{
      color:var(--brand);
      font-weight:900;
    }

    .podium{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:18px;
      align-items:end;
    }

    .card{
      padding:24px;
      border-radius:26px;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      position:relative;
      overflow:hidden;
      min-height:248px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      box-shadow:var(--shadow);
      transition:.25s ease;
    }

    .card:hover{
      transform:translateY(-4px);
    }

    .card.gold{
      min-height:292px;
      border-color:rgba(212,175,55,.3);
      box-shadow:0 24px 70px rgba(212,175,55,.16);
    }

    .card.silver{
      border-color:rgba(156,163,175,.2);
    }

    .card.bronze{
      border-color:rgba(180,83,9,.2);
    }

    .rank-num{
      font-size: 52px;
      font-weight:900;
      color:var(--muted);
      margin-bottom:16px;
    }

    .domain{
      font-size:28px;
      line-height:1.2;
      font-weight:900;
      margin-bottom:10px;
      word-break:break-word;
    }

    .points{
      font-size:16px;
      color:var(--muted-2);
      margin-bottom:16px;
      font-weight:800;
    }

    .points b{
      font-size:36px;
      color:#fff;
      margin-inline-end:6px;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      width:max-content;
      padding:10px 14px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      color:#fff;
    }

    .dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:#fff;
    }

    .features-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:16px;
    }

    .feature-card{
      padding:24px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      /* box-shadow:var(--shadow); */
      background: linear-gradient(to right, #142850 0%, #27496d 100%);
    }

    .feature-icon{
      width:56px;
      height:56px;
      display:grid;
      place-items:center;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(114,213,255,.16), rgba(78,158,255,.16));
      color:var(--brand);
      font-size:24px;
      margin-bottom:18px;
    }

    .feature-card h3{
      font-size:20px;
      font-weight:900;
      margin-bottom:8px;
    }

    .feature-card p{
      color:var(--muted);
      font-size: 15px;
      font-weight: 300;
    }

    .pricing-shell{
      border:1px solid rgba(255,255,255,.08);
      border-radius:32px;
      padding:28px;
      background:
        radial-gradient(720px 280px at 100% 0%, rgba(124,92,255,.12), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
      box-shadow:var(--shadow);
    }

    .pricing-grid{
      display:grid;
      grid-template-columns:1.1fr 1fr .8fr;
      gap:18px;
      align-items:stretch;
    }

    .plan-card{
      border:1px solid rgba(255,255,255,.08);
      border-radius:28px;
      padding:24px;
      background: linear-gradient(to right, #142850 0%, #27496d 100%);
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow);
    }

    .plan-card.primary{
      border-color:rgba(78,158,255,.28);
    }

    .plan-card.popular{
      border-color:rgba(212,175,55,.34);
      box-shadow:0 24px 70px rgba(212,175,55,.16);
    }

    .plan-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:36px;
      padding:0 14px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      margin-bottom:18px;
      background:rgba(255,255,255,.06);
      color:var(--muted-2);
      border:1px solid rgba(255,255,255,.08);
    }

    .plan-badge.gold{
      color:#1c1403;
      background:linear-gradient(135deg, var(--gold-soft), var(--gold));
      border:none;
    }

    .plan-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:18px;
    }

    .plan-name{
      font-size:28px;
      font-weight:900;
      line-height:1.1;
    }

    .plan-price{
      text-align:end;
      font-size:42px;
      font-weight:900;
      line-height:1;
    }

    .plan-price small{
      display:block;
      font-size:14px;
      margin-top:10px;
      color:var(--muted);
      font-weight:800;
    }

    .plan-switch{
      display:inline-flex;
      gap:8px;
      padding:8px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      margin-bottom:20px;
    }

    .plan-switch button{
      min-height:44px;
      padding:0 16px;
      border:none;
      border-radius:999px;
      background:transparent;
      color:var(--muted-2);
      cursor:pointer;
      font-weight:900;
      font-family:inherit;
    }

    .plan-switch button.active{
      background:linear-gradient(135deg, var(--brand), var(--brand-2));
      color:#07111f;
    }

    .plan-list{
      list-style:none;
      display:grid;
      gap:12px;
      margin-top:16px;
    }

    .plan-list li{
      display:flex;
      align-items:flex-start;
      gap:12px;
      color:var(--muted-2);
      font-weight:800;
      font-size:15px;
      border-bottom: 1px solid #e4e4e42b;
      padding-bottom: 5px;
    }

    .plan-list i{
      color:var(--success);
      font-size:17px;
      margin-top:4px;
    }

    .plan-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:22px;
    }

    .policy-grid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:16px;
    }

    .policy-card{
      padding:22px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background: linear-gradient(to right, #142850 0%, #27496d 100%);
      box-shadow:var(--shadow);
    }

    .policy-card i{
      width:50px;
      height:50px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:rgba(255,255,255,.06);
      color:var(--brand);
      margin-bottom:14px;
      font-size:20px;
    }

    .policy-card h3{
      font-size:20px;
      margin-bottom:8px;
      font-weight:900;
    }

    .policy-card p{
      color:var(--muted);
      font-size: 15px;
      font-weight: 300;
    }

    .faq-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }

    .faq-item{
      border:1px solid rgba(255,255,255,.08);
      border-radius:22px;
      background: linear-gradient(to right, #142850 0%, #27496d 100%);
      overflow:hidden;
      box-shadow: none;
    }

    .faq-question{
      width:100%;
      border:none;
      background:transparent;
      color:#fff;
      padding:20px 22px;
      text-align:start;
      font-size:16px;
      font-weight:900;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      cursor:pointer;
      font-family:inherit;
    }

    .faq-question i{
      color:var(--brand);
      transition:.25s ease;
    }

    .faq-item.active .faq-question i{
      transform:rotate(45deg);
    }

    .faq-answer{
      display:none;
      padding:0 22px 20px;
      color:var(--muted);
      font-size:15px;
      font-weight:700;
    }

    .faq-item.active .faq-answer{
      display:block;
    }

    .contact-shell{
      padding:30px;
      border-radius:32px;
      border:1px solid rgba(255,255,255,.08);
      background: linear-gradient(to right, #142850 0%, #27496d 100%);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:20px;
      align-items:stretch;
    }

    .contact-panel,
    .contact-box{
      padding:24px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
    }

    .contact-list{
      display:grid;
      gap:14px;
      margin-top:18px;
    }

    .contact-row{
      display:flex;
      align-items:center;
      gap:12px;
      padding:14px 16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      color:var(--muted-2);
      font-weight:800;
    }

    .contact-row i{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:14px;
      background:rgba(114,213,255,.14);
      color:var(--brand);
      flex-shrink:0;
    }

    .footer{
      padding:24px 0 40px;
    }

    .footer-box{
      padding:22px 24px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background: linear-gradient(to right, #2c3e50, #4b6584)#f9f9f9;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:14px;
      font-weight:800;
    }

    .footer-links{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }

    .footer-links a{
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      color:#fff;
      font-size:13px;
      font-weight:900;
      border:1px solid rgba(255,255,255,.08);
    }

    @media (max-width:1180px){
      .hero-grid,
      .pricing-grid,
      .contact-shell{
        grid-template-columns:1fr;
      }

      .trust-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .features-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .podium{
        grid-template-columns:1fr;
      }

      .card.gold{
        min-height:248px;
      }
    }

    @media (max-width:860px){
      .navbar-wrap{
        top:72px;
      }

      .navbar{
        padding:16px;
      }

      .nav-links{
        display:none;
      }

      .hero-copy{
        padding:28px 22px;
      }

      .hero-panel{
        padding:18px;
      }

      .hero-stats,
      .hero-bottom-grid,
      .policy-grid,
      .faq-grid,
      .features-grid,
      .trust-grid{
        grid-template-columns:1fr;
      }

      .league-shell,
      .pricing-shell,
      .contact-shell{
        padding:20px;
      }

      .section-title{
        font-size:30px;
      }

      .league-title{
        font-size:26px;
      }

      .plan-top{
        flex-direction:column;
        align-items:flex-start;
      }

      .plan-price{
        text-align:start;
      }
    }

    @media (max-width:560px){
      .top-notice-inner,
      .nav-cta,
      .hero-actions,
      .hero-contact,
      .section-head,
      .cta-row,
      .footer-box{
        flex-direction:column;
        align-items:stretch;
      }

      .top-notice-links{
        width:100%;
        justify-content:center;
      }

      .lang-switcher{
        justify-content:center;
        width:100%;
      }

      .navbar{
        flex-direction:column;
        align-items:stretch;
      }

      .brand-area{
        justify-content:center;
      }


      .hero-text{
        font-size:16px;
      }

      .hero-price{
        font-size:38px;
      }

      .plan-card{
        padding:20px;
      }

      .domain{
        font-size:24px;
      }
    }
    .th-trust-section {
  position: relative;
  padding: 90px 20px;
  overflow: hidden;
}

      .hero-title{
        font-size: 34px;
      }
.th-trust-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.th-trust-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.th-trust-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(to right, #2c3e50, #4b6584)#f9f9f9;
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
}

.th-trust-head h2 {
  margin: 16px 0 12px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 900;
  color: #000000;
}

.th-trust-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #000000;
  font-weight: 700;
}

.th-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.th-trust-card,
.th-success-strip,
.th-start-box,
.th-stat-box {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  border: 1px solid rgba(148, 163, 184, 0.14);
  /* box-shadow: 0 24px 70px rgba(2, 6, 23, 0.45); */
}

.th-trust-card {
  padding: 28px;
}

.th-card-top {
  margin-bottom: 22px;
}

.th-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  color: #04111d;
  font-size: 12px;
  font-weight: 900;
}

.th-card-top h3 {
  margin: 14px 0 0;
  color: #f8fafc;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 900;
}

.th-pay-block + .th-pay-block {
  margin-top: 22px;
}

.th-pay-block h4 {
  margin: 0 0 14px;
  color: #e2e8f0;
  font-size: 17px;
  font-weight: 800;
}

.th-pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.th-pay-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 5px;
  /* background: linear-gradient(135deg, #f1c857, #b78318); */
  border: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  gap: 15px;
}

 i.fa-cc-visa {
    color: #1a1f71;
}

 i.fa-cc-mastercard {
    color: #ff5f00;
}

i.fa-apple-pay {
    color: #000;
}

 i.fa-money-bill-wave {
    color: #4a90e2;
}

 i.fa-university {
    color: #0070ba;
}

 i.fa-money-check-alt {
    color: #27ae60;
}
.fab.fa-paypal{
      color: #0070ba;

}
.fas.fa-shuttle-van{
      color: #f95a4e;

}
.fas.fa-exchange-alt{
        color: #4CAF50;

}
.fas.fa-globe{
        color: #673AB7;
}
.th-pay-chips span i {
    line-height: 1.6;
    background: #fff;
    /* color: #333; */
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 20px;
    flex-shrink: 0;
}
.th-legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.th-legal-list li {
  position: relative;
  padding: 37px 16px 14px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  border: 1px solid rgba(148, 163, 184, 0.10);
  display: flex;
}

.th-legal-list li::before {
  content: "✓";
  position: absolute;
  right: 16px;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #38bdf8);
  color: #04111d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.th-success-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  margin-top: 24px;
  text-align: center;
}

.th-success-text h3 {
  margin: 14px 0 8px;
  color: #f8fafc;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 900;
}

.th-success-text p {
  margin: 0;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 700;
}

.th-start-box {
  margin-top: 24px;
  padding: 28px;
  background: linear-gradient(to right, #142850 0%, #27496d 100%);
}

.th-start-head {
  text-align: center;
  margin-bottom: 24px;
}

.th-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.th-step-item {
  min-height: 160px;
  border-radius: 22px;
  padding: 14px 9px;
  background: linear-gradient(to left, #ffffffe6, #ffffff);
  border: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 14px;
  align-items: center;
}

.th-step-no {
  width: 40px;
  height: 40px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #38bdf8, #6366f1);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  /* box-shadow: 0 12px 30px rgba(56, 189, 248, 0.22); */
}

.th-step-item p {
  margin: 0;
  color: #444444;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 800;
}

.th-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.th-stat-box {
  padding: 28px 18px;
  text-align: center;
  background: linear-gradient(to right, #142850 0%, #27496d 100%);
}

.th-stat-box strong {
  display: block;
  color: #d7aa3b;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
}

.th-stat-box span {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .th-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .th-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .th-trust-grid {
    grid-template-columns: 1fr;
  }

  .th-trust-head h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .th-trust-section {
    padding: 70px 14px;
  }

  .th-trust-card,
  .th-success-strip,
  .th-start-box,
  .th-stat-box {
    border-radius: 22px;
  }

  .th-trust-card,
  .th-start-box,
  .th-success-strip {
    padding: 20px;
  }

  .th-trust-head h2 {
    font-size: 28px;
  }

  .th-card-top h3,
  .th-success-text h3 {
    font-size: 23px;
  }

  .th-steps-grid,
  .th-stats-grid {
    grid-template-columns: 1fr;
  }

  .th-step-item {
    min-height: 132px;
  }
}
body > main > section > div > div.contact-panel > h2 > span.lang-ar{
  color: #fff;
}
body > main > section > div > div.contact-panel > p > span.lang-ar{
    color: #fff;

}
body > main > section > div > div.contact-panel > div.section-tag > span.lang-ar{
  
color: #fff;
}

.main-footer {
    background: linear-gradient(to right, #142850 0%, #27496d 100%);
    color: #ffffff;
    padding: 60px 0 30px 0;
    font-family: "Cairo","Inter",system-ui,sans-serif;
    direction: rtl;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 300px;
}

.footer-title {
    color: #d4a017;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
    border-bottom: 2px solid #d4a017;
    display: inline-block;
    padding-bottom: 5px;
}

/* تنسيق الروابط */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: block;
}

.footer-links li a:hover {
    color: #d4a017;
    padding-right: 10px;
}

.company-details p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.company-name {
    font-size: 18px;
    font-weight: 900;
    color: #d4a017;
}

.company-details a {
    color: #d4a017;
    text-decoration: none;
    font-size: 17px;
    font-weight: bolder;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
}

.copyright-badge {
    display: inline-block;
    background-color: #ffffff;
    color: #343a40;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.main-footer .en {
    display: none;
}
.main-footer .ar {
    display: block;
}

body.is-en .main-footer .ar {
    display: none;
}
body.is-en .main-footer .en {
    display: block;
}

body > main > section.hero > div > div.hero-copy > div.hero-contact > div:nth-child(2){
  
background: #50a2ff;
  
color: #fff;
}
.v-preview {
    margin-top: 20px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 160, 23, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-preview img {
    width: 250px;
    display: block;
    transition: transform 0.5s ease;
}

.v-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.v-overlay span {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background: var(--primary);
    padding: 8px 15px;
    border-radius: 50px;
}

.version-card:hover .v-preview img {
    transform: scale(1.1);
}

.version-card:hover .v-overlay {
    opacity: 1;
}
.chat-versions-new {
    width: 100%;
    max-width: 900px;
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(to right, #142850 0%, #27496d 100%);
    margin: 20px auto 0;
    border-radius: 0;
}
.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.version-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 12px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.version-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary); 
}

.version-card.highlight {
    border: 1px solid rgba(212, 160, 23, 0.3);
    background: linear-gradient(145deg, rgba(212, 160, 23, 0.05), rgba(0, 0, 0, 0));
}

.v-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.badge-v {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--primary);
    color: #d5a739;
    padding: 5px 35px;
    font-size: 10px;
    font-weight: bold;
    transform: rotate(45deg);
}

.price-info-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.fixed-price {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.gold-text {
    color: #daa520;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-text {
    color: var(--muted);
    font-size: 15px;
}

.support-text i {
    color: #28a745;
    margin-left: 8px;
}
body > main > section.chat-versions-new > div > h2 > span.lang-ar{
  color: #daa520;
}
body > main > section.chat-versions-new > div > p > span.lang-ar{
   color: #ffffff;
   padding-top: 20px;
}
:root {
    --th-black: #000000;
    --th-card-bg: #0d0d0d;
    --th-accent: #673de6;
    --th-accent-light: #54a8ff;
    --th-white: #ffffff;
    --th-gray: #ffffff;
    --th-border: #ffffff;
}

.tiger-hero-section {
    background: linear-gradient(to right, #142850 0%, #27496d 100%);
    color: var(--th-white);
    padding: 39px 5%;
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    /* min-height: 100vh; */
}

.tiger-hero-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(103, 61, 230, 0.12) 0%, transparent 70%);
    z-index: 0;
}

.tiger-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.tiger-content-box .tiger-badge {
    color: var(--th-accent-light);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.tiger-main-h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
}

.tiger-description {
    color: var(--th-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.tiger-button-group {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tiger-btn {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.tiger-btn-main { background: var(--th-accent); color: white; }
.tiger-btn-outline { border: 1px solid var(--th-border); color: white; }
.tiger-btn-outline:hover { background: #111; }

.tiger-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--th-border);
    padding-top: 25px;
}

.tiger-stat-item strong { display: block; font-size: 1.3rem; margin-bottom: 5px; }
.tiger-stat-item span { font-size: 0.85rem; color: var(--th-gray); }

.tiger-pricing-panel { position: relative; }

.tiger-premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.tiger-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tiger-status {
    background: rgba(0, 202, 114, 0.1);
    color: #00ca72;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.tiger-big-price {
    font-size: 3rem;
    font-weight: 800;
    margin: 15px 0;
}

.tiger-big-price small { font-size: 1rem; color: var(--th-gray); }

.tiger-feat-list { list-style: none; padding: 0; margin: 20px 0; }
.tiger-feat-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #b9b9b9;
    font-size: 0.9rem;
    color: #ffffff;
}

.tiger-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tiger-mini-card {
    background: #0d0d0d00;
    border: 1px solid #ffffff;
    padding: 20px;
    border-radius: 15px;
}

@media (max-width: 992px) {
    .tiger-main-container { grid-template-columns: 1fr; text-align: center; }
    .tiger-button-group, .tiger-badge { justify-content: center; }
}
body > main > section.tiger-hero-section > div > div.tiger-pricing-panel > div:nth-child(1){
  background: #54a8ff !important;
  border: 1px solid #fff!important;
}