:root{
    --navy:#324f7b;
    --navy-deep:#22385c;
    --navy-tint:#e9edf4;
    --green:#44a680;
    --green-deep:#2f7d5e;
    --green-tint:#e3f3ec;
    --green-light:#a3d8c2;
    --ink:#0b0b0c;
    --cream:#fffbfa;
    --line: rgba(11,11,12,.10);
    --line-soft: rgba(11,11,12,.06);
    --ink-60: rgba(11,11,12,.62);
    --ink-40: rgba(11,11,12,.42);
    --shadow-sm: 0 10px 26px -14px rgba(11,11,12,.18);
    --shadow-md: 0 22px 50px -18px rgba(11,11,12,.22);
    --shadow-navy: 0 18px 38px -14px rgba(50,79,123,.45);
    --radius-lg: clamp(28px,4vw,48px);
    --radius-md: 22px;
    --radius-sm: 14px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  section[id], #contact{scroll-margin-top:84px;}
  body{
    margin:0;
    background:var(--cream);
    color:var(--ink);
    font-family:'IBM Plex Sans Arabic','IBM Plex Sans',sans-serif;
    font-size:16px;
    line-height:1.7;
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ul{margin:0;padding:0;list-style:none;}
  button{font-family:inherit;cursor:pointer;}
  input,textarea{font-family:inherit;}
  h1,h2,h3{margin:0;font-family:'Almarai',sans-serif;}
  p{margin:0;}

  :focus-visible{outline:2.5px solid var(--green); outline-offset:3px; border-radius:4px;}

  .container{max-width:1180px;margin-inline:auto;padding-inline:clamp(20px,5vw,48px);}
  .section{padding-block:clamp(64px,9vw,124px); position:relative;}
  .section--tight{padding-block:clamp(40px,5vw,64px);}

  .eyebrow{
    display:inline-flex;align-items:center;gap:10px;
    font-size:.82rem;font-weight:700;letter-spacing:.02em;
    color:var(--green-deep); margin-bottom:16px; font-family:'IBM Plex Sans Arabic',sans-serif;
  }
  .eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--green);display:inline-block;flex:none;}
  .eyebrow .sep{opacity:.35;color:var(--ink);}
  .eyebrow.on-dark{color:var(--green-light);}
  .eyebrow.on-dark .dot{background:var(--green-light);}

  .h2{font-weight:800;font-size:clamp(1.85rem,3.4vw,2.7rem);line-height:1.28;color:var(--ink);}
  .h2.on-dark{color:var(--cream);}
  .lead{font-size:clamp(1rem,1.05vw,1.12rem);color:var(--ink-60);line-height:1.9;max-width:600px;}
  .lead.on-dark{color:rgba(255,251,250,.78);}

  .btn{
    display:inline-flex;align-items:center;gap:10px;
    padding:15px 30px;border-radius:999px;border:none;
    font-weight:700;font-size:1rem;font-family:'IBM Plex Sans Arabic',sans-serif;
    transition:transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
    white-space:nowrap;
  }
  .btn svg{flex:none;width:18px;height:18px;}
  .btn-primary{background:var(--navy);color:var(--cream);box-shadow:var(--shadow-navy);}
  .btn-primary:hover{background:var(--navy-deep);transform:translateY(-2px);}
  .btn-ghost{background:transparent;color:var(--ink);border:1.5px solid var(--line);}
  .btn-ghost:hover{border-color:var(--green);color:var(--green-deep);transform:translateY(-2px);}
  .btn-light{background:var(--cream);color:var(--green-deep);box-shadow:0 16px 34px -14px rgba(11,11,12,.35);}
  .btn-light:hover{background:var(--cream);box-shadow:0 20px 40px -14px rgba(11,11,12,.4);transform:translateY(-2px);}
  .btn-on-navy{background:var(--cream);color:var(--navy-deep);}
  .btn-on-navy:hover{background:var(--cream);box-shadow:0 20px 40px -14px rgba(11,11,12,.3);transform:translateY(-2px);}
  .btn-sm{padding:11px 20px;font-size:.92rem;}
  .btn-full{width:100%;justify-content:center;}

  /* ---------- NAV ---------- */
  .nav{
    position:sticky;top:0;z-index:50;
    background:rgba(255,251,250,.86);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line-soft);
  }
  .nav-row{display:flex;align-items:center;justify-content:space-between;gap:24px;padding-block:14px;}
  .nav-logo img{height:34px;width:auto;object-fit:contain;}
  .nav-links{display:flex;align-items:center;gap:36px;}
  .nav-links a{font-size:.96rem;font-weight:600;color:var(--ink);position:relative;padding-block:4px;}
  .nav-links a::after{content:"";position:absolute;right:0;left:0;bottom:0;height:2px;background:var(--green);transform:scaleX(0);transition:transform .25s ease;}
  .nav-links a:hover::after{transform:scaleX(1);}
  .nav-links a.active{color:var(--green-deep);}
  .nav-links a.active::after{transform:scaleX(1);}
  .nav-actions{display:flex;align-items:center;gap:14px;}
  .lang-toggle{display:flex;align-items:center;background:var(--navy-tint);border-radius:999px;padding:4px;font-size:.8rem;font-weight:700;}
  .nav-burger{display:none;background:none;border:none;padding:6px;}
  .nav-burger svg{width:24px;height:24px;}
  .nav-mobile{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:0 clamp(20px,5vw,48px);
    border-top:1px solid transparent;
    max-height:0;
    opacity:0;
    overflow:hidden;
    transition:max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease-out, padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease;
  }
  .nav-mobile a{padding:12px 4px;font-weight:600;border-bottom:1px solid var(--line-soft);}
  .nav-mobile a.active{color:var(--green-deep);border-bottom-color:var(--green);}
  .nav.open .nav-mobile{
    max-height:320px;
    opacity:1;
    padding:10px clamp(20px,5vw,48px) 18px;
    border-top-color:var(--line-soft);
  }
  .lang-toggle-mobile-wrapper{
    padding-top: 14px;
    display: flex;
    justify-content: flex-start;
  }
  .lang-toggle-mobile-wrapper .lang-toggle{
    margin-inline-start: 4px;
  }

  @media (max-width:880px){
    .nav-links{display:none;}
    .nav-burger{display:inline-flex;}
  }
  @media (min-width:881px){
    .nav-mobile{display:none;}
  }

  /* ---------- HERO (full-bleed banner) ---------- */
  .hero{padding-block:clamp(28px,4vw,40px) 0;overflow:visible;}
  .hero--banner{
    position:relative;
    display:flex;
    flex-direction:column;
    max-width:1200px;
    margin-inline:auto;
  }
  .hero-banner-media{
    position:relative;
    order:2;
    height:clamp(220px,52vw,320px);
    border-radius:clamp(20px,3vw,32px);
    overflow:hidden;
    margin-top:24px;
    background:var(--navy-tint);
  }
  .hero-banner-img{
    position:absolute;inset:0;width:100%;height:100%;
    object-fit:cover;object-position:center;display:block;
  }
  .hero-banner-scrim{display:none;}
  .hero-floating-card{display:none;}

  .hero-banner-layout{order:1;position:relative;z-index:1;}
  .hero-banner-text{width:100%;}
  .hero-banner-text .hero-ctas{margin-bottom:0;}

  .hero-badge{
    display:inline-flex;align-items:center;gap:8px;
    background:var(--green-tint);color:var(--green-deep);
    padding:8px 16px;border-radius:999px;font-size:.85rem;font-weight:700;margin-bottom:22px;
  }
  .hero-badge svg{width:15px;height:15px;}
  .hero h1{font-size:clamp(2.3rem,4.6vw,3.7rem);font-weight:800;line-height:1.22;color:var(--ink);margin-bottom:22px;}
  .hero h1 .accent{color:var(--green-deep);}
  .hero .lead{margin-bottom:34px;}
  .hero-ctas{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:48px;}

  .hero-stats-bar{
    order:3;
    position:relative;
    display:flex;flex-wrap:wrap;gap:14px;
    margin-top:24px;
  }
  .stat-chip{
    border-radius:var(--radius-sm);padding:16px 20px;min-width:128px;flex:1;
    display:flex;flex-direction:column;gap:4px;
  }
  .stat-chip .num{font-family:'IBM Plex Sans',sans-serif;font-weight:700;font-size:1.5rem;}
  .stat-chip .label{font-size:.8rem;opacity:.85;font-weight:600;}
  .stat-chip.navy{background:var(--navy);color:var(--cream);}
  .stat-chip.green{background:var(--green);color:var(--cream);}
  .stat-chip.outline{background:transparent;border:1.5px solid var(--line);color:var(--ink);}

  @media (min-width:980px){
    .hero{padding-block:clamp(32px,4vw,44px) 0;}
    .hero--banner{
      display:block;
      min-height:clamp(460px,56vw,600px);
      margin-bottom:64px;
    }
    .hero-banner-media{
      position:absolute;inset:0;order:initial;height:auto;margin-top:0;
      border-radius:clamp(28px,3.4vw,40px);
    }
    .hero-banner-img{transform:scaleX(-1);}
    .hero-banner-scrim{
      display:block;position:absolute;inset:0;
      background:linear-gradient(90deg, rgba(11,11,12,.12) 0%, transparent 30%, transparent 50%, rgba(255,251,250,.55) 68%, var(--cream) 88%);
    }
    .hero-floating-card{
      display:flex;align-items:center;gap:12px;
      position:absolute;z-index:2;left:6%;top:62%;
      background:var(--cream);border-radius:18px;padding:14px 18px;
      box-shadow:0 16px 34px -16px rgba(11,11,12,.3);
      max-width:220px;
    }
    .hero-floating-card .check{
      width:36px;height:36px;border-radius:50%;flex:none;
      display:flex;align-items:center;justify-content:center;
      color:var(--green-deep);border:2px solid var(--green);
    }
    .hero-floating-card .check svg{width:18px;height:18px;}
    .hero-floating-card .title{font-weight:800;color:var(--ink);font-size:.88rem;line-height:1.3;}
    .hero-floating-card .sub{font-size:.74rem;color:var(--ink-60);font-weight:600;margin-top:2px;}

    .hero-banner-layout{
      position:relative;z-index:1;height:100%;
      display:flex;align-items:center;
    }
    .hero-banner-text{width:min(540px,92%);margin-left:auto;}

    .hero-stats-bar{
      order:initial;
      position:absolute;left:50%;bottom:0;
      transform:translate(-50%,50%);
      width:min(1040px,92%);
      background:var(--cream);
      border-radius:var(--radius-md);
      box-shadow:var(--shadow-md);
      padding:22px clamp(20px,3vw,32px);
      gap:clamp(16px,3vw,32px);
      margin-top:0;
    }
    .hero-stats-bar .stat-chip{
      background:transparent;border:none;padding-inline:4px;min-width:0;
      align-items:center;text-align:center;
    }
    .hero-stats-bar .stat-chip:not(:last-child){border-inline-end:1px solid var(--line);}
    .hero-stats-bar .stat-chip .num{font-size:1.5rem;color:var(--ink);}
    .hero-stats-bar .stat-chip .label{opacity:1;color:var(--ink-60);}
  }

  @media (max-width:560px){
    .hero-banner-media{height:clamp(190px,58vw,260px);}
  }

  /* ---------- HOW IT WORKS ---------- */
  .steps-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:48px;flex-wrap:wrap;}
  .steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
  .step-card{
    background:var(--cream);border:1px solid var(--line);border-radius:var(--radius-lg);
    padding:clamp(26px,3vw,36px);position:relative;transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .step-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);border-color:transparent;}
  .step-card.featured{background:var(--navy);border-color:var(--navy);}
  .step-num{
    position:absolute;top:-16px;right:24px;
    width:38px;height:38px;border-radius:50%;background:var(--green);color:var(--cream);
    display:flex;align-items:center;justify-content:center;font-family:'IBM Plex Sans',sans-serif;font-weight:700;font-size:.95rem;
    box-shadow:0 8px 18px -6px rgba(68,166,128,.6);
  }
  .step-icon{
    width:54px;height:54px;border-radius:16px;background:var(--green-tint);color:var(--green-deep);
    display:flex;align-items:center;justify-content:center;margin-bottom:22px;
  }
  .step-card.featured .step-icon{background:rgba(255,251,250,.14);color:var(--cream);}
  .step-icon svg{width:26px;height:26px;}
  .step-card h3{font-size:1.22rem;font-weight:800;margin-bottom:10px;color:var(--ink);}
  .step-card.featured h3{color:var(--cream);}
  .step-card p{color:var(--ink-60);font-size:.96rem;line-height:1.8;margin-bottom:18px;}
  .step-card.featured p{color:rgba(255,251,250,.78);}
  .step-bullets{display:flex;flex-direction:column;gap:9px;}
  .step-bullets li{display:flex;align-items:center;gap:9px;font-size:.88rem;font-weight:600;color:var(--ink-60);}
  .step-card.featured .step-bullets li{color:rgba(255,251,250,.85);}
  .step-bullets svg{width:15px;height:15px;color:var(--green);flex:none;}
  .step-card.featured .step-bullets svg{color:var(--green-light);}

  @media (max-width:900px){
    .steps-grid{grid-template-columns:1fr;}
  }

  /* ---------- CTA PANEL ---------- */
  .cta-panel{
    background:var(--green);border-radius:var(--radius-lg);position:relative;
    padding:clamp(48px,6vw,72px) clamp(28px,6vw,72px);overflow:hidden;
  }
  .cta-panel::before{
    content:"";position:absolute;inset:0;
    background:radial-gradient(720px 360px at 85% -10%, rgba(255,251,250,.16), transparent 60%);
    pointer-events:none;
  }
  .corner-tag{
    position:absolute;top:22px;right:clamp(20px,4vw,40px);
    background:rgba(255,251,250,.95);color:var(--green-deep);font-family:'IBM Plex Sans',sans-serif;font-weight:700;
    font-size:.72rem;letter-spacing:.04em;padding:7px 15px;border-radius:999px;
    box-shadow:0 8px 18px -8px rgba(11,11,12,.2);z-index:2;
  }
  @media (max-width:540px){
    .corner-tag{display:none;}
  }
  .cta-inner{text-align:center;max-width:680px;margin-inline:auto;position:relative;z-index:1;}
  .cta-inner h2{color:var(--cream);margin-bottom:14px;}
  .cta-inner p{color:rgba(255,251,250,.85);font-size:1.02rem;max-width:520px;margin-inline:auto;}
  .cta-divider{height:1px;background:rgba(255,251,250,.28);margin:36px 0;}
  .cta-stats{display:flex;justify-content:center;gap:clamp(28px,6vw,72px);flex-wrap:wrap;margin-bottom:38px;}
  .cta-stats .item{text-align:center;}
  .cta-stats .num{font-family:'IBM Plex Sans',sans-serif;font-weight:700;font-size:clamp(1.7rem,3vw,2.2rem);color:var(--cream);}
  .cta-stats .label{font-size:.84rem;color:rgba(255,251,250,.8);font-weight:600;margin-top:4px;}
  .cta-panel .btn{margin-inline:auto;}

  /* ---------- WAITLIST ---------- */
  .waitlist-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:28px;align-items:stretch;}
  .benefits-panel{
    background:var(--navy);border-radius:var(--radius-lg);padding:clamp(32px,4vw,44px);
    display:flex;flex-direction:column;
  }
  .benefits-panel h3{color:var(--cream);font-size:1.4rem;font-weight:800;margin-bottom:10px;}
  .benefits-panel > p{color:rgba(255,251,250,.78);font-size:.94rem;line-height:1.8;margin-bottom:30px;}
  .benefits-list{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:auto;}
  .benefit-item{
    background:rgba(255,251,250,.08);border:1px solid rgba(255,251,250,.12);border-radius:var(--radius-sm);
    padding:18px;transition:background .25s ease;
  }
  .benefit-item:hover{background:rgba(255,251,250,.14);}
  .benefit-item .ic{width:36px;height:36px;border-radius:10px;background:rgba(255,251,250,.14);color:var(--green-light);display:flex;align-items:center;justify-content:center;margin-bottom:12px;}
  .benefit-item .ic svg{width:18px;height:18px;}
  .benefit-item .t{color:var(--cream);font-weight:700;font-size:.92rem;margin-bottom:3px;}
  .benefit-item .d{color:rgba(255,251,250,.65);font-size:.78rem;line-height:1.6;}

  .form-panel{
    background:var(--cream);border:1px solid var(--line);border-radius:var(--radius-lg);
    padding:clamp(32px,4vw,44px);
  }
  .form-panel h3{font-size:1.3rem;font-weight:800;margin-bottom:6px;}
  .form-panel > p{color:var(--ink-60);font-size:.92rem;margin-bottom:28px;}
  .field{margin-bottom:18px;}
  .field label{display:block;font-size:.85rem;font-weight:700;margin-bottom:8px;color:var(--ink);}
  .field input,.field textarea{
    width:100%;border:1.5px solid var(--line);border-radius:12px;padding:13px 16px;
    font-size:.95rem;background:var(--cream);color:var(--ink);transition:border-color .2s ease;
  }
  .field input::placeholder,.field textarea::placeholder{color:var(--ink-40);}
  .field input:focus,.field textarea:focus{border-color:var(--green);outline:none;}
  /* ---------- UNIFIED PHONE INPUT CONTAINER ---------- */
  .phone-input-container {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--cream);
    overflow: visible;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    direction: ltr;
  }
  .phone-input-container:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 3.5px rgba(50, 79, 123, 0.12);
  }
  /* ---------- SLEEK CUSTOM COUNTRY PICKER ---------- */
  .sleek-country-picker {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(11, 11, 12, 0.035);
    border-right: 1.5px solid var(--line);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    flex: 0 0 auto;
    align-self: stretch;
  }
  .country-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 12px 14px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    height: 100%;
    font-family: 'IBM Plex Sans', 'IBM Plex Sans Arabic', sans-serif;
    direction: ltr;
    outline: none;
  }
  .flag-img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(11, 11, 12, 0.2);
    flex: none;
    display: inline-block;
  }
  .country-trigger-btn .dial-code {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--ink);
  }
  .country-trigger-btn .arrow {
    width: 12px;
    height: 12px;
    color: var(--ink-60);
    transition: transform 0.2s ease;
    flex: none;
  }
  .sleek-country-picker.open .arrow {
    transform: rotate(180deg);
  }

  .sleek-country-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: -1.5px;
    z-index: 999;
    width: 180px;
    max-height: 240px;
    overflow-y: auto;
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 16px 40px -6px rgba(11, 11, 12, 0.25);
    padding: 6px;
    direction: ltr;
    animation: sleekDropdownIn 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes sleekDropdownIn {
    from { opacity: 0; transform: translateY(-4px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .sleek-country-picker.open .sleek-country-dropdown {
    display: block;
  }

  .sleek-country-dropdown::-webkit-scrollbar {
    width: 5px;
  }
  .sleek-country-dropdown::-webkit-scrollbar-thumb {
    background: rgba(11, 11, 12, 0.16);
    border-radius: 999px;
  }

  .sleek-country-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    font-size: 0.88rem;
    font-family: 'IBM Plex Sans', sans-serif;
  }
  .sleek-country-option:hover,
  .sleek-country-option.selected {
    background: var(--navy-tint);
  }
  .sleek-country-option .opt-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .sleek-country-option .opt-flag {
    font-size: 1.15rem;
    line-height: 1;
  }
  .sleek-country-option .opt-iso {
    font-weight: 600;
    font-size: 0.84rem;
    color: var(--ink-60);
    letter-spacing: 0.02em;
  }
  .sleek-country-option .opt-code {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--navy);
  }
  .field .phone-input-container input,
  .phone-input-container input {
    border: none !important;
    border-radius: 0 !important;
    padding: 13px 16px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    direction: ltr !important;
  }
  .field textarea{resize:vertical;min-height:88px;}
  .form-note{font-size:.78rem;color:var(--ink-40);margin-top:14px;text-align:center;}
  .form-success{
    display:none;text-align:center;padding:36px 10px;
  }
  .form-success.show{display:block;}
  .form-success .ic{width:56px;height:56px;border-radius:50%;background:var(--green-tint);color:var(--green-deep);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;}
  .form-success .ic svg{width:28px;height:28px;}
  .form-success h4{font-size:1.15rem;font-weight:800;margin-bottom:8px;}
  .form-success p{color:var(--ink-60);font-size:.92rem;}
  .form-fields.hide{display:none;}

  @media (max-width:920px){
    .waitlist-grid{grid-template-columns:1fr;}
    .benefits-list{grid-template-columns:1fr 1fr;}
  }

  /* ---------- FOOTER ---------- */
  .footer{
    background:var(--navy);color:var(--cream);
    border-radius:var(--radius-lg) var(--radius-lg) 0 0;
    margin-top:8px;position:relative;overflow:hidden;
  }
  .footer-grain{position:absolute;inset:0;background:radial-gradient(640px 360px at 12% 0%, rgba(68,166,128,.16), transparent 60%);pointer-events:none;}
  .footer-top{position:relative;z-index:1;display:grid;grid-template-columns:1.1fr 1fr 1.2fr;gap:40px;padding-block:clamp(48px,6vw,72px) 40px;}
  .footer-brand img{height:36px;width:auto;object-fit:contain;margin-bottom:18px;}
  .footer-brand p{color:rgba(255,251,250,.62);font-size:.9rem;line-height:1.8;max-width:280px;margin-bottom:18px;}
  .footer-sbc-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
    align-items: flex-start;
  }
  .sbc-horizontal-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  }
  .sbc-cr-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    color: rgba(255, 251, 250, 0.8);
  }
  .sbc-shield-icon {
    width: 15px;
    height: 15px;
    color: var(--green-light);
    flex-shrink: 0;
  }
  .sbc-cr-info strong {
    color: var(--green-light);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: system-ui, -apple-system, sans-serif;
    letter-spacing: 0.5px;
  }
  .footer-social{display:flex;gap:10px;}
  .footer-social a{
    width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,251,250,.2);
    display:flex;align-items:center;justify-content:center;transition:background .2s ease, border-color .2s ease;
  }
  .footer-social a:hover{background:var(--green);border-color:var(--green);}
  .footer-social svg{width:16px;height:16px;}
  .footer h4{font-size:.95rem;font-weight:700;margin-bottom:18px;color:var(--cream);}
  .footer-links{display:flex;flex-direction:column;gap:13px;}
  .footer-links a{color:rgba(255,251,250,.68);font-size:.92rem;transition:color .2s ease;}
  .footer-links a:hover{color:var(--green-light);}
  address{font-style:normal;}
  .footer-contact-item{display:flex;align-items:flex-start;gap:10px;margin-bottom:16px;}
  .footer-contact-item svg{width:17px;height:17px;color:var(--green-light);flex:none;margin-top:3px;}
  .footer-contact-item span, .footer-contact-item a{font-size:.9rem;color:rgba(255,251,250,.78);line-height:1.6;transition:color .2s ease;}
  .footer-contact-item a:hover{color:var(--green-light);text-decoration:underline;}
  .news-box{background:rgba(255,251,250,.06);border:1px solid rgba(255,251,250,.12);border-radius:var(--radius-md);padding:22px;}
  .news-box p{font-size:.85rem;color:rgba(255,251,250,.65);margin-bottom:14px;}
  .news-form{display:flex;gap:8px;}
  .news-form input{flex:1;border-radius:999px;border:1px solid rgba(255,251,250,.2);background:rgba(255,251,250,.06);color:var(--cream);padding:11px 16px;font-size:.85rem;}
  .news-form input::placeholder{color:rgba(255,251,250,.45);}
  .news-form button{border-radius:999px;border:none;background:var(--green);color:var(--cream);padding:11px 20px;font-weight:700;font-size:.85rem;flex:none;transition:background .2s ease;}
  .news-form button:hover{background:var(--green-deep);}
  .footer-bottom{
    position:relative;z-index:1;border-top:1px solid rgba(255,251,250,.12);
    display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px;
    padding-block:22px;font-size:.82rem;color:rgba(255,251,250,.55);
  }
  .footer-bottom .made{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
  .footer-bottom .live-dot{display:inline-flex;align-items:center;gap:6px;}
  .footer-bottom .live-dot span.d{width:7px;height:7px;border-radius:50%;background:var(--green);display:inline-block;}

  @media (max-width:880px){
    .footer-top{grid-template-columns:1fr;gap:34px;}
  }

  /* ---------- reveal-on-scroll ---------- */
  .reveal{opacity:0;transform:translateY(22px);transition:opacity .7s ease, transform .7s ease;}
  .reveal.is-visible{opacity:1;transform:translateY(0);}
  @media (prefers-reduced-motion:reduce){
    .reveal{opacity:1;transform:none;transition:none;}
  }


/* ===== Polished layout patch by ChatGPT ===== */

/* Navigation language buttons */
.lang-toggle button{
  border:0;
  background:transparent;
  padding:6px 13px;
  border-radius:999px;
  color:var(--ink-60);
  font-size:.8rem;
  font-weight:700;
  font-family:'IBM Plex Sans','IBM Plex Sans Arabic',sans-serif;
}
.lang-toggle button.active{background:var(--navy);color:var(--cream);}

/* Hero: make it a clean split section instead of text covering the body */
@media (min-width:980px){
  .hero{
    padding-block:clamp(32px,4vw,48px) 0;
  }

  .hero--banner{
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(440px,.98fr);
    gap:clamp(24px,3vw,44px);
    align-items:center;
    max-width:1240px;
    min-height:auto;
    margin-bottom:58px;
    padding:clamp(26px,3vw,42px);
    border-radius:clamp(30px,3.5vw,46px);
    background:
      radial-gradient(700px 420px at 28% 18%, rgba(150,207,185,.20), transparent 55%),
      linear-gradient(135deg, rgba(255,251,250,.96), rgba(255,251,250,.88));
    border:1px solid rgba(11,11,12,.06);
    box-shadow:0 26px 70px -42px rgba(11,11,12,.22);
    overflow:visible;
    direction:ltr;
  }

  .hero-banner-media{
    position:relative;
    inset:auto;
    grid-column:1;
    grid-row:1;
    height:clamp(430px,42vw,540px);
    margin:0;
    border-radius:clamp(26px,3vw,38px);
    overflow:hidden;
    box-shadow:0 24px 58px -32px rgba(11,11,12,.28);
    background:var(--cream);
  }

  .hero-banner-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    transform:none;
  }

  .hero-banner-scrim{
    display:block;
    position:absolute;
    inset:0;
    background:
      linear-gradient(180deg, rgba(255,251,250,.05), rgba(255,251,250,.08)),
      radial-gradient(520px 280px at 78% 8%, rgba(255,251,250,.22), transparent 62%);
  }

  .hero-floating-card{display:none!important;}

  .hero-banner-layout{
    grid-column:2;
    grid-row:1;
    display:block;
    height:auto;
    padding-inline:0;
    direction:rtl;
  }

  .hero-banner-text{
    width:100%;
    max-width:560px;
    margin-left:auto;
    text-align:right;
  }

  .hero h1{
  font-size:clamp(2.95rem,4.45vw,4.65rem);
  line-height:1.1;
  letter-spacing:-.045em;
  margin-bottom:22px;
  max-width:690px;
  margin-inline:auto;
}

  .hero .lead{
    max-width:540px;
    margin-bottom:30px;
    font-size:clamp(1.02rem,1.25vw,1.18rem);
  }

  .hero-ctas{
    gap:14px;
    margin-bottom:0;
  }

  .hero-stats-bar{
    position:static;
    grid-column:1 / -1;
    grid-row:2;
    transform:none;
    width:min(980px,92%);
    margin:8px auto -84px;
    padding:18px 24px;
    border:1px solid rgba(11,11,12,.06);
    border-radius:28px;
    box-shadow:0 24px 62px -36px rgba(11,11,12,.24);
  }

  html[dir="ltr"] .hero-banner-media{grid-column:2;}
  html[dir="ltr"] .hero-banner-layout{
    grid-column:1;
    direction:ltr;
  }
  html[dir="ltr"] .hero-banner-text{
    margin-left:0;
    margin-right:auto;
    text-align:left;
  }
}

