:root {
    --c-primary: #1a5c3a;
    --c-primary-light: #238c55;
    --c-primary-dark: #0f3d26;
    --c-accent: #e8a838;
    --c-accent-light: #f5c96a;
    --c-bg: #fafaf7;
    --c-white: #ffffff;
    --c-text: #2c2c2c;
    --c-text-light: #5a5a5a;
    --c-text-muted: #8a8a8a;
    --c-border: #e5e5e0;
    --c-section-alt: #f3f1ec;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --max-w: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.top-bar {
    background: var(--c-primary-dark);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
    letter-spacing: 0.3px;
}

.top-bar span {
    margin: 0 12px;
}

.top-bar .stars {
    color: var(--c-accent);
}

.site-header {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 52px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-nav a {
    color: var(--c-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--c-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

form .btn-primary,
.btn-primary {
    background: var(--c-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(26, 92, 58, 0.3);
}

form .btn-primary:hover,
.btn-primary:hover {
    background: var(--c-primary-light);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 92, 58, 0.35);
}

form .btn-accent,
.btn-accent {
    background: var(--c-accent);
    color: var(--c-primary-dark);
    box-shadow: 0 4px 14px rgba(232, 168, 56, 0.3);
}

.btn-accent:hover {
    background: var(--c-accent-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
}

.btn-outline:hover {
    background: var(--c-primary);
    color: white;
}

.hero {
    padding: 80px 0 60px;
    background: linear-gradient(170deg, var(--c-white) 0%, #f0f7f3 50%, var(--c-section-alt) 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 92, 58, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 92, 58, 0.08);
    color: var(--c-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--c-text);
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--c-primary);
}

.hero-text {
    font-size: 18px;
    color: var(--c-text-light);
    margin-bottom: 12px;
    max-width: 520px;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--c-border);
}

.hero-stat strong {
    display: block;
    font-size: 28px;
    font-family: var(--font-display);
    color: var(--c-primary);
}

.hero-stat span {
    font-size: 13px;
    color: var(--c-text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 36px;
    max-width: 420px;
    border: 1px solid var(--c-border);
}

.hero-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--c-text);
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--c-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--c-bg);
    transition: border-color 0.2s;
    color: var(--c-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--c-primary);
    box-shadow: 0 0 0 3px rgba(26, 92, 58, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

form .form-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    font-size: 16px;
    padding: 14px;
    border-radius: 50px;
}

.form-note {
    margin: 0 !important;
}

.wpcf7 textarea {
    min-height: 80px;
    resize: vertical;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--c-text-muted);
    margin-top: 12px;
}

.trust-bar {
    padding: 40px 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item .platform {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 4px;
}

.trust-item .rating {
    font-size: 13px;
    color: var(--c-text-muted);
}

.trust-item .stars-row {
    color: var(--c-accent);
    font-size: 16px;
}

section {
    padding: 80px 0;
}

section.alt {
    background: var(--c-section-alt);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--c-text);
}

.section-subtitle {
    font-size: 17px;
    color: var(--c-text-light);
    max-width: 640px;
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--c-border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(26, 92, 58, 0.2);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 92, 58, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--c-primary);
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--c-text-light);
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--c-text-light);
}

.about-highlight {
    background: linear-gradient(135deg, rgba(26, 92, 58, 0.06), rgba(232, 168, 56, 0.06));
    border-left: 4px solid var(--c-primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--c-text);
    font-size: 15px;
}

.steps-list {
    counter-reset: step;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.step-num {
    counter-increment: step;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--c-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--c-text-light);
}

.pricing-table {
    max-width: 760px;
    margin: 0 auto;
    background: var(--c-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 18px 28px;
    align-items: center;
    border-bottom: 1px solid var(--c-border);
    transition: background 0.2s;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(26, 92, 58, 0.02);
}

.pricing-head {
    background: var(--c-primary);
    color: #ffffff;
}

.pricing-head:hover {
    background: var(--c-primary);
}

.pricing-row .service {
    font-size: 15px;
    font-weight: 500;
}

.pricing-row .price {
    font-size: 15px;
    font-weight: 700;
    color: var(--c-primary);
    white-space: nowrap;
}

.pricing-head .service,
.pricing-head .price {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.pricing-note {
    text-align: center;
    font-size: 13px;
    color: var(--c-text-muted);
    margin-top: 20px;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.factor-chip {
    background: var(--c-white);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s;
}

.factor-chip:hover {
    border-color: var(--c-primary);
}

.factor-check {
    color: var(--c-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.factor-chip span {
    font-size: 14px;
    font-weight: 500;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.expert-card {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--c-border);
    transition: all 0.3s ease;
}

.expert-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.expert-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0 auto 16px;
}

.expert-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.expert-card .role {
    font-size: 13px;
    color: var(--c-primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.expert-card p {
    font-size: 13px;
    color: var(--c-text-light);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.phase-card {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--c-border);
}

.phase-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--c-text);
}

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

.phase-list li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 15px;
    color: var(--c-text-light);
}

.phase-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--c-primary);
    font-weight: 700;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guarantee-card {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--c-border);
    transition: all 0.2s;
}

.guarantee-card:hover {
    box-shadow: var(--shadow-sm);
}

.guarantee-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.guarantee-card h4 {
    font-size: 14px;
    font-weight: 700;
}

.no-ai {
    padding: 60px 0;
    background: var(--c-primary-dark);
    color: #ffffff;
    text-align: center;
}

.no-ai h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
    color: #ffffff;
}

.no-ai p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.no-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    margin-top: 24px;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
}

.no-ai-badge .x-icon {
    width: 28px;
    height: 28px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    color: #ffffff;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.payment-steps .pay-step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.pay-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(26, 92, 58, 0.08);
    color: var(--c-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.pay-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.pay-step p {
    font-size: 14px;
    color: var(--c-text-light);
}

.payment-methods {
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--c-border);
}

.payment-methods h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.method-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.method-icon {
    padding: 10px 18px;
    border: 1px solid var(--c-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-light);
    background: var(--c-bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: var(--c-white);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s, color 0.2s;
}

.faq-question:hover {
    background: rgba(26, 92, 58, 0.04);
}

.faq-item.open .faq-question {
    background: var(--c-primary);
    color: #ffffff;
    border-radius: var(--radius) var(--radius) 0 0;
}

.faq-item.open .faq-question .faq-toggle {
    color: #ffffff;
}

.faq-toggle {
    font-size: 20px;
    color: var(--c-primary);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--c-text-light);
    line-height: 1.7;
}

.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: #ffffff;
    text-align: center;
}

.cta-final h2 {
    font-family: var(--font-display);
    font-size: 38px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-final p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-final .btn-accent {
    font-size: 17px;
    padding: 16px 40px;
}

.cta-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--c-text);
}

@media (max-width: 960px) {
    .hero-grid,
    .about-grid,
    .payment-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 30px;
    }

    .benefits-grid,
    .guarantees-grid,
    .experts-grid,
    .factors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-stats {
        gap: 24px;
    }

    .trust-grid {
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .benefits-grid,
    .guarantees-grid,
    .experts-grid,
    .factors-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 0 40px;
    }

    section {
        padding: 56px 0;
    }

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

    .cta-details {
        flex-direction: column;
        gap: 12px;
    }

    .top-bar {
        display: flex;
        flex-direction: column;
        line-height: 1;
    }
    }
}
