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

:root {
    --primary: #2980b9;
    --primary-dark: #1a5276;
    --secondary: #27ae60;
    --accent: #e67e22;
    --dark: #1a1a2e;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    border-color: var(--text);
}

.btn-hero {
    background: var(--white);
    color: var(--primary);
    padding: 18px 40px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
    background: var(--primary);
    color: var(--white);
}

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

.btn-service {
    background: var(--primary);
    color: var(--white);
    width: 100%;
    padding: 12px 24px;
}

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

.btn-urgency {
    background: var(--accent);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-urgency:hover {
    background: #d35400;
}

.btn-submit {
    background: var(--secondary);
    color: var(--white);
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #219a52;
}

.btn-sticky {
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    box-shadow: var(--shadow-lg);
}

.link-arrow {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

.section-tag {
    display: inline-block;
    background: rgba(41, 128, 185, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

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

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1200px;
}

.nav-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f7fa 100%);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%232980b9" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding-left: 5%;
}

.hero-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
}

.hero-image svg {
    width: 100%;
    height: auto;
}

.trust-bar {
    background: var(--primary);
    padding: 40px 24px;
}

.trust-items {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.trust-item {
    text-align: center;
    color: var(--white);
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.trust-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.problem-section {
    padding: 100px 24px;
    background: var(--white);
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.problem-card {
    flex: 1;
    min-width: 250px;
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.problem-icon {
    width: 50px;
    flex-shrink: 0;
}

.problem-icon svg {
    width: 100%;
    height: auto;
}

.problem-card p {
    font-size: 1.05rem;
    color: var(--text);
}

.story-section {
    padding: 100px 24px;
    background: var(--light);
}

.story-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-image {
    flex: 1;
    max-width: 400px;
}

.story-image svg {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: 1.1rem;
}

.insight-section {
    padding: 100px 24px;
    background: var(--dark);
    color: var(--white);
}

.insight-content {
    max-width: 1000px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.insight-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.insight-block {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.insight-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
}

.insight-block h3 {
    font-size: 1.3rem;
    margin: 10px 0 15px;
}

.insight-block p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.benefits-section {
    padding: 100px 24px;
    background: var(--white);
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.benefit-icon {
    width: 60px;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 100%;
    height: auto;
}

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

.benefit-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.testimonials-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.testimonials-section .container {
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 50px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
}

.testimonial-featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.testimonial-rating {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.services-preview {
    padding: 100px 24px;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.services-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-featured {
    border: 2px solid var(--primary);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.service-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    margin-bottom: 20px;
}

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

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

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

.urgency-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.urgency-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency-content > p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

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

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.process-section {
    padding: 100px 24px;
    background: var(--light);
}

.process-section .container {
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin-top: 30px;
    opacity: 0.3;
}

.form-section {
    padding: 100px 24px;
    background: var(--white);
}

.form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    background: var(--light);
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-info {
    flex: 1;
    min-width: 280px;
}

.form-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e1e8ed;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--primary);
}

.guarantee-section {
    padding: 80px 24px;
    background: var(--secondary);
}

.guarantee-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--white);
}

.guarantee-icon {
    width: 100px;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 100%;
    height: auto;
}

.guarantee-icon svg circle,
.guarantee-icon svg path {
    stroke: var(--white);
}

.guarantee-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.guarantee-content p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.7;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 24px 30px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 140px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 80%;
        max-width: 350px;
        margin-top: 40px;
    }

    .story-wrapper {
        flex-direction: column;
    }

    .story-image {
        max-width: 100%;
    }

    .guarantee-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .form-wrapper {
        padding: 40px 30px;
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: var(--shadow);
        display: none;
    }

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

    .trust-items {
        flex-direction: column;
        gap: 20px;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn-hero {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .insight-blocks,
    .benefits-grid {
        flex-direction: column;
    }

    .sticky-cta {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .btn-sticky {
        width: 100%;
        text-align: center;
    }
}