/* Less vertical empty space and more balanced section headers */
.section{padding-block:clamp(52px,7vw,88px);}
.section--tight{padding-block:clamp(36px,5vw,58px);}

.steps-head{
  display:block;
  text-align:center;
  max-width:900px;
  margin:0 auto 42px;
}
.steps-head .lead{
  max-width:760px;
  margin:18px auto 0;
}
.steps-grid{gap:20px;}
.step-card{padding:clamp(24px,2.6vw,34px);}
.step-icon{margin-inline:auto;margin-bottom:20px;}
.step-card h3,
.step-card p{text-align:center;}
.step-bullets{
  width:max-content;
  max-width:100%;
  margin:0 auto;
}
.step-num{right:50%;transform:translateX(50%);}

.cta-panel{
  max-width:1080px;
  margin-inline:auto;
  padding:clamp(40px,5vw,58px) clamp(28px,6vw,66px);
  border-radius:clamp(28px,3vw,40px);
}
.cta-divider{margin:28px 0;}
.cta-stats{margin-bottom:28px;}

#waitlist.section{padding-top:clamp(52px,7vw,84px);}
#waitlist .container > div:first-child{margin-bottom:34px!important;}
.waitlist-grid{gap:24px;}
.benefits-panel,
.form-panel{border-radius:clamp(26px,3vw,38px);}
.benefits-panel{padding:clamp(28px,3.6vw,40px);}
.form-panel{padding:clamp(28px,3.6vw,40px);}

