:root {
    --primary: #1a56db;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --accent: #3b82f6;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

.header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.ad-disclosure {
    background: var(--warning);
    color: var(--secondary);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.2s;
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-section {
    background-color: #1e293b;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 24px;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--text-white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.2s;
}

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

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

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

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
    color: inherit;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: #94a3b8;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    flex: 1 1 320px;
    max-width: 380px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.15);
}

.card-image {
    height: 200px;
    background-color: #334155;
    overflow: hidden;
}

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

.card-body {
    padding: 24px;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.card-text {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.card-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.problem-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
}

.problem-content {
    flex: 1 1 400px;
}

.problem-content h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 24px;
}

.problem-content p {
    color: #94a3b8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.problem-list {
    list-style: none;
    margin: 24px 0;
}

.problem-list li {
    color: #cbd5e1;
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
}

.problem-list li::before {
    content: "!";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--warning);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.problem-image {
    flex: 1 1 350px;
    background-color: #334155;
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
}

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

.trust-section {
    background: var(--card-bg);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.trust-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 320px;
    max-width: 400px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-main);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.875rem;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.benefit-card {
    flex: 1 1 280px;
    padding: 32px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    padding: 80px 24px;
}

.cta-section h2 {
    font-size: 2.25rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-btn {
    background: var(--text-white);
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: scale(1.05);
}

.form-section {
    background: var(--bg-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit:hover {
    background: var(--primary-dark);
}

.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.footer-copy {
    color: #64748b;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #64748b;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-white);
}

.disclaimer {
    background: #1e293b;
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

.disclaimer p {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.7;
}

.page-header {
    background: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-header p {
    color: #94a3b8;
    font-size: 1.1rem;
}

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

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

.content-wrapper h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--text-main);
}

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

.content-wrapper ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: var(--text-light);
}

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

.about-content {
    flex: 1 1 400px;
}

.about-image {
    flex: 1 1 350px;
    background-color: #334155;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    background: var(--card-bg);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    align-items: center;
}

.service-info {
    flex: 1 1 300px;
}

.service-info h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

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

.service-price {
    flex: 0 0 auto;
    text-align: right;
}

.service-price .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .price-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.contact-item p {
    color: var(--text-light);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 24px;
}

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.thanks-content .btn-primary {
    margin-top: 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1 1 400px;
    color: var(--text-main);
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.cookie-accept {
    background: var(--primary);
    color: var(--text-white);
}

.cookie-reject {
    background: var(--bg-light);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.sticky-cta {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 99;
}

.sticky-cta .btn-primary {
    box-shadow: 0 4px 15px rgba(26, 86, 219, 0.4);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .form-container {
        padding: 24px;
    }

    .footer-grid {
        gap: 32px;
    }

    .sticky-cta {
        bottom: 80px;
        right: 16px;
    }

    .cookie-banner {
        padding: 16px;
    }
}
