:root {
    --primary: #6c63ff;
    --primary-dark: #554de0;
    --primary-light: #f0eeff;
    --accent: #8b84ff;
    --text: #1f2430;
    --text-soft: #5f6675;
    --bg: #f7f7fb;
    --white: #ffffff;
    --border: #e7e8f2;
    --shadow: 0 14px 35px rgba(41, 44, 88, 0.08);
    --shadow-soft: 0 8px 20px rgba(41, 44, 88, 0.05);
    --radius: 22px;
    --radius-sm: 16px;
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-sm);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 50px 0;
}

.section-title {
    margin: 0 0 12px;
    font-size: 2rem;
}

.section-subtitle {
    margin: 0 0 36px;
    color: var(--text-soft);
    max-width: 760px;
    font-size: 1.05rem;
}

.text-center {
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 232, 242, 0.9);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow-soft);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    font-size: 1.05rem;
}

.logo-text small {
    color: var(--text-soft);
    margin-top: 4px;
    font-size: 0.78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    box-shadow: 0 12px 24px rgba(108, 99, 255, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--white);
    color: var(--primary);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.hero {
    padding: 90px 0 70px;
    background:
        radial-gradient(circle at top left, rgba(108, 99, 255, 0.13), transparent 32%),
        radial-gradient(circle at bottom right, rgba(139, 132, 255, 0.16), transparent 30%),
        linear-gradient(180deg, #fbfbff 0%, #f3f4fb 100%);
}

.hero-grid,
.about-grid,
.contact-grid,
.footer-grid,
.feature-grid,
.offer-grid,
.review-grid,
.steps-grid,
.stats-grid {
    display: grid;
    gap: 24px;
}

.hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 40px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 16px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
}

.hero p {
    margin: 0 0 28px;
    color: var(--text-soft);
    max-width: 650px;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-points span {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 600;
}

.hero-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
}

.hero-info {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-info-box {
    background: #faf9ff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.hero-info-box strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.offer-grid {
    grid-template-columns: repeat(3, 1fr);
}

.review-grid {
    grid-template-columns: repeat(3, 1fr);
}

.steps-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.about-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 40px;
}

.contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.card,
.offer-card,
.review-card,
.step-card,
.stat-card,
.contact-card,
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.card,
.step-card,
.stat-card,
.contact-card,
.form-card {
    padding: 28px;
}

.card {
    transition: var(--transition);
}

.card:hover,
.offer-card:hover,
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 18px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 28px;
    padding: 42px;
    box-shadow: var(--shadow);
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
}

.offer-card {
    overflow: hidden;
    transition: var(--transition);
}

.offer-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}

.offer-content,
.review-content {
    padding: 24px;
}

.offer-content h3,
.review-content h3,
.step-card h3,
.card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.offer-content p,
.review-content p,
.step-card p,
.card p,
.about-text p,
.contact-card p {
    margin: 0;
    color: var(--text-soft);
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.offer-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-soft);
}

.offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
}

.stat-card {
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 8px;
}

.stars {
    color: #f4b400;
    margin-bottom: 12px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.review-author {
    margin-top: 16px;
    font-weight: 700;
}

.page-hero {
    padding: 70px 0 45px;
    background:
        radial-gradient(circle at top right, rgba(108, 99, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #fbfbff 0%, #f3f4fb 100%);
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: var(--text-soft);
}

.about-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.about-text h2 {
    margin-top: 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.about-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-soft);
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.cta-strip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta-strip h2 {
    margin: 0 0 8px;
}

.cta-strip p {
    margin: 0;
    color: var(--text-soft);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.contact-list li {
    margin-bottom: 14px;
    color: var(--text-soft);
}

.contact-list strong {
    color: var(--text);
}

.notice-box {
    margin-top: 24px;
    background: var(--primary-light);
    border: 1px solid #dddafc;
    border-radius: 18px;
    padding: 18px 20px;
}

.notice-box strong {
    color: var(--primary);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-control {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fafaff;
    padding: 14px 16px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    color: var(--text);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-control:focus {
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.12);
}

.site-footer {
    margin-top: 80px;
    background: #1d2033;
    color: rgba(255, 255, 255, 0.88);
    padding: 60px 0 24px;
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
}

.site-footer h3,
.site-footer h4 {
    margin-top: 0;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    z-index: 2000;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.28);
    transition: var(--transition);
}

.whatsapp-button:hover {
    transform: scale(1.08);
}

@media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .footer-grid,
    .feature-grid,
    .offer-grid,
    .review-grid,
    .steps-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-info {
        grid-template-columns: repeat(3, 1fr);
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        justify-content: center;
    }
}

@media (max-width: 760px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .footer-grid,
    .feature-grid,
    .offer-grid,
    .review-grid,
    .steps-grid,
    .stats-grid,
    .hero-info {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
    }

    .header-actions .btn {
        width: 100%;
    }

    .main-nav {
        gap: 14px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}