*,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0
  }

  html {

	    scroll-behavior: smooth;
  }

  body {
     font-family: "DM Sans", sans-serif;

      color: #fff;
  }

/* navbar */
  /* ── Base ── */
    .navbar {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 0;
      transition: background 0.4s ease,
                  backdrop-filter 0.4s ease,
                  border-color 0.4s ease,
                  padding 0.3s ease;
      border-bottom: 1px solid transparent;
    }

    /* ── Scrolled: frosted glass ── */
    .navbar--scrolled {
      background: rgba(6, 26, 14, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 12px 0;
      border-bottom-color: rgba(74, 222, 128, 0.15);
    }

    /* ── Inner layout ── */
    .navbar__inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 2rem;
      position: relative;
    }

    /* ── Logo ── */
    .navbar__logo {
      font-family: "Syne", sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: #4ade80;
      display: flex;
      align-items: center;
      gap: 8px;
      letter-spacing: -0.5px;
      flex-shrink: 0;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .navbar__logo:hover { opacity: 0.85; }

    .navbar__logo-icon {
      width: 34px; height: 34px;
      background: #4ade80;
      color: #052e16;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 900;
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .navbar__logo:hover .navbar__logo-icon {
      transform: rotate(-5deg) scale(1.05);
    }

    /* ── Nav links (desktop) ── */
    .navbar__links {
      display: flex;
      list-style: none;
      gap: 2px;
      margin: 0 auto;
      padding: 0;
    }

    .navbar__link {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 7px 14px;
      border-radius: 8px;
      text-decoration: none;
      transition: color 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }
    .navbar__link:hover {
      color: #ffffff;
      background: rgba(74, 222, 128, 0.1);
    }

    /* ── Mobile-only CTA inside drawer ── */
    .navbar__mobile-cta { display: none; }

    /* ── Desktop action buttons ── */
    .navbar__actions {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    /* ── Button base ── */
    .navbar__btn {
      font-family: "DM Sans", sans-serif;
      font-size: 0.875rem;
      font-weight: 600;
      padding: 8px 22px;
      border-radius: 50px;
      text-decoration: none;
      transition: all 0.22s ease;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      border: none;
    }
    .navbar__btn--ghost {
      color: #ffffff;
      border: 1.5px solid rgba(255, 255, 255, 0.28);
      background: transparent;
    }
    .navbar__btn--ghost:hover {
      border-color: #4ade80;
      color: #4ade80;
      background: rgba(74, 222, 128, 0.06);
    }
    .navbar__btn--solid {
      background: #4ade80;
      color: #052e16;
      border: 1.5px solid #4ade80;
    }
    .navbar__btn--solid:hover {
      background: #86efac;
      border-color: #86efac;
      transform: translateY(-1px);
    }

    /* ── Hamburger (hidden on desktop) ── */
    .navbar__hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      margin-left: auto;
      flex-shrink: 0;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .navbar__hamburger:hover { background: rgba(74, 222, 128, 0.1); }

    .navbar__hamburger-bar {
      display: block;
      width: 24px; height: 2px;
      background: #ffffff;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
      transform-origin: center;
    }

    /* Animated X when open */
    .navbar__hamburger--open .navbar__hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .navbar__hamburger--open .navbar__hamburger-bar:nth-child(2) { opacity: 0; width: 0; }
    .navbar__hamburger--open .navbar__hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Mobile backdrop ── */
    .navbar__backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
      animation: fadeInBackdrop 0.25s ease;
    }
    .navbar__backdrop--visible { display: block; }

    @keyframes fadeInBackdrop {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .navbar__hamburger { display: flex; }
      .navbar__actions   { display: none; }

      .navbar__links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(6, 26, 14, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(74, 222, 128, 0.15);
        padding: 80px 1.5rem 2rem;
        gap: 4px;
        margin: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
      }
      .navbar__links--open { right: 0; }

      .navbar__link { font-size: 1rem; padding: 12px 16px; border-radius: 10px; }

      .navbar__mobile-cta {
        display: flex;
        gap: 10px;
        padding: 16px 0 0;
        margin-top: 12px;
        border-top: 1px solid rgba(74, 222, 128, 0.12);
      }
      .navbar__mobile-cta .navbar__btn { flex: 1; text-align: center; }
    }

    @media (max-width: 480px) {
      .navbar__inner { padding: 0 1rem; }
      .navbar__logo  { font-size: 1.35rem; }
    }
    /* navbar */

/* hero */
  .hero{min-height:100vh;background:#061a0e;position:relative;overflow:hidden;display:flex;align-items:center;padding:120px 2rem 80px;}
  .hero__bg-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(74,222,128,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(74,222,128,.035) 1px,transparent 1px);background-size:52px 52px;pointer-events:none;}
  .hero__bg-glow{position:absolute;border-radius:50%;pointer-events:none;animation:hero-glow-pulse 7s ease-in-out infinite;}
  .hero__bg-glow--primary{width:620px;height:620px;top:-120px;right:-120px;background:radial-gradient(circle,rgba(74,222,128,.13) 0%,transparent 68%);}
  .hero__bg-glow--secondary{width:400px;height:400px;bottom:-80px;left:5%;background:radial-gradient(circle,rgba(74,222,128,.07) 0%,transparent 68%);animation-delay:-3.5s;}
  .hero__bg-glow--tertiary{width:300px;height:300px;top:40%;left:38%;background:radial-gradient(circle,rgba(74,222,128,.04) 0%,transparent 68%);animation-delay:-1.8s;}
  @keyframes hero-glow-pulse{0%,100%{transform:scale(1);opacity:1;}50%{transform:scale(1.1);opacity:.65;}}
  .hero__inner{max-width:1200px;margin:0 auto;width:100%;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;position:relative;z-index:1;}
  .anim-item{opacity:0;transform:translateY(28px);transition:opacity .65s cubic-bezier(.22,1,.36,1),transform .65s cubic-bezier(.22,1,.36,1);transition-delay:var(--d,0s);}
  .hero--visible .anim-item{opacity:1;transform:translateY(0);}
  .hero__badge{display:inline-flex;align-items:center;gap:8px;background:rgba(74,222,128,.09);border:1px solid rgba(74,222,128,.24);color:#4ade80;font-size:.78rem;font-weight:600;padding:6px 14px;border-radius:50px;letter-spacing:.3px;margin-bottom:1.4rem;}
  .hero__badge-dot{width:7px;height:7px;background:#4ade80;border-radius:50%;flex-shrink:0;animation:badge-dot-pulse 2.2s ease-in-out infinite;}
  @keyframes badge-dot-pulse{0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(74,222,128,.5);}50%{transform:scale(1.2);box-shadow:0 0 0 5px rgba(74,222,128,0);}}
  .hero__headline{font-family:'Syne',sans-serif;font-size:clamp(2.2rem,3.8vw,3.4rem);font-weight:800;color:#fff;line-height:1.08;letter-spacing:-1.8px;margin:0 0 1.25rem;}
  .hero__word{display:inline-block;overflow:hidden;vertical-align:bottom;margin-right:.22em;}
  .hero__word span{display:inline-block;transform:translateY(110%);opacity:0;animation:word-rise .72s cubic-bezier(.22,1,.36,1) forwards;}
  @keyframes word-rise{to{transform:translateY(0);opacity:1;}}
  .hero__headline-accent{color:#4ade80;}
  .hero__sub{color:rgba(255,255,255,.52);font-size:.96rem;line-height:1.75;max-width:460px;margin:0 0 1.9rem;position:relative;opacity:0;transform:translateY(20px);animation:sub-fadein .9s cubic-bezier(.22,1,.36,1) 1.05s forwards;}
  .hero__sub::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent 0%,#061a0e 30%,#061a0e 70%,transparent 100%);background-size:300% 100%;background-position:200% 0;pointer-events:none;animation:sub-shimmer 1.1s ease 1.05s forwards;}
  @keyframes sub-fadein{to{opacity:1;transform:translateY(0);}}
  @keyframes sub-shimmer{0%{background-position:200% 0;opacity:1;}100%{background-position:-200% 0;opacity:0;}}
  .hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:2.4rem;}
  .hero__cta-primary{display:inline-flex;align-items:center;gap:9px;background:#4ade80;color:#052e16;border:2px solid #4ade80;padding:13px 28px;border-radius:50px;font-size:.93rem;font-weight:700;text-decoration:none;cursor:pointer;transition:background .22s,border-color .22s,transform .22s,box-shadow .22s;}
  .hero__cta-primary:hover{background:#86efac;border-color:#86efac;transform:translateY(-2px);box-shadow:0 10px 30px rgba(74,222,128,.32);}
  .hero__cta-arrow{display:inline-block;transition:transform .22s;}
  .hero__cta-primary:hover .hero__cta-arrow{transform:translateX(4px);}
  .hero__cta-outline{display:inline-flex;align-items:center;gap:10px;background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.28);padding:13px 26px;border-radius:50px;font-size:.93rem;font-weight:600;text-decoration:none;cursor:pointer;transition:border-color .22s,background .22s,transform .22s;}
  .hero__cta-outline:hover{border-color:rgba(255,255,255,.6);background:rgba(255,255,255,.055);transform:translateY(-2px);}
  .hero__play-btn{width:28px;height:28px;border-radius:50%;border:1.5px solid rgba(255,255,255,.38);display:inline-flex;align-items:center;justify-content:center;font-size:8px;flex-shrink:0;transition:border-color .22s;}
  .hero__cta-outline:hover .hero__play-btn{border-color:rgba(255,255,255,.7);}
  .hero__stats{display:flex;align-items:center;gap:1.4rem;flex-wrap:wrap;}
  .hero__stat{display:flex;flex-direction:column;gap:3px;}
  .hero__stat-value{font-family:'Syne',sans-serif;font-size:1.25rem;font-weight:800;color:#fff;line-height:1;position:relative;display:inline-block;opacity:0;transform:scale(.5) translateY(10px);}
  .hero--visible .hero__stat-value{animation:stat-pop .65s cubic-bezier(.34,1.56,.64,1) forwards,stat-glow .85s ease forwards;}
  .hero--visible .hero__stat:nth-child(1) .hero__stat-value{animation-delay:1.55s,1.55s;}
  .hero--visible .hero__stat:nth-child(3) .hero__stat-value{animation-delay:1.72s,1.72s;}
  .hero--visible .hero__stat:nth-child(5) .hero__stat-value{animation-delay:1.89s,1.89s;}
  @keyframes stat-pop{0%{opacity:0;transform:scale(.5) translateY(10px);}60%{opacity:1;transform:scale(1.12) translateY(-3px);}100%{opacity:1;transform:scale(1) translateY(0);}}
  @keyframes stat-glow{0%{text-shadow:0 0 0px #4ade80;}40%{text-shadow:0 0 20px rgba(74,222,128,.7);}100%{text-shadow:0 0 0px transparent;}}
  .hero__stat-value::after{content:"";position:absolute;bottom:-3px;left:0;width:0;height:2px;background:#4ade80;border-radius:2px;}
  .hero--visible .hero__stat:nth-child(1) .hero__stat-value::after{animation:underline-scan .5s ease 1.85s forwards;}
  .hero--visible .hero__stat:nth-child(3) .hero__stat-value::after{animation:underline-scan .5s ease 2.02s forwards;}
  .hero--visible .hero__stat:nth-child(5) .hero__stat-value::after{animation:underline-scan .5s ease 2.19s forwards;}
  @keyframes underline-scan{from{width:0}to{width:100%}}
  .hero__stat-label{font-size:.72rem;color:rgba(255,255,255,.38);white-space:nowrap;}
  .hero__stat-sep{width:1px;height:34px;background:rgba(255,255,255,.1);flex-shrink:0;}
  .hero__visual{position:relative;height:530px;display:flex;align-items:center;justify-content:center;}
  .hero__phone{position:relative;z-index:2;filter:drop-shadow(0 40px 60px rgba(0,0,0,.55));}
  .phone-frame{width:220px;background:#0f2d1a;border-radius:36px;border:2px solid rgba(74,222,128,.18);padding:16px 12px;box-shadow:0 0 0 6px rgba(74,222,128,.06),0 30px 70px rgba(0,0,0,.5);}
  .phone-notch{width:60px;height:8px;background:#0a1f10;border-radius:8px;margin:0 auto 14px;}
  .phone-balance-label{font-size:.6rem;color:rgba(255,255,255,.4);text-align:center;margin-bottom:2px;}
  .phone-balance-val{font-family:'Syne',sans-serif;font-size:1.4rem;font-weight:800;color:#fff;text-align:center;margin-bottom:14px;}
  .phone-chart{width:100%;height:70px;margin-bottom:14px;}
  .phone-row{display:flex;justify-content:space-between;align-items:center;background:rgba(74,222,128,.07);border-radius:10px;padding:7px 10px;margin-bottom:7px;}
  .phone-row-label{font-size:.65rem;color:rgba(255,255,255,.55);}
  .phone-row-val{font-size:.7rem;font-weight:700;color:#4ade80;}
  .hero-fc{position:absolute;background:rgba(255,255,255,.95);backdrop-filter:blur(10px);border-radius:16px;padding:13px 17px;box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 20px 50px rgba(0,0,0,.25);z-index:3;animation:fc-bob 4.2s ease-in-out infinite;}
  @keyframes fc-bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
  .hero-fc--income{top:44px;left:-34px;min-width:155px;animation-delay:0s;}
  .hero-fc--balance{top:48px;right:-22px;min-width:155px;animation-delay:1.0s;}
  .hero-fc--btc{bottom:76px;left:-42px;min-width:196px;animation-delay:.5s;}
  .hero-fc--trend{bottom:100px;right:-14px;padding:11px 14px;animation-delay:1.5s;}
  .hero-fc__label{display:block;font-size:10px;color:#6b7280;font-weight:500;margin-bottom:4px;white-space:nowrap;}
  .hero-fc__value{display:flex;align-items:center;gap:8px;font-family:'Syne',sans-serif;font-weight:800;font-size:1.05rem;color:#111827;font-variant-numeric:tabular-nums;white-space:nowrap;}
  .hero-fc__value--gain{color:#15803d;}
  .hero-fc__value--large{font-size:1.35rem;}
  .hero-fc__pill{font-size:9.5px;font-weight:700;padding:2px 8px;border-radius:50px;flex-shrink:0;}
  .hero-fc__pill--gain{background:#dcfce7;color:#15803d;}
  .hero-fc__pill--loss{background:#fee2e2;color:#dc2626;}
  .hero-fc__avatars{display:flex;align-items:center;margin-bottom:7px;}
  .hero-fc__av{width:24px;height:24px;border-radius:50%;background:linear-gradient(135deg,#4ade80,#059669);color:#fff;font-size:8px;font-weight:700;display:flex;align-items:center;justify-content:center;border:2px solid #fff;margin-left:-6px;flex-shrink:0;}
  .hero-fc__av:first-child{margin-left:0;}
  .hero-fc__av-more{font-size:9px;color:#6b7280;font-weight:600;margin-left:6px;}
  .hero-fc__btc-info{display:flex;flex-direction:column;gap:1px;margin-bottom:9px;}
  .hero-fc__btc-pair{font-size:10px;color:#6b7280;font-weight:500;}
  .hero-fc__btc-price{font-family:'Syne',sans-serif;font-size:1.25rem;font-weight:800;color:#111827;font-variant-numeric:tabular-nums;line-height:1.2;}
  .hero-fc__btc-change{font-size:11.5px;font-weight:700;}
  .hero-fc__btc-change--gain{color:#15803d;}
  .hero-fc__sell-btn{display:block;width:100%;background:#16a34a;color:#fff;border:none;border-radius:10px;padding:8px 0;font-size:12.5px;font-weight:700;cursor:pointer;font-family:'DM Sans',sans-serif;transition:background .2s,transform .15s;}
  .hero-fc__sell-btn:hover{background:#15803d;transform:translateY(-1px);}
  .hero-fc__trend-label{display:block;font-size:9px;color:#6b7280;font-weight:600;margin-top:5px;}
  @media(max-width:960px){.hero__inner{grid-template-columns:1fr;gap:3rem;text-align:center;}.hero__sub{margin-left:auto;margin-right:auto;}.hero__cta{justify-content:center;}.hero__stats{justify-content:center;}.hero__visual{height:420px;}.hero-fc--income{left:8px;top:12px;}.hero-fc--balance{right:8px;top:12px;}.hero-fc--btc{left:0;bottom:24px;}.hero-fc--trend{right:0;bottom:36px;}}
  @media(max-width:600px){.hero{padding:100px 1rem 50px;}.hero__visual{height:360px;margin-top:65px;}.hero-fc--btc,.hero-fc--trend{display:none;}.hero-fc--income{left:0;top:8px;}.hero-fc--balance{right:0;top:-48px;}}
  @media(max-width:380px){.hero__headline{font-size:1.9rem;letter-spacing:-1px;}.hero-fc{padding:10px 13px;}.hero-fc__value--large{font-size:1.1rem;}}
 /* hero */

    /* ============================================================
       CLIENTS SECTION
       ============================================================ */

    .clients {
     background: rgb(6, 26, 14);
      padding: 52px 2rem 48px;
      overflow: hidden;
    }

    .clients__heading {
      text-align: center;
      font-size: 1rem;
      font-weight: 600;
      color: #111827;
      margin: 0 0 36px;
      letter-spacing: -0.2px;
    }

    .clients__mask {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .clients__mask::before,
    .clients__mask::after {
      content: "";
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }



    .clients__track {
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      animation: clients-scroll 28s linear infinite;
    }

    .clients__track:hover {
      animation-play-state: paused;
    }

    @keyframes clients-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .clients__item {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 0 40px;
      white-space: nowrap;
      color: #111827;
      transition: color 0.22s ease;
      cursor: default;
      flex-shrink: 0;
    }

    .clients__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: opacity 0.22s ease;
    }

    .clients__icon img {
      height: 28px;
      width: auto;
      max-width: 120px;
      object-fit: contain;
     filter: brightness(0) invert(1);
      opacity: 0.75;
      transition: opacity 0.3s ease, transform 0.3s ease;
      display: block;
    }

    .clients__item:hover .clients__icon img {
      opacity: 1;
      transform: scale(1.1);
    }

    .clients__item:hover .clients__icon {
      opacity: 1;
    }

    .clients__name {
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: -0.3px;
    }

    .clients__item::after {
      content: "·";
      margin-left: 40px;
      color: #e5e7eb;
      font-size: 1.2rem;
      pointer-events: none;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .clients { padding: 40px 0 36px; }
      .clients__item { padding: 0 28px; }
      .clients__item::after { margin-left: 28px; }
      .clients__mask::before,
      .clients__mask::after { width: 60px; }
      .clients__icon img { height: 24px; }
    }

    @media (max-width: 480px) {
      .clients__heading { font-size: 0.9rem; margin-bottom: 28px; padding: 0 1rem; }
      .clients__item { padding: 0 20px; gap: 7px; }
      .clients__item::after { margin-left: 20px; }
      .clients__name { font-size: 0.85rem; }
      .clients__icon img { height: 20px; }
    }
/* clients */

  /* about */

  .about__section {
      font-family: 'Manrope', sans-serif;
        background: rgb(6, 26, 14);
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 80px 40px;
      overflow: hidden;
      position: relative;
  }

  .about__container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 60px;
  }

  /* ══ LEFT ══ */
  .about__left {
      flex: 1;
      max-width: 520px;
  }

  .about__heading {
      font-size: clamp(2rem, 3.8vw, 2.9rem);
      font-weight: 900;
          font-family: Syne, sans-serif;
      color: white;
      line-height: 1.12;
      margin: 0 0 18px;
      letter-spacing: -1px;
      opacity: 0;
      transform: translateX(-70px);
      transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22, 1, .36, 1);
  }

  .about__subtext {
      font-size: 14px;
      color: white;
      line-height: 1.75;
      margin-bottom: 28px;
      max-width: 400px;
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22, 1, .36, 1);
  }

  .about__features {
      list-style: none;
      padding: 0;
      margin: 0 0 36px;
      display: flex;
      flex-direction: column;
      gap: 14px;
  }

  .about__features li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: white;
      font-weight: 600;
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.22, 1, .36, 1);
  }

  .about__buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
  }

  /* ══ VISIBLE STATE (toggled by JS) ══ */
  .about__section.is-visible .about__heading {
      opacity: 1;
      transform: translateX(0);
      transition-delay: 0.18s;
  }

  .about__section.is-visible .about__subtext {
      opacity: 1;
      transform: translateX(0);
      transition-delay: 0.30s;
  }

  .about__section.is-visible .about__features li:nth-child(1) {
      opacity: 1;
      transform: translateX(0);
      transition-delay: 0.42s;
  }

  .about__section.is-visible .about__features li:nth-child(2) {
      opacity: 1;
      transform: translateX(0);
      transition-delay: 0.52s;
  }

  .about__section.is-visible .about__features li:nth-child(3) {
      opacity: 1;
      transform: translateX(0);
      transition-delay: 0.62s;
  }

  .about__section.is-visible .about__features li:nth-child(4) {
      opacity: 1;
      transform: translateX(0);
      transition-delay: 0.72s;
  }

  .about__section.is-visible .about__buttons {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.75s;
  }

  /* ══ FEATURE CHECK DOT ══ */
  .about__feature-check {
      width: 22px;
      height: 22px;
      background: linear-gradient(135deg, #7ecc45, #4ea01a);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 11px;
      color: white;
      font-weight: 800;
      box-shadow: 0 3px 10px rgba(109, 187, 58, 0.35);
  }

  /* ══ STORE BUTTONS ══ */
  .about__store-btn {
      display: flex;
      align-items: center;
      gap: 9px;
      background: #0d1117;
      color: white;
      border: none;
      border-radius: 12px;
      padding: 11px 20px;
      cursor: pointer;
      font-family: 'Manrope', sans-serif;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      transition: transform 0.28s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.28s ease;
  }

  .about__store-btn:hover {
      transform: translateY(-5px) scale(1.03);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  }

  .about__store-btn:active {
      transform: scale(0.96);
  }

  .about__store-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
  }

  .about__store-btn-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
  }

  .about__store-btn-label {
      font-size: 9px;
      opacity: 0.65;
      text-transform: uppercase;
      letter-spacing: 0.6px;
  }

  .about__store-btn-name {
      font-size: 13px;
      font-weight: 800;
  }

  /* ══ RIGHT PHONE SCENE ══ */
  .about__right {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 540px;
      opacity: 0;
      transform: translateX(80px) scale(0.88);
      transition: opacity 0.9s cubic-bezier(.22, 1, .36, 1), transform 0.9s cubic-bezier(.22, 1, .36, 1);
      transition-delay: 0.25s;
  }

  .about__section.is-visible .about__right {
      opacity: 1;
      transform: translateX(0) scale(1);
  }

  /* ══ PHONE FLOAT ══ */
  .about__phone-wrapper {
      position: relative;
      z-index: 2;
      animation: about__floatPhone 4.6s ease-in-out infinite;
  }

  @keyframes about__floatPhone {

      0%,
      100% {
          transform: translateY(0) rotate(0deg);
      }

      30% {
          transform: translateY(-13px) rotate(0.6deg);
      }

      70% {
          transform: translateY(-6px) rotate(-0.4deg);
      }
  }

  .about__phone-image {
      width: 300px;
      height: auto;
      display: block;
      border-radius: 36px;
  }

  /* ══ SEND ARROW ══ */
  .about__arrow-send {
      position: absolute;
      bottom: 50px;
      right: -18px;
      z-index: 3;
      filter: drop-shadow(0 6px 18px rgba(109, 187, 58, 0.55));
      animation: about__arrowFly 2.5s ease-in-out infinite;
  }

  @keyframes about__arrowFly {

      0%,
      100% {
          transform: translateX(0) rotate(-8deg) scale(1);
      }

      50% {
          transform: translateX(13px) rotate(-4deg) scale(1.07);
      }
  }

  /* ══ COINS ══ */
  .about__coin {
      position: absolute;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: white;
      z-index: 5;
      user-select: none;
      cursor: default;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .about__coin::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      top: -50%;
      left: -50%;
      background: conic-gradient(transparent 0deg, rgba(255, 255, 255, 0.45) 35deg, transparent 70deg);
      animation: about__coinShine 2.8s linear infinite;
      border-radius: 50%;
  }

  @keyframes about__coinShine {
      to {
          transform: rotate(360deg);
      }
  }

  .about__coin::after {
      content: '';
      position: absolute;
      inset: 5px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.3);
      pointer-events: none;
  }

  .about__coin:hover {
      transform: scale(1.25) !important;
      animation-play-state: paused !important;
      z-index: 10;
  }

  /* Dollar */
  .about__coin--dollar {
      width: 72px;
      height: 72px;
      font-size: 26px;
      background: radial-gradient(circle at 32% 28%, #92e058, #3a8c10);
      box-shadow: 0 9px 0 #286b0c, 0 14px 28px rgba(58, 140, 16, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.28);
      top: 28px;
      right: 60px;
      animation: about__floatDollar 3.8s ease-in-out infinite;
  }

  @keyframes about__floatDollar {
      0% {
          transform: translateY(0) rotateY(0deg) scale(1);
      }

      18% {
          transform: translateY(-24px) rotateY(18deg) scale(1.09);
      }

      45% {
          transform: translateY(-14px) rotateY(-8deg) scale(1.04);
      }

      65% {
          transform: translateY(-28px) rotateY(28deg) scale(1.11);
      }

      85% {
          transform: translateY(-10px) rotateY(5deg) scale(1.02);
      }

      100% {
          transform: translateY(0) rotateY(0deg) scale(1);
      }
  }

  /* Pound */
  .about__coin--pound {
      width: 58px;
      height: 58px;
      font-size: 21px;
      background: radial-gradient(circle at 32% 28%, #9ce464, #46a016);
      box-shadow: 0 7px 0 #30780f, 0 12px 24px rgba(70, 160, 22, 0.45), inset 0 2px 5px rgba(255, 255, 255, 0.25);
      top: 8px;
      right: -4px;
      animation: about__floatPound 4.4s ease-in-out infinite 0.9s;
  }

  @keyframes about__floatPound {
      0% {
          transform: translateY(0) rotate(0deg) scale(1);
      }

      28% {
          transform: translateY(-20px) rotate(-16deg) scale(1.1);
      }

      55% {
          transform: translateY(-9px) rotate(9deg) scale(1.03);
      }

      78% {
          transform: translateY(-22px) rotate(-8deg) scale(1.07);
      }

      100% {
          transform: translateY(0) rotate(0deg) scale(1);
      }
  }

  /* Euro */
  .about__coin--euro {
      width: 64px;
      height: 64px;
      font-size: 23px;
      background: radial-gradient(circle at 32% 28%, #86dc4a, #3d940f);
      box-shadow: 0 8px 0 #2b6c0a, 0 14px 28px rgba(61, 148, 15, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.26);
      left: 2px;
      bottom: 108px;
      animation: about__floatEuro 4.0s ease-in-out infinite 1.5s;
  }

  @keyframes about__floatEuro {
      0% {
          transform: translateY(0) rotateX(0deg) scale(1);
      }

      22% {
          transform: translateY(-22px) rotateX(14deg) scale(1.08);
      }

      50% {
          transform: translateY(-32px) rotateX(-10deg) scale(1.13);
      }

      72% {
          transform: translateY(-16px) rotateX(7deg) scale(1.04);
      }

      100% {
          transform: translateY(0) rotateX(0deg) scale(1);
      }
  }

  /* Leaf */
  .about__coin--leaf {
      width: 50px;
      height: 50px;
      font-size: 23px;
      background: radial-gradient(circle at 32% 28%, #aeed72, #55b020);
      box-shadow: 0 6px 0 #3c8418, 0 10px 22px rgba(85, 176, 32, 0.45), inset 0 2px 4px rgba(255, 255, 255, 0.24);
      right: -14px;
      top: 45%;
      animation: about__floatLeaf 4.9s ease-in-out infinite 0.5s;
  }

  @keyframes about__floatLeaf {
      0% {
          transform: translateY(0) rotate(0deg) scale(1);
      }

      33% {
          transform: translateY(-26px) rotate(22deg) scale(1.12);
      }

      66% {
          transform: translateY(-12px) rotate(-13deg) scale(1.05);
      }

      100% {
          transform: translateY(0) rotate(0deg) scale(1);
      }
  }

  /* ══ SPARKLES ══ */
  .about__sparkle {
      position: absolute;
      border-radius: 50%;
      background: #7ecc45;
      z-index: 4;
      pointer-events: none;
      opacity: 0;
  }

  .about__s1 {
      width: 6px;
      height: 6px;
      top: 52px;
      right: 94px;
      animation: about__spark 3.0s ease-in-out infinite 0.3s;
  }

  .about__s2 {
      width: 5px;
      height: 5px;
      top: 12px;
      right: 22px;
      animation: about__spark 3.3s ease-in-out infinite 1.2s;
  }

  .about__s3 {
      width: 4px;
      height: 4px;
      bottom: 130px;
      left: 32px;
      animation: about__spark 2.7s ease-in-out infinite 0.8s;
  }

  .about__s4 {
      width: 5px;
      height: 5px;
      top: 42%;
      right: 12px;
      animation: about__spark 3.5s ease-in-out infinite 1.9s;
  }

  .about__s5 {
      width: 7px;
      height: 7px;
      top: 68px;
      right: -10px;
      animation: about__spark 2.9s ease-in-out infinite 2.4s;
  }

  @keyframes about__spark {

      0%,
      100% {
          opacity: 0;
          transform: scale(0) translateY(0);
      }

      20% {
          opacity: 1;
          transform: scale(1.5) translateY(-6px);
      }

      55% {
          opacity: 0.6;
          transform: scale(0.9) translateY(-16px);
      }

      80% {
          opacity: 0;
          transform: scale(0) translateY(-24px);
      }
  }

  /* ══ BG GLOW ══ */
  .about__bg-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(85px);
      opacity: 0.09;
  }

  .about__bg-glow--1 {
      width: 400px;
      height: 400px;
      background: #5dbb25;
      top: -90px;
      right: -90px;
      animation: about__glowPulse 7s ease-in-out infinite;
  }

  .about__bg-glow--2 {
      width: 260px;
      height: 260px;
      background: #2ab86d;
      bottom: -50px;
      left: -50px;
      animation: about__glowPulse 9s ease-in-out infinite 3.5s;
  }

  @keyframes about__glowPulse {

      0%,
      100% {
          transform: scale(1);
          opacity: 0.09;
      }

      50% {
          transform: scale(1.22);
          opacity: 0.16;
      }
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 900px) {
      .about__container {
          flex-direction: column;
          gap: 48px;
      }

      .about__left {
          max-width: 100%;
      }

      .about__right {
          min-height: 420px;
          width: 100%;
      }

      .about__phone-image {
          width: 240px;
      }

      .about__coin--dollar {
          width: 56px;
          height: 56px;
          font-size: 19px;
      }

      .about__coin--pound {
          width: 44px;
          height: 44px;
          font-size: 16px;
      }

      .about__coin--euro {
          width: 50px;
          height: 50px;
          font-size: 18px;
      }

      .about__coin--leaf {
          width: 40px;
          height: 40px;
          font-size: 18px;
      }
  }

  @media (max-width: 480px) {
      .about__section {
          padding: 60px 20px;
      }

      .about__heading {
          font-size: 1.8rem;
      }

      .about__phone-image {
          width: 260px;
      }
  }

  /* about */
  /* ── faq Section ── */
  :root {
      --faq-accent: #7bc418;
      --faq-accent-lt: #a3f542;
      --faq-dark: #0f0f0f;
      --faq-text: #1a1a1a;
      --faq-muted: #555;
      --faq-border: #e2e2e2;
      --faq-open-bg: #111111;
      --faq-open-text: #ffffff;
      --faq-item-bg: #f5f5f5;
      --faq-radius: 14px;
      --faq-transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  }


  .faq {
      position: relative;
      background: #ffffff;
      padding: 90px 24px 100px;
      font-family: "DM Sans", sans-serif;
      overflow: hidden;
  }

  /* ── Orbs ── */
  .faq__orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(70px);
      animation: orbDrift 12s ease-in-out infinite alternate;
  }

  .faq__orb--1 {
      width: 380px;
      height: 380px;
      background: rgba(163, 245, 66, 0.09);
      top: -100px;
      left: -80px;
      animation-duration: 14s;
  }

  .faq__orb--2 {
      width: 300px;
      height: 300px;
      background: rgba(98, 126, 234, 0.07);
      bottom: -60px;
      right: -60px;
      animation-duration: 11s;
      animation-delay: -5s;
  }

  @keyframes orbDrift {
      0% {
          transform: translate(0, 0) scale(1);
      }

      50% {
          transform: translate(30px, 20px) scale(1.08);
      }

      100% {
          transform: translate(-20px, 40px) scale(0.95);
      }
  }

  /* ── Layout ── */
  .faq__container {
      position: relative;
      z-index: 1;
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
  }

  /* ══ LEFT ══ */
  .faq__left {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      animation: slideInLeft 0.7s ease both;
  }

  @keyframes slideInLeft {
      from {
          opacity: 0;
          transform: translateX(-32px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .faq__canvas-wrap {
      position: relative;
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      overflow: hidden;
      background: #f8f8f8;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(163, 245, 66, 0.15) inset;
  }

  .faq__canvas-wrap::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      border: 1px solid transparent;
      background: linear-gradient(135deg, rgba(163, 245, 66, 0.25), transparent 60%) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      pointer-events: none;
      animation: shimmerBorder 4s linear infinite;
  }

  @keyframes shimmerBorder {

      0%,
      100% {
          opacity: 0.6;
      }

      50% {
          opacity: 1;
      }
  }

  .faq__canvas {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 4.2;
      background: #0a0a0a;
  }

  /* Pills */
  .faq__pills {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
  }

  .faq__pill {
      padding: 5px 14px;
      border-radius: 99px;
      font-size: 11.5px;
      font-weight: 500;
      letter-spacing: 0.02em;
      background: #f0f0f0;
      color: #444;
      border: 1px solid #e0e0e0;
      animation: pillPop 0.5s ease both;
  }

  .faq__pill:nth-child(1) {
      animation-delay: 0.1s;
  }

  .faq__pill:nth-child(2) {
      animation-delay: 0.2s;
  }

  .faq__pill:nth-child(3) {
      animation-delay: 0.3s;
  }

  @keyframes pillPop {
      from {
          opacity: 0;
          transform: scale(0.85);
      }

      to {
          opacity: 1;
          transform: scale(1);
      }
  }

  .faq__pill--lime {
      background: #e8fcd0;
      color: #3d7208;
      border-color: rgba(123, 196, 24, 0.35);
  }

  /* ══ RIGHT ══ */
  .faq__right {
      display: flex;
      flex-direction: column;
      animation: slideInRight 0.7s ease 0.1s both;
  }

  @keyframes slideInRight {
      from {
          opacity: 0;
          transform: translateX(28px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .faq__header {
      margin-bottom: 28px;
  }

  .faq__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--faq-accent);
      margin: 0 0 14px;
      font-family: "DM Mono", monospace;
  }

  .faq__eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--faq-accent-lt);
      animation: dotPulse 1.8s ease-in-out infinite;
      flex-shrink: 0;
  }

  @keyframes dotPulse {

      0%,
      100% {
          transform: scale(1);
          opacity: 1;
      }

      50% {
          transform: scale(1.6);
          opacity: 0.5;
      }
  }

  .faq__title {
      font-family: "Syne", sans-serif;
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 800;
      color: var(--faq-dark);
      margin: 0 0 14px;
      line-height: 1.1;
      letter-spacing: -0.02em;
  }

  .faq__subtitle {
      font-size: 14.5px;
      color: var(--faq-muted);
      line-height: 1.75;
  }

  .faq__accent {
      color: var(--faq-accent);
      font-weight: 600;
  }

  /* ── Accordion ── */
  .faq__list {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .faq__item {
      border-radius: var(--faq-radius);
      background: var(--faq-item-bg);
      border: 1.5px solid transparent;
      transition:
          background var(--faq-transition),
          border-color var(--faq-transition),
          box-shadow var(--faq-transition),
          transform 0.2s ease;
      animation: itemReveal 0.5s ease both;
      will-change: transform;
  }

  .faq__item:nth-child(1) {
      animation-delay: 0.07s;
  }

  .faq__item:nth-child(2) {
      animation-delay: 0.14s;
  }

  .faq__item:nth-child(3) {
      animation-delay: 0.21s;
  }

  .faq__item:nth-child(4) {
      animation-delay: 0.28s;
  }

  .faq__item:nth-child(5) {
      animation-delay: 0.35s;
  }

  .faq__item:nth-child(6) {
      animation-delay: 0.42s;
  }

  @keyframes itemReveal {
      from {
          opacity: 0;
          transform: translateY(14px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .faq__item:hover:not(.faq__item--open) {
      background: #eeeeee;
      border-color: #d8d8d8;
      transform: translateY(-1px);
  }

  .faq__item--open {
      background: var(--faq-open-bg);
      border-color: rgba(163, 245, 66, 0.5);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(163, 245, 66, 0.12) inset;
      transform: translateY(-2px);
  }

  .faq__question {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      padding: 16px 18px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: "Syne", sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--faq-dark);
      letter-spacing: 0.01em;
      transition: color var(--faq-transition);
      -webkit-tap-highlight-color: transparent;
  }

  .faq__item--open .faq__question {
      color: var(--faq-open-text);
  }

  .faq__q-num {
      flex-shrink: 0;
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      background: rgba(0, 0, 0, 0.07);
      font-size: 10px;
      font-family: "DM Mono", monospace;
      color: #888;
      transition: background var(--faq-transition), color var(--faq-transition);
  }

  .faq__item--open .faq__q-num {
      background: rgba(163, 245, 66, 0.15);
      color: var(--faq-accent-lt);
  }

  .faq__q-text {
      flex: 1;
  }

  .faq__icon {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.07);
      color: #666;
      transition:
          background var(--faq-transition),
          color var(--faq-transition),
          transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .faq__item--open .faq__icon {
      background: #a3f542;
      color: #111;
      transform: rotate(180deg);
      box-shadow: 0 0 14px rgba(163, 245, 66, 0.45);
  }

  .faq__body {
      overflow: hidden;
      transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq__answer {
      padding: 0 18px 18px 56px;
      font-size: 13.5px;
      line-height: 1.78;
      color: var(--faq-muted);
  }

  .faq__item--open .faq__answer {
      color: rgba(255, 255, 255, 0.62);
  }

  /* ── Responsive ── */
  @media (max-width: 960px) {
      .faq__container {
          grid-template-columns: 1fr;
          gap: 52px;
      }

      .faq__left {
          order: 2;
      }

      .faq__right {
          order: 1;
      }

      .faq__canvas-wrap {
          max-width: 380px;
          margin: 0 auto;
      }
  }

  @media (max-width: 640px) {
      .faq {
          padding: 64px 16px 72px;
      }

      .faq__container {
          gap: 36px;
      }

      .faq__canvas-wrap {
          max-width: 100%;
          border-radius: 14px;
      }

      .faq__question {
          padding: 14px;
          font-size: 13px;
      }

      .faq__q-num {
          display: none;
      }

      .faq__answer {
          padding: 0 14px 14px;
          font-size: 13px;
      }

      .faq__title {
          font-size: 28px;
      }
  }

  @media (max-width: 400px) {
      .faq__pills {
          gap: 6px;
      }

      .faq__pill {
          font-size: 10.5px;
          padding: 4px 11px;
      }
  }

  /* ── faq Section ── */

  /* rules */
  :root {
      --rules-g1: #00C896;
      --rules-g2: #00A878;
      --rules-g3: #007A58;
      --rules-acc: #FFB800;
      --rules-bg: #F0FAF6;
      --rules-card: #ffffff;
      --rules-text: #0D1F1A;
      --rules-muted: #6B8F80;
      --rules-shadow-card: 0 2px 20px rgba(0, 100, 60, 0.06);
      --rules-shadow-hover: 0 8px 36px rgba(0, 200, 150, 0.16);
  }

  @media (prefers-color-scheme: dark) {
      :root {
          --rules-bg: #0a1510;
          --rules-card: #111d18;
          --rules-text: #e0f0ea;
          --rules-muted: #5fa882;
          --rules-shadow-card: 0 2px 20px rgba(0, 0, 0, 0.3);
          --rules-shadow-hover: 0 8px 36px rgba(0, 200, 150, 0.12);
      }
  }

  /* ── Section Wrapper ── */
  .rules__wrap {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--rules-bg);
      min-height: 100vh;
      padding: 56px 24px 80px;
      overflow: hidden;
      position: relative;
  }

  /* ── Blobs ── */
  .rules__blob {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
  }

  .rules__blob--1 {
      width: 420px;
      height: 420px;
      background: rgba(0, 200, 150, 0.13);
      top: -120px;
      right: -100px;
      filter: blur(90px);
  }

  .rules__blob--2 {
      width: 320px;
      height: 320px;
      background: rgba(0, 168, 120, 0.09);
      bottom: 80px;
      left: -90px;
      filter: blur(80px);
  }

  .rules__blob--3 {
      width: 200px;
      height: 200px;
      background: rgba(255, 184, 0, 0.07);
      top: 40%;
      left: 40%;
      filter: blur(70px);
  }

  /* ── Header ── */
  .rules__head {
      text-align: center;
      margin-bottom: 52px;
      position: relative;
      z-index: 1;
      opacity: 0;
      transform: translateY(28px);
      animation: rules__fadeUp 0.7s ease forwards 0.1s;
  }

  .rules__head h2 {
         font-family: Syne, sans-serif;
      font-size: clamp(26px, 5vw, 44px);
      font-weight: 800;
      color: var(--rules-text);
      line-height: 1.15;
      margin-bottom: 12px;
  }

  .rules__head h2 span {
      color: var(--rules-g1);
  }

  .rules__head p {
      font-size: clamp(13px, 2vw, 15px);
      color: var(--rules-muted);
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.75;
  }

  /* ── Benefits Bar ── */
  .rules__benefits-bar {
      display: flex;
      justify-content: center;
      gap: 48px;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
  }

  .rules__ben-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .rules__ben-item.rules__ben-vis {
      opacity: 1;
      transform: translateY(0);
  }

  .rules__ben-item:hover {
      transform: translateY(-4px);
  }

  .rules__ben-ico-wrap {
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: var(--rules-card);
      border: 1px solid rgba(0, 200, 150, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--rules-shadow-card);
      font-size: 26px;
      transition: box-shadow 0.25s, transform 0.25s;
  }

  .rules__ben-item:hover .rules__ben-ico-wrap {
      box-shadow: var(--rules-shadow-hover);
      transform: scale(1.06);
  }

  .rules__ben-lbl {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--rules-text);
      text-align: center;
  }

  .rules__ben-sub {
      font-size: 10px;
      color: var(--rules-muted);
      text-align: center;
      max-width: 80px;
      line-height: 1.4;
  }

  /* ── Main Grid ── */
  .rules__main-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 28px;
      align-items: center;
      max-width: 1080px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
  }

  .rules__steps-col {
      display: flex;
      flex-direction: column;
      gap: 18px;
  }

  /* ── Step Card ── */
  .rules__sc {
      background: var(--rules-card);
      border-radius: 18px;
      padding: 18px 20px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      border: 1px solid rgba(0, 200, 150, 0.1);
      box-shadow: var(--rules-shadow-card);
      opacity: 0;
      transform: translateX(-38px);
      transition:
          transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
          opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
          box-shadow 0.25s,
          border-color 0.25s;
      cursor: pointer;
  }

  .rules__sc--right {
      transform: translateX(38px);
  }

  .rules__sc.rules__vis {
      opacity: 1;
      transform: translateX(0);
  }

  .rules__sc:hover {
      box-shadow: var(--rules-shadow-hover);
      border-color: rgba(0, 200, 150, 0.38);
      transform: translateY(-4px) scale(1.015) !important;
  }

  .rules__sc-num {
      min-width: 46px;
      height: 46px;
      background: linear-gradient(135deg, var(--rules-g1), var(--rules-g2));
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 14px;
      color: #fff;
      box-shadow: 0 4px 16px rgba(0, 200, 150, 0.32);
      flex-shrink: 0;
      transition: transform 0.25s, box-shadow 0.25s;
  }

  .rules__sc-num--acc {
      background: linear-gradient(135deg, #ffb800, #ff8c00);
      box-shadow: 0 4px 16px rgba(255, 184, 0, 0.38);
  }

  .rules__sc:hover .rules__sc-num {
      transform: scale(1.08) rotate(-4deg);
  }

  .rules__sc-txt h4 {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--rules-text);
      margin-bottom: 5px;
  }

  .rules__sc-txt p {
      font-size: 12px;
      color: var(--rules-muted);
      line-height: 1.65;
  }

  /* ── Phone Column ── */
  .rules__phone-col {
      display: flex;
      justify-content: center;
  }

  .rules__p-wrap {
      position: relative;
      width: 240px;
      animation: rules__floatPhone 4s ease-in-out infinite 2.2s;
  }

  .rules__p-outer {
      width: 240px;
      background: #161b26;
      border-radius: 42px;
      padding: 14px 12px;
      box-shadow:
          0 32px 88px rgba(0, 0, 0, 0.38),
          0 0 0 1px rgba(255, 255, 255, 0.07),
          inset 0 0 0 2px rgba(255, 255, 255, 0.04);
      position: relative;
      opacity: 0;
      transform: translateY(40px) scale(0.94);
      transition:
          opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .rules__p-outer.rules__phone-in {
      opacity: 1;
      transform: translateY(0) scale(1);
  }

  /* Notch */
  .rules__p-notch {
      position: absolute;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: 82px;
      height: 24px;
      background: #161b26;
      border-radius: 0 0 14px 14px;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
  }

  .rules__nc-cam {
      width: 8px;
      height: 8px;
      background: #2a2d3e;
      border-radius: 50%;
      box-shadow: inset 0 0 0 2px #0e0e1e, 0 0 5px rgba(0, 200, 150, 0.5);
  }

  .rules__nc-spk {
      width: 30px;
      height: 4px;
      background: #2a2d3e;
      border-radius: 2px;
  }

  /* ── Phone Screen ── */
  .rules__p-screen {
      background: #0a1420;
      border-radius: 30px;
      overflow: hidden;
      height: 462px;
      position: relative;
  }

  .rules__screen-shimmer {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, transparent 30%, rgba(0, 200, 150, 0.07) 50%, transparent 70%);
      background-size: 200% 100%;
      border-radius: 30px;
      pointer-events: none;
      animation: rules__shimmerSweep 1.1s ease forwards 0.3s;
      z-index: 20;
      opacity: 0;
  }

  /* ── Top Balance ── */
  .rules__s-top {
      background: linear-gradient(165deg, #0e2b1f 0%, #091a10 100%);
      padding: 30px 16px 18px;
      opacity: 0;
      transform: translateY(-12px);
      transition: opacity 0.55s ease, transform 0.55s ease;
  }

  .rules__s-top.rules__s-top-in {
      opacity: 1;
      transform: translateY(0);
  }

  .rules__s-bal-label {
      font-size: 9px;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 2px;
  }

  .rules__s-bal {
      font-family: 'Syne', sans-serif;
      font-size: 26px;
      font-weight: 800;
      color: #fff;
  }

  .rules__s-bal span {
      color: var(--rules-g1);
  }

  .rules__port-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(0, 200, 150, 0.14);
      border-radius: 20px;
      padding: 3px 10px;
      margin-top: 6px;
      font-size: 9px;
      color: var(--rules-g1);
      font-weight: 700;
  }

  .rules__port-badge::before {
      content: '▲';
      font-size: 7px;
  }

  .rules__cards-row {
      display: flex;
      gap: 7px;
      margin-top: 13px;
  }

  .rules__mc {
      flex: 1;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 11px;
      padding: 8px 9px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      opacity: 0;
      transform: translateY(10px);
  }

  .rules__mc.rules__mc-in {
      animation: rules__cardSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .rules__mc-lbl {
      font-size: 8px;
      color: rgba(255, 255, 255, 0.38);
      margin-bottom: 3px;
  }

  .rules__mc-val {
      font-size: 11.5px;
      font-weight: 700;
  }

  .rules__mc-val--gn {
      color: var(--rules-g1);
  }

  .rules__mc-val--am {
      color: var(--rules-acc);
  }

  .rules__mc-val--vl {
      color: #818cf8;
  }

  /* ── Chart ── */
  .rules__chart-area {
      padding: 12px 16px 0;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .rules__chart-area.rules__chart-in {
      opacity: 1;
      transform: translateY(0);
  }

  .rules__chart-labels {
      display: flex;
      justify-content: space-between;
      font-size: 8px;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 5px;
  }

  .rules__chart-fill {
      opacity: 0;
      transition: opacity 0.6s ease 0.3s;
  }

  .rules__chart-fill.rules__fill-in {
      opacity: 1;
  }

  .rules__chart-line {
      stroke-dasharray: 340;
      stroke-dashoffset: 340;
  }

  .rules__chart-line.rules__line-draw {
      animation: rules__chartDraw 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.1s;
  }

  .rules__chart-pulse {
      animation: rules__pulseDot 1.8s ease-in-out infinite;
  }

  .rules__chart-dot {
      opacity: 0;
      r: 0;
      animation: rules__dotPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  /* ── Transactions ── */
  .rules__tx-list {
      padding: 12px 16px 0;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .rules__tx-list.rules__tx-list-in {
      opacity: 1;
      transform: translateY(0);
  }

  .rules__tx-hdr {
      font-size: 9px;
      color: rgba(255, 255, 255, 0.38);
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 7px;
  }

  .rules__tx-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 6px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      opacity: 0;
      transform: translateX(14px);
      transition: opacity 0.38s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .rules__tx-item.rules__tx-in {
      opacity: 1;
      transform: translateX(0);
  }

  .rules__tx-ico {
      width: 26px;
      height: 26px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      flex-shrink: 0;
      margin-right: 7px;
  }

  .rules__ti-btc {
      background: rgba(255, 184, 0, 0.15);
      color: var(--rules-acc);
  }

  .rules__ti-eth {
      background: rgba(99, 102, 241, 0.15);
      color: #818cf8;
  }

  .rules__ti-usd {
      background: rgba(0, 200, 150, 0.15);
      color: var(--rules-g1);
  }

  .rules__tx-info {
      flex: 1;
  }

  .rules__tx-n {
      font-size: 10px;
      color: #fff;
      font-weight: 600;
  }

  .rules__tx-s {
      font-size: 8px;
      color: rgba(255, 255, 255, 0.32);
      margin-top: 1px;
  }

  .rules__tx-a {
      font-size: 10.5px;
      font-weight: 700;
  }

  .rules__tx-a--pos {
      color: var(--rules-g1);
  }

  .rules__tx-a--neg {
      color: #ff6b6b;
  }

  .rules__p-bot {
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 18px;
  }

  .rules__nd {
      width: 28px;
      height: 4px;
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.14);
  }

  .rules__nd--on {
      background: var(--rules-g1);
  }

  /* ── Floating Badges ── */
  .rules__fbadge {
      position: absolute;
      background: var(--rules-card);
      border-radius: 16px;
      padding: 9px 13px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
      border: 1px solid rgba(0, 200, 150, 0.18);
      white-space: nowrap;
      font-size: 11px;
      font-weight: 700;
      color: var(--rules-g3);
      opacity: 0;
      transform: scale(0.65);
      transition:
          opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 10;
  }

  .rules__fbadge.rules__badge-in {
      opacity: 1;
      transform: scale(1);
  }

  .rules__fb-sec {
      right: -22px;
      top: 62px;
      transition-delay: 1.0s;
  }

  .rules__fb-gr {
      right: -32px;
      bottom: 145px;
      transition-delay: 1.3s;
  }

  .rules__fb-sp {
      left: -32px;
      top: 100px;
      transition-delay: 1.15s;
  }

  /* ── Keyframes ── */
  @keyframes rules__fadeUp {
      to {
          opacity: 1;
          transform: none;
      }
  }

  @keyframes rules__cardSlideUp {
      from {
          opacity: 0;
          transform: translateY(10px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes rules__chartDraw {
      from {
          stroke-dashoffset: 340;
      }

      to {
          stroke-dashoffset: 0;
      }
  }

  @keyframes rules__pulseDot {

      0%,
      100% {
          opacity: 1;
          r: 4;
      }

      50% {
          opacity: 0.4;
          r: 6;
      }
  }

  @keyframes rules__dotPop {
      from {
          opacity: 0;
          r: 0;
      }

      to {
          opacity: 0.9;
          r: 2.5;
      }
  }

  @keyframes rules__shimmerSweep {
      0% {
          opacity: 0;
          background-position: -100% 0;
      }

      20% {
          opacity: 1;
      }

      100% {
          opacity: 0;
          background-position: 200% 0;
      }
  }

  @keyframes rules__floatPhone {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }
  }

  /* ── Responsive ── */
  @media (max-width: 820px) {
      .rules__main-grid {
          grid-template-columns: 1fr;
      }

      .rules__steps-l {
          order: 2;
      }

      .rules__phone-col {
          order: 1;
      }

      .rules__steps-r {
          order: 3;
      }

      .rules__benefits-bar {
          gap: 20px;
      }
  }

  /* rules */

/* blog */
 
    /* ============================================================
       BLOGS SECTION
       ============================================================ */
 
    .blogs {
      background: #061a0e;
      padding: 100px 2rem 80px;
      overflow: hidden;
      position: relative;
       margin-bottom: 90px;
    }
 
    .blogs__header {
      text-align: center;
      margin-bottom: 56px;
    }
 
    .blogs__tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(74, 222, 128, 0.09);
      border: 1px solid rgba(74, 222, 128, 0.24);
      color: #4ade80;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 50px;
      letter-spacing: 0.4px;
      margin-bottom: 18px;
    }
 
    .blogs__tag-dot {
      width: 6px; height: 6px;
      background: #4ade80;
      border-radius: 50%;
      flex-shrink: 0;
      animation: dot-pulse 2.2s ease-in-out infinite;
    }
 
    @keyframes dot-pulse {
      0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
      50%       { transform: scale(1.3); box-shadow: 0 0 0 5px rgba(74,222,128,0); }
    }
 
    .blogs__title {
      font-family: "Syne", sans-serif;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      font-weight: 800;
      color: #ffffff;
      letter-spacing: -1.2px;
      line-height: 1.1;
      margin: 0 0 14px;
    }
 
    .blogs__title-accent { color: #4ade80; }
 
    .blogs__sub {
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.92rem;
      line-height: 1.7;
      max-width: 440px;
      margin: 0 auto;
    }
 
    .blogs__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      max-width: 1100px;
      margin: 0 auto;
    }
 
    /* ============================================================
       BLOG CARD
       ============================================================ */
 
    .blog-card {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
   
      transform: translateY(44px);
      transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        background 0.3s ease;
    }
 
    .blog-card--visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    .blog-card:hover {
      transform: translateY(-9px);
      border-color: rgba(74, 222, 128, 0.35);
      background: rgba(74, 222, 128, 0.04);
    }
 
    .blog-card__img {
      width: 100%; height: 185px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
 
    .blog-card__img--green  { background: linear-gradient(135deg, #052e16 0%, #064e2a 55%, #0a6640 100%); }
    .blog-card__img--blue   { background: linear-gradient(135deg, #0c1a3a 0%, #102344 55%, #1a3a6e 100%); }
    .blog-card__img--purple { background: linear-gradient(135deg, #1a0a2e 0%, #2a1044 55%, #3d1a6e 100%); }
 
    .blog-card__img::before {
      content: "";
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 28px 28px;
    }
 
    .blog-card__img-icon {
      width: 54px; height: 54px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      position: relative;
      z-index: 1;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
    }
 
    .blog-card:hover .blog-card__img-icon {
      transform: scale(1.1) rotate(4deg);
      background: rgba(255, 255, 255, 0.13);
    }
 
    .blog-card__body { padding: 22px 20px 20px; }
 
    .blog-card__meta {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 13px;
      flex-wrap: wrap;
    }
 
    .blog-card__badge {
      font-size: 10px; font-weight: 700;
      padding: 3px 10px;
      border-radius: 50px;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }
 
    .badge--green  { background: rgba(74,222,128,.14);  color: #4ade80; border: 1px solid rgba(74,222,128,.25); }
    .badge--blue   { background: rgba(96,165,250,.14);  color: #60a5fa; border: 1px solid rgba(96,165,250,.25); }
    .badge--purple { background: rgba(167,139,250,.14); color: #a78bfa; border: 1px solid rgba(167,139,250,.25); }
 
    .blog-card__date {
      font-size: 10px;
      color: rgba(255,255,255,.3);
      font-weight: 500;
    }
 
    .blog-card__title {
      font-family: "Syne", sans-serif;
      font-size: 0.97rem; font-weight: 700;
      color: #ffffff;
      line-height: 1.38;
      margin: 0 0 10px;
      letter-spacing: -0.3px;
      transition: color 0.2s ease;
    }
 
    .blog-card:hover .blog-card__title { color: #e2fce9; }
 
    .blog-card__excerpt {
      font-size: 0.78rem;
      color: rgba(255,255,255,.42);
      line-height: 1.7;
      margin: 0 0 18px;
    }
 
    .blog-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,.07);
      padding-top: 14px;
    }
 
    .blog-card__read {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.78rem; font-weight: 700;
      color: #4ade80;
      text-decoration: none;
      transition: gap 0.22s ease;
    }
 
    .blog-card:hover .blog-card__read { gap: 11px; }
 
    .blog-card__arrow {
      display: inline-block;
      transition: transform 0.22s ease;
      font-size: 14px;
    }
 
    .blog-card:hover .blog-card__arrow { transform: translateX(3px); }
 
    .blog-card__time {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      color: rgba(255,255,255,.25);
      font-weight: 500;
    }
 
    .blogs__cta {
         text-align: center; 
         margin-top: 85px; 
    }
 
    .blogs__cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: #ffffff;
      border: 1.5px solid rgba(255,255,255,.22);
      padding: 13px 32px;
      border-radius: 50px;
      font-size: 0.88rem; font-weight: 600;
      cursor: pointer;
      font-family: "DM Sans", sans-serif;
      transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
    }
 
    .blogs__cta-btn:hover {
      border-color: rgba(74,222,128,.55);
      background: rgba(74,222,128,.06);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(74,222,128,.1);
    }
 
    .blogs__cta-btn:active { transform: translateY(0); }
 
    /* ── Responsive ── */
    @media (max-width: 960px) {
      .blogs__grid { grid-template-columns: repeat(2, 1fr); }
    }
 
    @media (max-width: 600px) {
      .blogs { padding: 70px 1rem 60px; }
      .blogs__grid { grid-template-columns: 1fr; gap: 16px; }
      .blogs__title { font-size: 1.7rem; }
      .blog-card__img { height: 155px; }
    }

    /* blogs */

  /* footer */

  :root {
      --footer-bg: #0e3d2a;
      --footer-accent: #c8f135;
      --footer-accent-hover: #d4ff44;
      --footer-text: #ffffff;
      --footer-muted: rgba(255, 255, 255, 0.5);
      --footer-border: rgba(255, 255, 255, 0.1);
      --footer-input-bg: rgba(255, 255, 255, 0.08);
      --footer-glow: rgba(100, 200, 80, 0.18);
  }

  /* ── Base ── */
  .footer {
      position: relative;
      background: var(--footer-bg);
      font-family: 'Barlow', sans-serif;
      overflow: hidden;
      border-radius: 40px 40px 0 0;
  }

  /* ── Glow FX ── */
  .footer__glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      z-index: 0;
  }

  .footer__glow--left {
      width: 260px;
      height: 260px;
      background: var(--footer-glow);
      top: -60px;
      left: -60px;
      opacity: 0.7;
  }

  .footer__glow--center {
      width: 320px;
      height: 220px;
      background: radial-gradient(ellipse, rgba(80, 180, 60, 0.22) 0%, transparent 70%);
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
  }

  /* ── Inner ── */
  .footer__inner {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 36px 40px 28px;
  }

  /* ── Top Row ── */
  .footer__top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 36px;
      gap: 20px;
      flex-wrap: wrap;
  }

  .footer__logo {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 2px;
  }

  .footer__logo img {
      height: 36px;
  }

  .footer__copyright {
      font-size: 11px;
      color: var(--footer-muted);
      margin-top: 10px;
  }

  /* ── Social ── */
  .footer__social {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
  }

  .footer__social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      color: var(--footer-muted);
      background: transparent;
      border: 1px solid var(--footer-border);
      text-decoration: none;
      transition: all 0.2s ease;
  }

  .footer__social-link:hover {
      color: var(--footer-text);
      border-color: rgba(255, 255, 255, 0.3);
      background: rgba(255, 255, 255, 0.08);
  }

  .footer__social-link--active {
      background: var(--footer-accent);
      border-color: var(--footer-accent);
      color: var(--footer-bg);
  }

  .footer__social-link--active:hover {
      background: var(--footer-accent-hover);
      border-color: var(--footer-accent-hover);
      color: var(--footer-bg);
  }

  /* ── Middle Row ── */
  .footer__middle {
      display: flex;
      align-items: flex-start;
      gap: 60px;
      margin-bottom: 32px;
      flex-wrap: wrap;
  }

  .footer__subscribe {
      flex: 0 0 auto;
      min-width: 260px;
  }

  .footer__subscribe-label {
      font-size: 13px;
      color: var(--footer-text);
      font-weight: 500;
      margin-bottom: 12px;
  }

  .footer__form {
      display: flex;
      align-items: center;
      background: var(--footer-input-bg);
      border: 1px solid var(--footer-border);
      border-radius: 8px;
      overflow: hidden;
      width: 340px;
      max-width: 100%;
  }

  .footer__input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      padding: 10px 14px;
      font-size: 12px;
      color: var(--footer-text);
      font-family: 'Barlow', sans-serif;
      min-width: 0;
  }

  .footer__input::placeholder {
      color: var(--footer-muted);
  }

  .footer__btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 16px;
      background: var(--footer-accent);
      border: none;
      cursor: pointer;
      font-size: 12px;
      font-weight: 600;
      font-family: 'Barlow', sans-serif;
      color: var(--footer-bg);
      white-space: nowrap;
      letter-spacing: 0.02em;
      transition: background 0.2s ease;
      flex-shrink: 0;
  }

  .footer__btn:hover {
      background: var(--footer-accent-hover);
  }

  /* ── Office ── */
  .footer__offices {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
  }

  .footer__office-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--footer-text);
      margin-bottom: 8px;
      letter-spacing: 0.02em;
  }

  .footer__office-addr {
      font-size: 11px;
      color: var(--footer-muted);
      line-height: 1.7;
  }

  /* ── Divider ── */
  .footer__divider {
      height: 1px;
      background: var(--footer-border);
      margin-bottom: 20px;
  }

  /* ── Nav ── */
  .footer__nav {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      list-style: none;
  }

  .footer__nav-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 500;
      color: var(--footer-muted);
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: color 0.2s ease;
  }

  .footer__nav-link:hover {
      color: var(--footer-text);
  }

  .footer__nav-link svg {
      opacity: 0.6;
      transition: opacity 0.2s ease;
  }

  .footer__nav-link:hover svg {
      opacity: 1;
  }

  /* ── Responsive ── */
  @media (max-width: 900px) {
      .footer__inner {
          padding: 32px 28px 24px;
      }

      .footer__middle {
          gap: 32px;
      }

      .footer__offices {
          gap: 32px;
      }
  }

  @media (max-width: 700px) {
      .footer__top {
          flex-wrap: wrap;
          gap: 24px;
      }

      .footer__middle {
          flex-direction: column;
          gap: 28px;
      }

      .footer__form {
          width: 100%;
      }

      .footer__subscribe {
          width: 100%;
      }

      .footer__offices {
          flex-direction: column;
          gap: 20px;
      }

      .footer__nav {
          gap: 16px;
      }
  }

  @media (max-width: 480px) {
      .footer__inner {
          padding: 28px 20px 20px;
      }

      .footer__top {
          gap: 16px;
      }

      .footer__social {
          flex-wrap: wrap;
      }

      .footer__nav {
          gap: 12px;
      }

      .footer__nav-link {
          font-size: 11px;
      }
  }

  /* footer */