.footer{
  margin-top:42px;
  border-radius:clamp(34px,4vw,56px) clamp(34px,4vw,56px) 0 0;
}
.footer-top{
  padding-block:clamp(42px,5vw,58px) 32px;
  align-items:start;
}
.footer-bottom{padding-block:18px;}

@media (max-width:979px){
  .hero--banner{
    padding-inline:20px;
  }
  .hero-banner-media{
    max-width:680px;
    margin-inline:auto;
    height:clamp(280px,58vw,410px);
  }
  .hero-stats-bar{
    max-width:680px;
    margin-inline:auto;
  }
  .hero h1{
    font-size:clamp(2.25rem,10vw,3.4rem);
  }
  .hero-banner-text{
    text-align:center;
  }
  .hero .lead{
    margin-inline:auto;
  }
  .hero-ctas{
    justify-content:center;
  }
}

@media (max-width:700px){
  .nav-row{padding-block:10px;}
  .nav-logo img{height:28px;width:auto;}
  .nav-actions{gap:8px;}
  .nav-actions .btn-sm{display:none;}
  .hero{padding-top:22px;}
  .hero-banner-media{height:250px;}
  .hero-stats-bar{
    display:grid;
    grid-template-columns:1fr;
  }
  .hero-stats-bar .stat-chip:not(:last-child){border-inline-end:none;border-bottom:1px solid var(--line);}
  .benefits-list{grid-template-columns:1fr;}
  .news-form{flex-direction:column;}
  .footer-bottom{align-items:flex-start;}
}


