*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --ink: #0d0f14;
      --surface: #f5f4f0;
      --white: #ffffff;
      --accent: #0063f7;
      --accent-soft: #0063f7;
      --accent-bg: #fff1ee;
      --mid: #6b6f7a;
      --border: #e2e1dc;
      --card-bg: #faf9f6;
      --shadow: 0 2px 20px rgba(13,15,20,.07);
      --shadow-lg: 0 12px 48px rgba(13,15,20,.12);
      --radius: 16px;
      --radius-sm: 10px;
      --transition: .3s cubic-bezier(.4,0,.2,1);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--ink);
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      gap: 24px;
    }
    .logo img { height: 38px; display: block; }
    nav ul { display: flex; list-style: none; gap: 4px; }
    nav ul li a {
      display: block;
      padding: 7px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--mid);
      text-decoration: none;
      border-radius: 8px;
      transition: color var(--transition), background var(--transition);
    }
    nav ul li a:hover { color: var(--accent); background: var(--accent-bg); }
    .nav-cta { background: var(--accent) !important; color: var(--white) !important; border-radius: 8px !important; }
    .nav-cta:hover { background: var(--accent-soft) !important; color: var(--white) !important; }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--ink);
      border-radius: 2px;
      transition: var(--transition);
    }
    .hero {
      background: var(--surface);
      padding: 96px 0 80px;
      overflow: hidden;
      position: relative;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 480px; height: 480px;
      background: radial-gradient(circle, rgba(232,67,26,.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--accent-bg);
      color: var(--accent);
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }
    .hero h1 {
      font-family: 'Inter', sans-serif;
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 20px;
	      text-transform: uppercase;
    }
    .hero h1 em { color: var(--accent); font-style: normal; }
    .hero p { color: var(--mid); font-size: 17px; font-weight: 300; margin-bottom: 16px; max-width: 480px; }
    .hero-actions { display: flex; gap: 14px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--accent);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--radius-sm);
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
      box-shadow: 0 4px 20px rgba(232,67,26,.30);
    }
    .btn:hover { background: var(--accent-soft); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,67,26,.38); }
    .btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); box-shadow: none; }
    .btn-ghost:hover { background: var(--surface); color: var(--accent); border-color: var(--accent); box-shadow: none; transform: translateY(-2px); }
    .hero-stats { display: flex; gap: 32px; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
    .stat-item strong { display: block; font-family: 'Inter', sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--accent); line-height: 1; }
    .stat-item span { font-size: 13px; color: var(--mid); margin-top: 4px; display: block; }
    .hero-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
    .hero-image img { width: 100%; display: block; }
    section { padding: 88px 0; }
    section.alt { background: var(--surface); }
    .section-head { text-align: center; margin-bottom: 56px; }
    .section-label {
      display: inline-block;
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .section-head h2 { font-family: 'Inter', sans-serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--ink); margin-bottom: 14px; text-transform: uppercase; }
    .section-head p { color: var(--mid); max-width: 540px; margin: 0 auto; font-size: 17px; font-weight: 300; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .feature-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: transform var(--transition), box-shadow var(--transition); }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .feat-icon { width: 52px; height: 52px; background: var(--accent-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 20px; margin-bottom: 20px; }
    .feature-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
    .feature-card p { color: var(--mid); font-size: 15px; }
    .about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .about-strip img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
    .about-text h2 { font-family: 'Inter', sans-serif; font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--ink); margin-bottom: 18px; text-transform: uppercase; }
    .about-text p { color: var(--mid); font-weight: 300; margin-bottom: 16px; font-size: 16px; }
    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
    .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .step-num { width: 52px; height: 52px; background: var(--ink); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 800; margin: 0 auto 20px; }
    .step-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
    .step-card p { color: var(--mid); font-size: 15px; }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
    .pricing-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: transform var(--transition), box-shadow var(--transition); }
    .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .pricing-card.popular { border-color: var(--accent); background: var(--ink); color: var(--white); }
    .pop-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
    .pricing-card h3 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); margin-bottom: 12px; }
    .pricing-card.popular h3 { color: rgba(255,255,255,.55); }
    .price-val { font-family: 'Inter', sans-serif; font-size: 3rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 4px; }
    .pricing-card.popular .price-val { color: var(--white); }
    .price-per { font-size: 13px; color: var(--mid); margin-bottom: 28px; }
    .pricing-card.popular .price-per { color: rgba(255,255,255,.5); }
    .pricing-card hr { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
    .pricing-card.popular hr { border-color: rgba(255,255,255,.12); }
    .feat-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
    .feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--mid); }
    .pricing-card.popular .feat-list li { color: rgba(255,255,255,.7); }
    .feat-list li i { color: var(--accent); font-size: 13px; margin-top: 4px; flex-shrink: 0; }
    .btn-full { width: 100%; justify-content: center; }
    .btn-white { background: var(--white); color: var(--ink); box-shadow: none; }
    .btn-white:hover { background: var(--surface); color: var(--accent); transform: translateY(-2px); box-shadow: none; }
    .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
    .faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; background: none; border: none; padding: 20px 24px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); cursor: pointer; text-align: left; transition: background var(--transition); }
    .faq-q:hover { background: var(--surface); }
    .faq-q i { color: var(--accent); font-size: 14px; flex-shrink: 0; transition: transform var(--transition); }
    .faq-q.open { background: var(--accent-bg); }
    .faq-q.open i { transform: rotate(180deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .2s ease; }
    .faq-a.open { max-height: 300px; }
    .faq-a-inner { padding: 0 24px 20px; font-size: 15px; color: var(--mid); font-weight: 300; }
    .info-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .info-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; }
    .info-block h2 { font-family: 'Inter', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--ink); margin-bottom: 14px; }
    .info-block p { color: var(--mid); font-size: 15px; font-weight: 300; }
    .reviews-section { background: #0d1b2a; }
    .reviews-section .section-head h2 { color: #fff; }
    .reviews-section .section-head p { color: rgba(255,255,255,.55); }
    .reviews-subtitle { font-size: 15px; color: rgba(255,255,255,.6); text-align: center; margin-bottom: 48px; margin-top: -36px; }
    .reviews-subtitle span { color: #25D366; font-weight: 700; }
    .reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
    .review-img-card {
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid rgba(255,255,255,.08);
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
      transition: transform var(--transition), box-shadow var(--transition);
      background: #1a1a2e;
    }
    .review-img-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(0,0,0,.6); }
    .review-img-card img {
      width: 100%;
      display: block;
      object-fit: cover;
    }
    @media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ── FOOTER ── */
    footer { background: var(--ink); padding: 40px 0; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    footer p { color: rgba(255,255,255,.4); font-size: 14px; }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { color: rgba(255,255,255,.4); font-size: 14px; text-decoration: none; transition: color var(--transition); }
    .footer-links a:hover { color: var(--accent); }

    /* ── LIVE SUPPORT BAR ── */
    .live-support-bar {
      background: #141c2b;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: 20px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }
    .live-support-left { display: flex; align-items: center; gap: 16px; }
    .live-support-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, #3b82f6, #6366f1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #fff;
      flex-shrink: 0;
    }
    .live-support-text strong { display: block; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 3px; }
    .live-support-text span { font-size: 13px; color: rgba(255,255,255,.45); }
    .live-support-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-support {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .btn-support-wa { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.25); }
    .btn-support-wa:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
    .btn-support-tg { background: #229ED9; color: #fff; box-shadow: 0 4px 16px rgba(34,158,217,.25); }
    .btn-support-tg:hover { background: #1a8fc4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,158,217,.35); }
    @media (max-width: 600px) {
      .live-support-bar { flex-direction: column; align-items: flex-start; padding: 20px; }
      .live-support-btns { width: 100%; }
      .btn-support { flex: 1; justify-content: center; }
    }

    /* ── SEO SECTION ── */
    .seo-section {
      background: var(--white);
      padding: 80px 0;
      border-top: 1px solid var(--border);
    }

    .seo-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 56px;
    }

    .seo-block h2 {
      font-family: 'Inter', sans-serif;
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.3;
	  text-transform: uppercase;
    }

    .seo-block p {
      font-size: 15px;
      color: var(--mid);
      font-weight: 300;
      line-height: 1.75;
    }

    @media (max-width: 720px) {
      .seo-grid { grid-template-columns: 1fr; gap: 32px; }
    }

    /* ── ENTRANCE ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp .6s ease both; }
    .fd-1 { animation-delay: .1s; }
    .fd-2 { animation-delay: .2s; }
    .fd-3 { animation-delay: .3s; }
    .fd-4 { animation-delay: .4s; }

    @media (max-width: 900px) {
      nav ul { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px 18px; gap: 4px; z-index: 99; box-shadow: 0 8px 24px rgba(13,15,20,.07); }
      nav ul.open { display: flex; }
      nav { position: relative; }
      .hamburger { display: flex; }
      .hero { padding: 60px 0 52px; }
      .hero-inner { grid-template-columns: 1fr; gap: 36px; }
      .hero-image { display: block; max-width: 500px; width: 100%; margin: 0 auto; }
      .hero-image img { width: 100%; height: auto; }
      .hero p { max-width: 100%; }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid    { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
      .about-strip { grid-template-columns: 1fr; gap: 32px; }
      .about-strip img { max-width: 500px; width: 100%; margin: 0 auto; height: auto; }
      .info-strip { grid-template-columns: 1fr; }
      section { padding: 64px 0; }
    }
    @media (max-width: 600px) {
      .features-grid { grid-template-columns: 1fr; }
      .steps-grid    { grid-template-columns: 1fr; }
      .pricing-grid  { grid-template-columns: 1fr; }
      .hero { padding: 48px 0 40px; }
      .hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { justify-content: center; }
      section { padding: 52px 0; }
      .btn { padding: 12px 22px; font-size: 13px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 360px) {
      .container { padding: 0 14px; }
      .hero h1 { font-size: 1.55rem; }
    }