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

:root {
    --primary-color: #126c91;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --blue-light: #e3f2fd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.header {
    background-color: var(--primary-color);
    padding: 20px 0;
    z-index: 100;
}

.sticky-header {
    position: sticky;
    top: 0;
    box-shadow: var(--shadow);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 150px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

/* BUTTONS */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: #0d4a68;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
}

.btn-wide {
    width: 100%;
    display: block;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* TYPOGRAPHY */
.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

.text-lg {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    padding: 80px 0 64px;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-image {
    border-radius: 12px;
    overflow: hidden;
    
    
}

.image-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PAIN SECTION */
.pain {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 24px;
}

.pain-content {
    max-width: 800px;
    margin: 0 auto;
}

.pain .section-title {
    color: var(--white);
    text-align: center;
}

.pain .text-lg {
    color: rgba(255, 255, 255, 0.9);
}

.pain-quote {
    border-left: 4px solid var(--white);
    padding: 24px;
    margin-top: 32px;
}

.quote-text {
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
}

/* SOLUTION SECTION */
.solution {
    background-color: var(--light-gray);
    padding: 80px 24px;
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
}

.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 0;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: 700;
}

/* WHY VERTER SECTION */
.why-verter {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 24px;
}

.why-verter .section-title {
    color: var(--white);
    text-align: center;
}

.why-verter-items {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.why-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.why-item.reversed {
    direction: rtl;
}

.why-item.reversed > * {
    direction: ltr;
}

.why-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 350px;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.why-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* BENEFITS SECTION */
.benefits {
    background-color: var(--white);
    padding: 80px 24px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.benefit-card {
    background-color: var(--light-gray);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* HOW IT WORKS SECTION */
.how-it-works {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 24px;
}

.how-it-works .section-title {
    color: var(--white);
    text-align: center;
}

.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.step-card {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 32px;
    border-radius: 8px;
    border: 2px solid #1e7aa8;
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 16px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

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

/* SOCIAL PROOF SECTION */
.social-proof {
    background-color: var(--white);
    padding: 80px 24px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background-color: var(--light-gray);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.author-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--text-light);
}

/* FINAL CTA SECTION */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e7aa8 100%);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.final-cta .section-title {
    color: var(--white);
}

.final-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* FAQ SECTION */
.faq {
    background-color: var(--light-gray);
    padding: 80px 24px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-toggle {
    width: 100%;
    padding: 24px;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background-color: var(--light-gray);
}

.faq-toggle.active {
    background-color: var(--light-gray);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(18, 108, 145, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.8;
}

/* QUALIFICATION FORM SECTION */
.qualification-form {
    background-color: var(--white);
    padding: 80px 24px;
}

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

.form-text h2 {
    margin-bottom: 24px;
}

.form-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-input {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(18, 108, 145, 0.1);
}

.form-radios {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
}

.radio-label input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

/* FOOTER */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 48px 24px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-grid,
    .form-grid,
    .why-item {
        grid-template-columns: 1fr;
    }

    .hero-title,
    .section-title {
        font-size: 32px;
    }

    .hero-image,
    .why-image {
        height: 300px;
    }

    .why-item.reversed {
        direction: ltr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .testimonials-grid,
    .steps-grid,
    .checklist {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .section-title {
        font-size: 24px;
    }

    .hero-subtitle,
    .section-subtitle {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .header {
        padding: 16px 0;
    }

    .logo-img {
        width: 150px;
    }

    .logo-text {
        font-size: 16px;
    }
}