/* ===== Mobile hero fix: keep image visible and compact ===== */
@media (max-width:700px){
  .hero{
    padding-top:18px;
  }

  .hero--banner{
    width:calc(100% - 28px);
    margin-inline:auto;
    padding:20px 14px 18px;
    border:1px solid rgba(11,11,12,.06);
    border-radius:30px;
    background:
      radial-gradient(360px 240px at 50% 0%, rgba(150,207,185,.16), transparent 68%),
      rgba(255,251,250,.96);
    box-shadow:0 22px 55px -44px rgba(11,11,12,.24);
  }

  .hero-banner-layout{
    order:1;
    width:100%;
    padding-inline:0;
  }

  .hero-banner-text{
    text-align:center;
    max-width:100%;
    margin-inline:auto;
  }

  .hero-badge{
    margin-bottom:14px;
    padding:6px 12px;
    font-size:.72rem;
  }

  .hero h1{
    font-size:clamp(2.05rem,9.2vw,2.75rem);
    line-height:1.13;
    letter-spacing:-.045em;
    margin-bottom:14px;
  }

  .hero .lead{
    max-width:330px;
    margin:0 auto 20px;
    font-size:.86rem;
    line-height:1.8;
  }

  .hero-ctas{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    margin-bottom:0;
  }

  .hero-ctas .btn{
    min-width:190px;
    justify-content:center;
    padding:11px 18px;
    font-size:.9rem;
  }

  .hero-banner-media{
    order:2;
    position:relative!important;
    inset:auto!important;
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
    width:100%!important;
    max-width:360px!important;
    height:230px!important;
    margin:22px auto 0!important;
    border-radius:24px;
    overflow:hidden;
    background:var(--green-tint);
    box-shadow:0 16px 38px -28px rgba(11,11,12,.28);
  }

  .hero-banner-img{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    display:block!important;
    object-fit:cover;
    object-position:center center;
    transform:none!important;
  }

  .hero-banner-scrim{
    display:block;
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(255,251,250,.05), rgba(255,251,250,.08));
  }

  .hero-stats-bar{
    order:3;
    width:100%;
    max-width:360px;
    margin:16px auto 0!important;
    padding:8px;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:8px;
    background:transparent;
    box-shadow:none;
    border:0;
  }

  .hero-stats-bar .stat-chip{
    min-width:0;
    padding:12px 6px;
    border-radius:16px;
    align-items:center;
    text-align:center;
  }

  .hero-stats-bar .stat-chip:not(:last-child){
    border:0!important;
  }

  .hero-stats-bar .stat-chip .num{
    font-size:1.18rem;
    line-height:1.15;
  }

  .hero-stats-bar .stat-chip .label{
    font-size:.65rem;
    line-height:1.35;
  }

  .section--tight{
    padding-top:38px;
  }

  .steps-head{
    margin-bottom:28px;
  }

  .steps-head .lead{
    font-size:.9rem;
    line-height:1.85;
  }
}

