    :root {
      --blue:      #1A3FBF;
      --blue-dark: #0f2a8a;
      --blue-light:#e8eeff;
      --yellow:    #F5BC1C;
      --dark:      #0d1117;
      --muted:     #6b7280;
      --border:    #e5e7eb;
      --bg-light:  #f7f8fc;

    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--dark); background: #fff; overflow-x: hidden; }
    h1,h2,h3,h4,h5 { font-family: 'Inter', sans-serif; }

    /* ── BUTTONS ─────────────────────────── */
    .btn-yellow {
      background: var(--yellow); color: var(--dark); border: none;
      border-radius: 100px; font-family: 'Inter', sans-serif; font-weight: 700;
      padding: 14px 32px; font-size: .95rem; display: inline-block;
      text-decoration: none; transition: transform .2s, box-shadow .2s; cursor: pointer;
    }
    .btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(245,188,28,.4); color: var(--dark); }
    .btn-blue {
      background: var(--blue); color: #fff; border: none;
      border-radius: 100px; font-family: 'Inter', sans-serif; font-weight: 700;
      padding: 14px 32px; font-size: .95rem; display: inline-block;
      text-decoration: none; transition: transform .2s, box-shadow .2s; cursor: pointer;
    }
    .btn-blue:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,63,191,.35); color: #fff; }
    .btn-outline-white {
      background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6);
      border-radius: 100px; font-family: 'Inter', sans-serif; font-weight: 600;
      padding: 12px 28px; font-size: .9rem; display: inline-flex; align-items: center;
      gap: 8px; text-decoration: none; transition: background .2s, border-color .2s;
    }
    .btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

    /* ── NAVBAR ──────────────────────────── */
    .navbar { background: #fff; border-bottom: 1px solid var(--border); padding: 20px 0; position: sticky; top: 0; z-index: 1000; }
    .navbar-brand { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.45rem; color: var(--dark) !important; display: flex; align-items: center; gap: 10px; }
    .brand-icon { width: 44px; height: 44px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.1rem; }
    .nav-link { font-weight: 500; color: var(--dark) !important; padding: 8px 16px !important; font-size: .95rem; transition: color .2s; }
    .nav-link:hover { color: var(--blue) !important; }

    /* ── HERO ────────────────────────────── */
    .hero {
      background: linear-gradient(130deg, #f0f4ff 0%, #dce5ff 55%, #c5d2ff 100%);
      min-height: 100vh; display: flex; align-items: center;
      padding: 100px 0 90px; position: relative; overflow: hidden;
    }
    .hero::after {
      content: ''; position: absolute; right: -120px; top: -120px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(26,63,191,.12) 0%, transparent 68%);
      border-radius: 50%; pointer-events: none;
    }
    .hero-title { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; line-height: 1.12; color: var(--dark); }
    .hero-title .blue { color: var(--blue); }
    .hero-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.8; max-width: 460px; margin: 1.6rem 0 2.4rem; }
    .hero-kpis { display: flex; align-items: center; gap: 44px; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,.1); }
    .kpi-num { font-family: 'Inter', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
    .kpi-label { font-size: .82rem; color: var(--muted); font-weight: 500; margin-top: 5px; }
    .kpi-divider { width: 1px; height: 55px; background: rgba(0,0,0,.15); }

    .hero-right { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; }
    .hero-card {
      background: var(--blue); border-radius: 26px; padding: 40px 42px;
      color: #fff; width: 340px; position: relative; z-index: 3;
      box-shadow: 0 30px 80px rgba(26,63,191,.45);
    }
    .hero-card p { font-size: 1.05rem; font-weight: 500; line-height: 1.65; margin-bottom: 1.8rem; }
    .ftags-wrap { position: absolute; inset: 0; pointer-events: none; }
    .ftag {
      position: absolute; background: #fff; border-radius: 14px; padding: 11px 22px;
      font-size: .82rem; font-weight: 600; box-shadow: 0 6px 24px rgba(0,0,0,.13);
      display: flex; align-items: center; gap: 9px; white-space: nowrap;
      animation: bobble 3s ease-in-out infinite;
    }
    .ftag .dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .ftag:nth-child(1){ top:4%;   left:6%;   animation-delay:0s;   transform:rotate(-7deg); }
    .ftag:nth-child(2){ top:9%;   right:2%;  animation-delay:.6s;  transform:rotate(4deg);  }
    .ftag:nth-child(3){ top:37%;  left:-2%;  animation-delay:1.1s; transform:rotate(-4deg); }
    .ftag:nth-child(4){ top:52%;  right:3%;  animation-delay:1.7s; transform:rotate(5deg);  }
    .ftag:nth-child(5){ bottom:12%;left:10%; animation-delay:2.1s; transform:rotate(-3deg); }
    .ftag:nth-child(6){ bottom:3%; right:7%; animation-delay:.9s;  transform:rotate(3deg);  }
    @keyframes bobble { 0%,100%{translate:0 0;} 50%{translate:0 -10px;} }

    /* ── SECTION HELPERS ─────────────────── */
    .sec { padding: 120px 0; }
    .sec-sm { padding: 90px 0; }
    .section-title { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 800; text-align: center; margin-bottom: 4rem; color: var(--dark); }

    /* ── ABOUT ───────────────────────────── */
    .about-visual { background: #e8eeff; border-radius: 32px; padding: 70px; display: flex; align-items: center; justify-content: center; }
    .about-circle {
      width: 260px; height: 260px; background: var(--blue); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; color: #fff;
      font-size: 6rem; box-shadow: 0 24px 70px rgba(26,63,191,.35);
    }
    .about-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.2; }
    .about-title .blue { color: var(--blue); }
    .about-body { color: #4b5563; font-size: 1rem; line-height: 1.9; margin-top: 1.5rem; }

    /* ── FEATURES GRID ───────────────────── */
    .feat-card {
      border-radius: 26px; padding: 48px 42px; min-height: 300px;
      display: flex; flex-direction: column; justify-content: space-between;
      transition: transform .3s, box-shadow .3s;
    }
    .feat-card:hover { transform: translateY(-8px); }
    .feat-card.fc-blue { background: var(--blue); color: #fff; box-shadow: 0 12px 44px rgba(26,63,191,.22); }
    .feat-card.fc-gray { background: #eeeff4; color: var(--dark); border: 1.5px solid #e0e2eb; }
    .feat-emoji { font-size: 3.2rem; margin-bottom: 20px; }
    .feat-badge { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
    .badge-word { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .88rem; border-radius: 8px; padding: 5px 14px; }
    .fc-blue .badge-plain { color: rgba(255,255,255,.78); font-size: 1rem; font-weight: 700; }
    .fc-blue .badge-yellow { background: var(--yellow); color: var(--dark); }
    .fc-gray .badge-plain { color: var(--dark); font-size: 1rem; font-weight: 700; }
    .fc-gray .badge-blue { background: var(--blue); color: #fff; }
    .learn-link { display: flex; align-items: center; gap: 13px; font-weight: 600; font-size: .9rem; text-decoration: none; transition: gap .2s; margin-top: 12px; }
    .fc-blue .learn-link { color: #fff; }
    .fc-gray .learn-link { color: var(--dark); }
    .learn-link:hover { gap: 20px; }
    .arrow-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
    .fc-blue .learn-link .arrow-circle { background: rgba(255,255,255,.22); }

    /* ── STATS BANNER ─────────────────────── */
    .stats-banner {
      background: var(--blue); border-radius: 32px; padding: 72px 64px;
      color: #fff; position: relative; overflow: hidden; margin-top: 64px;
    }
    .stats-banner::before { content: ''; position: absolute; right: -70px; bottom: -70px; width: 340px; height: 340px; background: rgba(255,255,255,.06); border-radius: 50%; }
    .stats-banner .big-num { font-family: 'Inter', sans-serif; font-size: 4rem; font-weight: 800; line-height: 1; }
    .stats-banner .sub-label { font-size: .88rem; opacity: .75; margin-top: 6px; }
    .stats-banner .vdivider { width: 1px; height: 76px; background: rgba(255,255,255,.3); }
    .inner-glass { background: rgba(255,255,255,.13); border-radius: 22px; padding: 38px 36px; backdrop-filter: blur(8px); }
    .inner-glass p { font-size: 1.1rem; font-weight: 500; line-height: 1.55; margin-bottom: 1.8rem; }
    .yll { background: rgb(245 188 28); border-radius: 22px; padding: 38px 36px; backdrop-filter: blur(8px); }

    /* ── PROCESS ──────────────────────────── */
    .process-grid { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
    .proc-item { text-align: center; flex: 1; min-width: 160px; max-width: 230px; }
    .proc-circle {

      width: 230px; height: 230px; border-radius: 50%;
      background: linear-gradient(170deg, #f5bc1c 0%, #d4a41b 100%);

      display: flex; flex-direction: column; align-items: center; justify-content: center;
      margin: 0 auto 22px; box-shadow: 0 14px 44px rgba(26,63,191,.16);
      transition: transform .3s, box-shadow .3s;
    }
    .proc-circle:hover { transform: scale(1.08); box-shadow: 0 24px 64px rgba(26,63,191,.28); }
    .proc-circle .plabel { font-size: .78rem; font-weight: 600; color: #374151; margin-bottom: -4px; }
    .proc-circle .pnum { font-family: 'Inter', sans-serif; font-size: 5.5rem; font-weight: 800; color: var(--blue); line-height: 1; }
    .proc-item .pname { font-weight: 700; font-size: 1rem; color: var(--dark); }

    /* features hero card */
    .feat-hero-card {
      background: linear-gradient(130deg, #eef2ff 0%, #dce5ff 55%, #c5d2ff 100%);
      border-radius: 32px; padding: 72px 64px; margin-top: 80px; overflow: hidden;
    }
    .feat-hero-title { font-size: clamp(1.7rem, 2.5vw, 2.3rem); font-weight: 800; max-width: 420px; line-height: 1.25; }
    .feat-hero-tags { position: relative; height: 260px; }
    .fhtag {
      position: absolute; background: #fff; border-radius: 14px; padding: 11px 22px;
      font-size: .83rem; font-weight: 600; box-shadow: 0 6px 20px rgba(0,0,0,.1);
      display: flex; align-items: center; gap: 9px; white-space: nowrap;
    }
    .fhtag .dot { width: 9px; height: 9px; border-radius: 50%; }
    .fhtag:nth-child(1){ top:2%;   left:0%;   transform:rotate(-6deg); }
    .fhtag:nth-child(2){ top:10%;  right:5%;  transform:rotate(4deg);  }
    .fhtag:nth-child(3){ top:38%;  left:10%;  transform:rotate(2deg);  }
    .fhtag:nth-child(4){ top:52%;  right:10%; transform:rotate(-3deg); }
    .fhtag:nth-child(5){ bottom:8%;left:5%;   transform:rotate(-4deg); }
    .fhtag:nth-child(6){ bottom:2%;right:5%;  transform:rotate(3deg);  }

    /* ── TEMPLATES ────────────────────────── */
    .templates-sec { background: var(--blue); padding: 110px 0 0; text-align: center; color: #fff; }
    .templates-sec .section-title { color: #fff; }
    .slide-controls { display: flex; justify-content: center; gap: 16px; margin: 0 auto 56px; }
    .slide-btn { width: 54px; height: 54px; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; transition: background .2s, transform .2s; }
    .slide-btn:hover { transform: scale(1.08); }
    .slide-btn.out { background: rgba(255,255,255,.16); color: #fff; }
    .slide-btn.fill { background: var(--blue-dark); color: #fff; }
    .phone-wrap { width: 370px; margin: 48px auto 0; background: #1c2331; border-radius: 48px 48px 0 0; padding: 24px 20px 0; box-shadow: 0 -32px 80px rgba(0,0,0,.35); }
    .phone-screen { background: #fff; border-radius: 34px 34px 0 0; overflow: hidden; height: 400px; }
    .phone-topbar { background: #1a2030; padding: 12px 16px; font-size: .75rem; color: #fff; text-align: center; }
    .phone-content { background: #f97316; height: calc(100% - 38px); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; padding: 28px; }
    .phone-logo-wrap { width: 90px; height: 90px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-weight: 800; color: #f97316; font-size: 1rem; }

    /* ── TESTIMONIALS ─────────────────────── */
    .testi-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
    .testi-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; text-align: left; margin: 0; }
    .testi-btns { display: flex; gap: 12px; }
    .testi-btn { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--blue); background: transparent; color: var(--blue); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1rem; transition: all .2s; }
    .testi-btn.active, .testi-btn:hover { background: var(--blue); color: #fff; }
    .testi-card { border-radius: 26px; padding: 44px 40px; min-height: 300px; display: flex; flex-direction: column; justify-content: space-between; transition: transform .3s; }
    .testi-card:hover { transform: translateY(-6px); }
    .testi-card.tc-dark  { background: #1e2027; color: #fff; }
    .testi-card.tc-blue  { background: var(--blue); color: #fff; }
    .testi-card.tc-light { background: #f0f1f5; color: var(--dark); }
    .testi-quote { font-size: .95rem; line-height: 1.75; flex: 1; }
    .testi-author { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
    .testi-ava { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.25); flex-shrink: 0; }
    .tc-light .testi-ava { background: #d1d5db; }
    .testi-author span { font-weight: 600; font-size: .9rem; }

    /* ── PRICING ──────────────────────────── */
    .price-card { border-radius: 48px; padding: 56px 48px; display: flex; flex-direction: column; height: 100%; transition: transform .3s, box-shadow .3s; }
    .price-card:hover { transform: translateY(-8px); }
    .price-card.pc-blue   { background: var(--blue); color: #fff; box-shadow: 0 18px 56px rgba(26,63,191,.28); }
    .price-card.pc-yellow { background: var(--yellow); color: var(--dark); box-shadow: 0 18px 56px rgba(245,188,28,.38); }
    .pack-label { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: .7; margin-bottom: 14px; }
    .pack-price { font-family: 'Georgia', serif; font-style: italic; font-size: 3.6rem; font-weight: 900; line-height: 1; }
    .pack-price sub { font-size: 1rem; font-style: normal; font-family: 'DM Sans', sans-serif; font-weight: 400; vertical-align: baseline; }
    .pack-features { list-style: disc; padding-left: 22px; margin: 28px 0; font-size: .93rem; line-height: 2.2; flex: 1; }
    .btn-start { display: block; width: 100%; background: #fff; color: var(--dark); border: none; border-radius: 100px; padding: 16px; font-family: 'Inter', sans-serif; font-weight: 800; font-size: .95rem; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: transform .2s, box-shadow .2s; margin-top: auto; }
    .btn-start:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

    /* ── FAQ ──────────────────────────────── */
    .faq-item { border-radius: 100px; border: 1.5px solid var(--border); background: #fff; margin-bottom: 18px; cursor: pointer; overflow: hidden; transition: all .3s; }
    .faq-item.open { background: var(--blue); border-color: var(--blue); border-radius: 28px; }
    .faq-header { display: flex; align-items: center; padding: 26px 38px; gap: 24px; }
    .faq-num { font-family: 'Inter', sans-serif; font-size: 2rem; font-weight: 800; min-width: 58px; color: var(--dark); }
    .faq-item.open .faq-num { color: #fff; }
    .faq-q { flex: 1; font-weight: 600; font-size: 1rem; color: var(--dark); line-height: 1.4; }
    .faq-item.open .faq-q { color: #fff; }
    .faq-toggle { width: 40px; height: 40px; border-radius: 50%; border: 2px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; color: var(--dark); transition: transform .3s; }
    .faq-item.open .faq-toggle { color: #fff; transform: rotate(45deg); }
    .faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; color: rgba(255,255,255,.85); font-size: .93rem; line-height: 1.75; padding: 0 38px 0 120px; }
    .faq-item.open .faq-body { max-height: 200px; padding-bottom: 26px; }

    /* ── BRANDS ───────────────────────────── */
    .brands-sec { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .brand-name { font-family: 'Inter', sans-serif; font-size: 1.35rem; font-weight: 700; color: #b0b8c8; text-align: center; white-space: nowrap; transition: color .2s; }
    .brand-name:hover { color: var(--dark); }

    /* ── FOOTER ───────────────────────────── */
    .footer-wrap { padding: 90px 0 0; background: #fff; }
    .footer-box { border-radius: 28px 28px 0 0; border: 1.5px solid var(--border); overflow: hidden; }
    .footer-left { padding: 72px 64px; }
    .f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
    .f-logo-icon { width: 48px; height: 48px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.15rem; }
    .f-logo-text { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.5rem; }
    .f-desc { color: #6b7280; font-size: .93rem; line-height: 1.8; max-width: 370px; margin-bottom: 30px; }
    .f-links-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .95rem; text-decoration: underline; margin-bottom: 14px; }
    .f-links a { display: block; color: #374151; text-decoration: none; font-size: .92rem; line-height: 2.2; transition: color .2s; }
    .f-links a:hover { color: var(--blue); }
    .f-copy { color: #9ca3af; font-size: .8rem; margin-top: 40px; }
    .footer-right { background: var(--blue); padding: 72px 64px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
    .email-line { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,.4); color: #fff; font-size: 1.05rem; padding: 16px 0; outline: none; margin-bottom: 30px; }
    .email-line::placeholder { color: rgba(255,255,255,.55); }
    .social-block { margin-top: 44px; }
    .social-block h5 { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 2px; margin-bottom: 18px; }
    .social-row { display: flex; gap: 14px; }
    .soc-link { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; text-decoration: none; transition: background .2s, transform .2s; }
    .soc-link:hover { background: rgba(255,255,255,.3); color: #fff; transform: translateY(-3px); }

    /* ── RESPONSIVE ───────────────────────── */
    @media (max-width: 991px) {
      .hero-right { height: 340px; }
      .feat-hero-tags { display: none; }
      .proc-circle { width: 170px; height: 170px; }
      .proc-circle .pnum { font-size: 4rem; }
      .footer-left, .footer-right { padding: 52px 40px; }
    }
    @media (max-width: 767px) {
      .hero { padding: 80px 0 60px; }
      .hero-right { height: 280px; }
      .phone-wrap { width: 290px; }
      .price-card { padding: 44px 36px; }
      .stats-banner { padding: 48px 36px; }
    }

    