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

        :root {
            --primary: #35147d;
            --primary-dark: #24104f;
            --secondary: #54209c;
            --red: #e11d48;
            --red-dark: #be123c;
            --light-red: #fff1f3;
            --gold: #f5b900;
            --bg: #f8f5ff;
            --white: #ffffff;
            --text: #27202f;
            --border: #e6dcf8;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
        }

        .page-wrapper {
            width: 100%;
            overflow: hidden;
        }

        .container {
            width: min(1280px, calc(100% - 32px));
            margin: auto;
        }

        /* ================= HERO ================= */

        .hero-section {
            background: radial-gradient(circle at 15% 20%, rgba(225, 29, 72, .35), transparent 30%), radial-gradient(circle at 85% 15%, rgba(245, 185, 0, .15), transparent 25%), linear-gradient(135deg, var(--red), var(--red), var(--red));
            padding: 40px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before,
        .hero-section::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .12);
        }

        .hero-section::before {
            width: 420px;
            height: 420px;
            top: -220px;
            right: -130px;
        }

        .hero-section::after {
            width: 350px;
            height: 350px;
            bottom: -200px;
            left: -100px;
        }

        .hero-content {
            max-width: 1200px;
            margin: auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .12);
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, .2);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .7px;
            margin-bottom: 22px;
            backdrop-filter: blur(5px);
        }

        .hero-badge::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 0 10px var(--red);
        }

        .hero-content h1 {
            color: var(--white);
            font-size: clamp(36px, 5vw, 62px);
            line-height: 1.18;
            margin-bottom: 22px;
        }

        .hero-content h1 span {
            color: var(--primary-dark);
        }

        .hero-content p {
            color: #000;
            font-size: 18px;
            margin: auto;
        }

        .hero-box {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
        }

        .hero-points {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 30px;
        }

        .hero-point {
            padding: 8px 16px;
            border-radius: 30px;
            color: #000;
            background: rgba(255, 255, 255, .08);
            border: 1px solid #000;
            font-size: 14px;
        }

        .hero-point strong {
            color: #7102ff;
        }

        /* ================= MAIN ================= */

        .content-section {
            padding: 20px 0;
        }

        .content-card {
            background: var(--white);
            border-radius: 20px;
            padding: 45px;
            margin-bottom: 35px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 35px rgba(53, 20, 125, .08);
            position: relative;
        }

        .content-card h2 {
            color: var(--primary);
            font-size: clamp(25px, 3vw, 34px);
            line-height: 1.3;
            margin-bottom: 22px;
            padding-bottom: 14px;
            border-bottom: 3px solid var(--red);
        }

        .content-card h3 {
            color: var(--primary);
            font-size: 22px;
            line-height: 1.4;
            margin: 30px 0 14px;
        }

        .content-card h4 {
            color: var(--secondary);
            font-size: 18px;
            margin: 24px 0 10px;
        }

        p {
            margin-bottom: 18px;
        }

        /* ================= FEATURE LIST ================= */

        .feature-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-top: 25px;
        }

        .feature-item {
            background: #faf8ff;
            border: 1px solid var(--border);
            border-left: 5px solid var(--red);
            padding: 22px;
            border-radius: 12px;
            transition: .25s ease;
        }

        .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(225, 29, 72, .08);
        }

        .feature-item strong {
            color: var(--primary);
            display: block;
            font-size: 17px;
            margin-bottom: 7px;
        }

        .content-card .step-numbered {
            list-style: none;
            padding-left: 0;
            counter-reset: step;
        }

        .content-card .step-numbered li {
            counter-increment: step;
            position: relative;
            padding-left: 85px;
        }

        .content-card .step-numbered li::before {
            content: "Step " counter(step) ":";
            position: absolute;
            left: 9px;
            top: 13px;
            font-weight: 700;
            width: 61px;
            height: 38px;
            border-radius: 6px;
        }

        /* ================= STEPS ================= */

        .steps-list {
            counter-reset: step-counter;
            list-style: none;
            margin-top: 20px;
        }

        .steps-list li {
            counter-increment: step-counter;
            position: relative;
            padding: 18px 20px 18px 78px;
            background: #faf8ff;
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 14px;
        }

        .steps-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 18px;
            top: 18px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--red);
            color: var(--white);
            font-weight: 700;
            border-radius: 50%;
            box-shadow: 0 5px 14px rgba(225, 29, 72, .22);
        }

        .download-note {
            background: var(--light-red);
            border-left: 4px solid var(--red);
            padding: 18px 20px;
            border-radius: 10px;
            margin: 20px 0;
            font-weight: 600;
            color: var(--primary);
        }

        /* ================= PLATFORM ================= */

        .platform-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-top: 25px;
        }

        .platform-item {
            padding: 24px;
            background: #faf8ff;
            border-radius: 14px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .platform-item::before {
            content: "";
            position: absolute;
            width: 5px;
            height: 100%;
            left: 0;
            top: 0;
            background: var(--red);
        }

        .platform-item .p-strong {
            margin: 0 0 10px;
            color: var(--primary);
            font-size: 17px;
            font-weight: 700;
        }

        .platform-item p {
            margin: 0;
        }

        /* ================= TIPS ================= */

        .tips-box {
            border-radius: 20px;
            padding: 35px;
            margin-top: 25px;
            background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.22), transparent 28%),
                radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.12), transparent 30%),
                radial-gradient(circle at 80% 10%, rgba(245, 185, 0, 0.14), transparent 25%),
                linear-gradient(135deg, #b31338 0%, var(--red) 45%, #8f1230 100%);
        }

        .tips-list {
            list-style: none;
        }

        .tips-list li {
            position: relative;
            color: var(--white);
            padding: 15px 15px 15px 38px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .tips-list li:last-child {
            border-bottom: 0;
        }

        .tips-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 15px;
            width: 25px;
            height: 25px;
            background: var(--red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 13px;
            font-weight: bold;
        }

        .tips-box strong {
            color: var(--gold);
        }

        /* ================= PROBLEMS ================= */

        .problem-box {
            border: 1px solid var(--border);
            background: #faf8ff;
            padding: 25px;
            border-radius: 14px;
            margin-bottom: 18px;
            border-left: 5px solid var(--red);
        }

        .problem-box h3 {
            margin-top: 0;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .problem-box p {
            margin-bottom: 0;
        }

        /* ================= CONCLUSION ================= */

        .conclusion-section {
            padding: 65px 0;
            background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.22), transparent 28%),
                radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.12), transparent 30%),
                radial-gradient(circle at 80% 10%, rgba(245, 185, 0, 0.14), transparent 25%),
                linear-gradient(135deg, #b31338 0%, var(--red) 45%, #8f1230 100%);
        }

        .conclusion-box {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(245, 185, 0, .35);
            padding: 45px;
            border-radius: 20px;
        }

        .conclusion-box h2 {
            color: var(--gold);
            margin-bottom: 20px;
        }

        .conclusion-box p {
            color: var(--white);
            margin-bottom: 18px;
        }

        /* ================= FAQ ================= */

        .faq-section {
            padding: 75px 0;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-heading h2 {
            color: var(--primary);
            font-size: clamp(28px, 4vw, 42px);
        }

        .section-heading h2 span {
            color: var(--red);
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 14px;
            margin-bottom: 15px;
            box-shadow: 0 6px 20px rgba(53, 20, 125, .05);
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            border: 0;
            background: transparent;
            padding: 22px 60px 22px 24px;
            text-align: left;
            color: var(--primary);
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            position: relative;
            font-family: inherit;
        }

        .faq-question::after {
            content: "+";
            position: absolute;
            right: 22px;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--light-red);
            color: var(--red);
            font-size: 23px;
            transition: .3s ease;
        }

        .faq-item.active .faq-question::after {
            content: "−";
            background: var(--red);
            color: #fff;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 22px;
        }

        .faq-answer p {
            margin-bottom: 0;
        }

        /* =========================
   FOOTER
========================= */

        .site-footer {
            padding: 65px 0 0;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.22), transparent 28%),
                radial-gradient(circle at 85% 85%, rgba(255, 255, 255, 0.12), transparent 30%),
                radial-gradient(circle at 80% 10%, rgba(245, 185, 0, 0.14), transparent 25%),
                linear-gradient(135deg, #b31338 0%, var(--red) 45%, #8f1230 100%);
        }

        .site-footer::before {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            top: -180px;
            right: -100px;
        }

        .site-footer::after {
            content: "";
            position: absolute;
            width: 250px;
            height: 250px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            bottom: -150px;
            left: -80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr;
            gap: 55px;
            position: relative;
            z-index: 1;
            padding-bottom: 50px;
        }

        .footer-brand h2 {
            font-size: 32px;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .footer-brand h2 span {
            color: #e63946;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.75);
            max-width: 420px;
            margin: 0;
            line-height: 1.8;
        }

        .footer-links h3 {
            color: #ffffff;
            font-size: 19px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: "";
            position: absolute;
            width: 45px;
            height: 3px;
            background: #18110f;
            left: 0;
            bottom: 0;
            border-radius: 10px;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.72);
            text-decoration: none;
            transition: 0.3s ease;
            position: relative;
            padding-left: 15px;
        }

        .footer-links a::before {
            content: "›";
            position: absolute;
            left: 0;
            color: #e63946;
            font-size: 20px;
            top: -3px;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 20px;
        }

        .footer-bottom {
            border-top: 1px solid #fff;
            padding: 20px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .footer-bottom p {
            margin: 0;
            color: #fff;
            font-size: 14px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #e63946;
        }

        /* Mobile */

        @media (max-width: 768px) {

            .site-footer {
                padding-top: 50px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
                padding-bottom: 35px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

        /* ================= RESPONSIVE ================= */

        @media (max-width: 768px) {

            .hero-section {
                padding: 70px 0;
            }

            .hero-content p {
                font-size: 16px;
            }

            .content-section,
            .faq-section {
                padding: 45px 0;
            }

            .content-card {
                padding: 28px 20px;
                border-radius: 15px;
            }

            .feature-list,
            .platform-grid {
                grid-template-columns: 1fr;
            }

            .steps-list li {
                padding-left: 68px;
            }

            .steps-list li::before {
                left: 14px;
                width: 36px;
                height: 36px;
            }

            .tips-box,
            .conclusion-box {
                padding: 28px 20px;
            }

            .faq-question {
                font-size: 16px;
                padding-left: 18px;
                padding-right: 55px;
            }

            .faq-answer-inner {
                padding: 0 18px 20px;
            }
        }
footer#colophon {
    display: none;
}