@media (max-width:380px){
  .hero h1{font-size:2rem;}
  .hero-banner-media{height:205px!important;}
  .hero-stats-bar{grid-template-columns:1fr!important;}
}

/* ===== Final responsive fixes: stats consistency + landscape phones ===== */

/* Keep the hero stats visually consistent on tablets and phones */
@media (max-width:979px){
  .hero-stats-bar{
    background:var(--cream)!important;
    border:1px solid rgba(11,11,12,.06)!important;
    box-shadow:0 18px 44px -32px rgba(11,11,12,.22)!important;
    border-radius:22px!important;
  }

  .hero-stats-bar .stat-chip,
  .hero-stats-bar .stat-chip.navy,
  .hero-stats-bar .stat-chip.green,
  .hero-stats-bar .stat-chip.outline{
    background:transparent!important;
    color:var(--ink)!important;
    border:0!important;
  }

  .hero-stats-bar .stat-chip .num,
  .hero-stats-bar .stat-chip.navy .num,
  .hero-stats-bar .stat-chip.green .num,
  .hero-stats-bar .stat-chip.outline .num{
    color:var(--ink)!important;
  }

  .hero-stats-bar .stat-chip .label,
  .hero-stats-bar .stat-chip.navy .label,
  .hero-stats-bar .stat-chip.green .label,
  .hero-stats-bar .stat-chip.outline .label{
    color:var(--ink-60)!important;
    opacity:1!important;
  }
}

@media (max-width:700px){
  .hero-stats-bar{
    padding:10px!important;
    gap:0!important;
  }

  .hero-stats-bar .stat-chip{
    border-radius:0!important;
    padding:12px 4px!important;
  }

  .hero-stats-bar .stat-chip:not(:last-child){
    border-inline-end:1px solid var(--line)!important;
  }
}

/* On very narrow phones, stack the stats but keep the same white style */
@media (max-width:380px){
  .hero-stats-bar{
    grid-template-columns:1fr!important;
    gap:0!important;
  }

  .hero-stats-bar .stat-chip:not(:last-child){
    border-inline-end:0!important;
    border-bottom:1px solid var(--line)!important;
  }
}

/* Phone landscape: avoid the hero image disappearing and remove the huge blank area */
@media (max-width:979px) and (max-height:540px) and (orientation:landscape){
  section[id], #contact{scroll-margin-top:72px;}

  .nav-row{
    padding-block:8px!important;
  }

  .nav-logo img{
    height:28px!important;
    width:auto!important;
  }

  .nav-actions .btn-sm{
    display:none!important;
  }

  .hero{
    padding-top:16px!important;
  }

  .hero--banner{
    width:min(940px,calc(100% - 28px))!important;
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    grid-template-areas:
      "media text"
      "stats stats"!important;
    align-items:center!important;
    gap:16px!important;
    padding:16px!important;
    min-height:auto!important;
  }

  html[dir="rtl"] .hero--banner{
    grid-template-areas:
      "media text"
      "stats stats"!important;
  }

  html[dir="ltr"] .hero--banner{
    grid-template-areas:
      "text media"
      "stats stats"!important;
  }

  .hero-banner-layout{
    grid-area:text!important;
    order:initial!important;
    width:100%!important;
    padding:0!important;
  }

  .hero-banner-text{
    max-width:100%!important;
    text-align:center!important;
  }

  .hero-badge{
    margin-bottom:8px!important;
    padding:5px 10px!important;
    font-size:.68rem!important;
  }

  .hero h1{
    font-size:clamp(1.55rem,4.7vw,2.25rem)!important;
    line-height:1.14!important;
    margin-bottom:8px!important;
    letter-spacing:-.035em!important;
  }

  .hero .lead{
    max-width:360px!important;
    font-size:.78rem!important;
    line-height:1.65!important;
    margin:0 auto 12px!important;
  }

  .hero-ctas{
    flex-direction:row!important;
    justify-content:center!important;
    gap:8px!important;
  }

  .hero-ctas .btn{
    min-width:0!important;
    padding:9px 14px!important;
    font-size:.78rem!important;
  }

  .hero-banner-media{
    grid-area:media!important;
    order:initial!important;
    position:relative!important;
    inset:auto!important;
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
    width:100%!important;
    max-width:100%!important;
    height:220px!important;
    margin:0!important;
    border-radius:22px!important;
  }

  .hero-banner-img{
    position:absolute!important;
    inset:0!important;
    display:block!important;
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center center!important;
    transform:none!important;
  }

  .hero-stats-bar{
    grid-area:stats!important;
    order:initial!important;
    width:100%!important;
    max-width:100%!important;
    margin:4px auto 0!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    padding:8px!important;
  }

  .hero-stats-bar .stat-chip{
    padding:8px 4px!important;
  }

  .hero-stats-bar .stat-chip .num{
    font-size:1rem!important;
  }

  .hero-stats-bar .stat-chip .label{
    font-size:.58rem!important;
  }

  .section--tight{
    padding-top:28px!important;
  }
}

/* ===== Final tablet + landscape correction ===== */
/* iPad / tablet portrait: keep the hero image visible instead of creating a blank gap */
@media (min-width:701px) and (max-width:979px){
  .hero{
    padding-top:28px!important;
  }

  .hero--banner{
    width:min(94%,920px)!important;
    margin-inline:auto!important;
    display:grid!important;
    grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr)!important;
    grid-template-areas:
      "media text"
      "stats stats"!important;
    gap:24px!important;
    align-items:center!important;
    padding:28px!important;
    min-height:auto!important;
    border:1px solid rgba(11,11,12,.06)!important;
    border-radius:34px!important;
    background:
      radial-gradient(560px 330px at 24% 20%, rgba(150,207,185,.16), transparent 60%),
      rgba(255,251,250,.96)!important;
    box-shadow:0 24px 62px -44px rgba(11,11,12,.24)!important;
    overflow:visible!important;
    direction:ltr!important;
  }

  html[dir="ltr"] .hero--banner{
    grid-template-areas:
      "text media"
      "stats stats"!important;
  }

  .hero-banner-media{
    grid-area:media!important;
    order:initial!important;
    position:relative!important;
    inset:auto!important;
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
    width:100%!important;
    max-width:none!important;
    height:clamp(300px,43vw,390px)!important;
    margin:0!important;
    border-radius:28px!important;
    overflow:hidden!important;
    box-shadow:0 20px 48px -34px rgba(11,11,12,.26)!important;
    background:var(--green-tint)!important;
  }

  .hero-banner-img{
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    display:block!important;
    object-fit:cover!important;
    object-position:center center!important;
    transform:none!important;
  }

  .hero-banner-scrim{
    display:block!important;
    position:absolute!important;
    inset:0!important;
    background:linear-gradient(180deg, rgba(255,251,250,.05), rgba(255,251,250,.08))!important;
  }

  .hero-banner-layout{
    grid-area:text!important;
    order:initial!important;
    width:100%!important;
    padding:0!important;
    direction:rtl!important;
  }

  html[dir="ltr"] .hero-banner-layout{
    direction:ltr!important;
  }

  .hero-banner-text{
    max-width:100%!important;
    width:100%!important;
    margin:0!important;
    text-align:right!important;
  }

  html[dir="ltr"] .hero-banner-text{
    text-align:left!important;
  }

  .hero-badge{
    margin-bottom:14px!important;
    padding:7px 14px!important;
    font-size:.76rem!important;
  }

  .hero h1{
    font-size:clamp(2.45rem,5.8vw,3.55rem)!important;
    line-height:1.12!important;
    letter-spacing:-.045em!important;
    margin-bottom:16px!important;
  }

  .hero .lead{
    max-width:420px!important;
    margin:0 0 22px auto!important;
    font-size:.9rem!important;
    line-height:1.85!important;
  }

  html[dir="ltr"] .hero .lead{
    margin:0 auto 22px 0!important;
  }

  .hero-ctas{
    justify-content:flex-start!important;
    flex-direction:row!important;
    gap:10px!important;
    margin-bottom:0!important;
  }

  html[dir="rtl"] .hero-ctas{
    justify-content:flex-start!important;
  }

  .hero-ctas .btn{
    padding:12px 18px!important;
    font-size:.88rem!important;
    min-width:0!important;
  }

  .hero-stats-bar{
    grid-area:stats!important;
    order:initial!important;
    width:min(720px,92%)!important;
    max-width:720px!important;
    margin:2px auto -58px!important;
    padding:12px 18px!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:0!important;
    background:var(--cream)!important;
    border:1px solid rgba(11,11,12,.06)!important;
    border-radius:24px!important;
    box-shadow:0 20px 50px -34px rgba(11,11,12,.22)!important;
  }

  .hero-stats-bar .stat-chip{
    padding:12px 8px!important;
    background:transparent!important;
    color:var(--ink)!important;
    border-radius:0!important;
    text-align:center!important;
    align-items:center!important;
  }

  .hero-stats-bar .stat-chip:not(:last-child){
    border-inline-end:1px solid var(--line)!important;
  }

  .hero-stats-bar .stat-chip .num{
    color:var(--ink)!important;
    font-size:1.2rem!important;
  }

  .hero-stats-bar .stat-chip .label{
    color:var(--ink-60)!important;
    opacity:1!important;
    font-size:.7rem!important;
  }

  .section--tight{
    padding-top:64px!important;
  }
}

/* Phone landscape: force split hero and prevent the photo from disappearing */
@media (max-width:960px) and (max-height:600px) and (orientation:landscape){
  .hero--banner{
    width:calc(100% - 28px)!important;
    max-width:920px!important;
    display:grid!important;
    grid-template-columns:.9fr 1.1fr!important;
    grid-template-areas:
      "media text"
      "stats stats"!important;
    gap:12px!important;
    padding:14px!important;
    min-height:auto!important;
    overflow:visible!important;
  }

  .hero-banner-media{
    grid-area:media!important;
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
    position:relative!important;
    inset:auto!important;
    width:100%!important;
    height:210px!important;
    max-width:none!important;
    margin:0!important;
    border-radius:20px!important;
  }

  .hero-banner-img{
    display:block!important;
    position:absolute!important;
    inset:0!important;
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center center!important;
  }

  .hero-banner-layout{
    grid-area:text!important;
    padding:0!important;
  }

  .hero h1{
    font-size:clamp(1.55rem,4.5vw,2.2rem)!important;
    line-height:1.12!important;
    margin-bottom:8px!important;
  }

  .hero-badge{
    margin-bottom:8px!important;
  }

  .hero .lead{
    font-size:.76rem!important;
    line-height:1.55!important;
    margin-bottom:10px!important;
  }

  .hero-ctas{
    flex-direction:row!important;
    gap:8px!important;
  }

  .hero-ctas .btn{
    padding:8px 12px!important;
    font-size:.76rem!important;
    min-width:auto!important;
  }

  .hero-stats-bar{
    grid-area:stats!important;
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    width:100%!important;
    max-width:100%!important;
    margin:4px auto 0!important;
    padding:8px!important;
  }
}

/* ============ ENGLISH TYPOGRAPHY OVERRIDES ============ */
html[lang="en"] body {
  font-family: 'IBM Plex Sans', sans-serif;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4,
html[lang="en"] h5,
html[lang="en"] h6 {
  font-family: 'IBM Plex Sans', sans-serif;
}

html[lang="en"] .hero h1 {
  letter-spacing: -0.015em !important;
  word-spacing: normal !important;
}

/* ============ STAGGERED ENTRANCE ANIMATIONS ============ */
@media (min-width: 901px) {
  .steps-grid .step-card:nth-child(1) { transition-delay: 0s; }
  .steps-grid .step-card:nth-child(2) { transition-delay: 0.15s; }
  .steps-grid .step-card:nth-child(3) { transition-delay: 0.3s; }
}

@media (min-width: 701px) {
  .benefits-list .benefit-item:nth-child(1) { transition-delay: 0s; }
  .benefits-list .benefit-item:nth-child(2) { transition-delay: 0.15s; }
  .benefits-list .benefit-item:nth-child(3) { transition-delay: 0.3s; }
  .benefits-list .benefit-item:nth-child(4) { transition-delay: 0.45s; }
}

/* ============ ACCESSIBILITY FOCUS INDICATORS ============ */
.footer-social a:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 3px;
  border-radius: 50%;
}

.lang-toggle button:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 2px;
  border-radius: 999px;
}

.nav-logo:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 6px;
  border-radius: 6px;
}

.btn:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 3px;
  border-radius: 999px;
}

/* ============ FAQ SECTION STYLES ============ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(68,166,128,.3);
  box-shadow: 0 4px 20px rgba(21,34,46,.03);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  font-family: inherit;
}

/* Custom focus ring for FAQ triggers */
.faq-trigger:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: -3px;
  border-radius: var(--radius-md);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--green-deep);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease-out;
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--ink-60);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
}

.faq-cta-block {
  max-width: 800px;
  margin: 48px auto 0;
  background: var(--green);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  color: var(--cream);
  box-shadow: 0 10px 30px rgba(68,166,128,.15);
}

.faq-cta-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.faq-cta-block p {
  font-size: 1rem;
  color: rgba(255,251,250,.85);
  margin-bottom: 24px;
  max-width: 480px;
  margin-inline: auto;
}

.faq-cta-block .btn-secondary {
  background: var(--cream);
  color: var(--green-deep);
  border: none;
}

.faq-cta-block .btn-secondary:hover {
  background: rgba(255,251,250,.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,251,250,.2);
}

/* ============ LEGAL MODAL OVERLAY STYLES ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.45);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 20px 50px rgba(11, 11, 12, 0.15);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  background: rgba(11, 11, 12, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-close:hover {
  background: rgba(11, 11, 12, 0.1);
  transform: scale(1.05);
}

.modal-close:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 2px;
}

/* Logical position properties for modal close button based on text direction */
html[dir="rtl"] .modal-close {
  left: 20px;
  right: auto;
}

html[dir="ltr"] .modal-close {
  right: 20px;
  left: auto;
}

.modal-body {
  padding: 40px;
  overflow-y: auto;
  line-height: 1.75;
  text-align: justify;
}

/* Legal text typography overrides */
.modal-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.4;
  padding-inline-end: 48px; /* avoid overlapping with absolute close button */
}

.modal-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 12px;
}

.modal-body p {
  font-size: 0.95rem;
  color: var(--ink-60);
  margin-bottom: 16px;
}

.modal-body ul {
  padding-inline-start: 22px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.modal-body li {
  font-size: 0.95rem;
  color: var(--ink-60);
  margin-bottom: 8px;
}

.modal-body strong {
  color: var(--navy);
}

.modal-body a {
  color: var(--green-deep);
  font-weight: 600;
  text-decoration: underline;
}

/* ============ DOWNLOAD MODAL BADGE STYLES ============ */
.download-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.download-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0D0E10;
  color: #FFFFFF !important;
  border: 1px solid #222225;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  min-width: 170px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.download-badge-btn:hover {
  background: #17181C;
  border-color: var(--green);
  transform: translateY(-2px);
}
.download-badge-btn svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.download-badge-btn .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.download-badge-btn .badge-text span {
  font-size: 0.72rem;
  color: #8E8E93;
}
.download-badge-btn .badge-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF !important;
}
html[dir="rtl"] .download-badge-btn {
  text-align: right;
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 12px;
  }
  .modal-body {
    padding: 30px 20px 24px 20px;
  }
  .modal-body h2 {
    font-size: 1.3rem;
    padding-inline-end: 36px;
  }
  .download-badges {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .download-badge-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin: 2rem auto 0;
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(11,11,12,.10);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(68, 166, 128, 0.1);
}
.contact-form button {
  width: 100%;
  margin-top: 0.5rem;
}
.form-status {
  font-size: 0.92rem;
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  display: none;
  transition: all 0.25s ease;
}
.form-status.show {
  display: block;
}
.form-status.success {
  background: var(--green-tint);
  color: var(--green-deep);
  border: 1px solid rgba(68, 166, 128, 0.25);
}
.form-status.error {
  background: #fde8e8;
  color: #c53030;
  border: 1px solid #f8b4b4;
}

/* Touch Target Accessibility Fixes (min 44px height) */
.lang-toggle button {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile a {
  min-height: 44px;
  display: flex;
  align-items: center;
}
/* no display here — it would override the desktop .nav-burger{display:none} */
.nav-burger {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* Small Viewport Optimization (375px) */
@media (max-width: 375px) {
  .container {
    padding-inline: 16px;
  }
  .hero h1 {
    font-size: 1.95rem;
  }
  .hero .lead {
    font-size: 0.84rem;
  }
  .stat-chip .num {
    font-size: 1.05rem;
  }
  .stat-chip .label {
    font-size: 0.6rem;
  }
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

