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

:root {
    --primary: #1a2b4c;
    --secondary: #e63946;
    --accent: #f4a261;
    --dark: #0d1b2a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

ul {
    list-style: none;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 43, 76, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

/* Hero Section */
.hero-funnel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-funnel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(244, 162, 97, 0.15) 0%, transparent 70%);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

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

.hero-text h1 span {
    color: var(--accent);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #c62936;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4);
}

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

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

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: #e59243;
    transform: translateY(-3px);
}

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

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

.btn-large {
    padding: 20px 50px;
    font-size: 1.15rem;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--light);
}

.problem-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.problem-card {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.problem-card p {
    color: var(--gray);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 600px;
}

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

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

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--white);
}

.story-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.story-block:nth-child(even) {
    flex-direction: row-reverse;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Insight Section */
.insight-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.insight-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.insight-main {
    flex: 2;
}

.insight-main h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.insight-main p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.insight-sidebar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
}

.insight-stat {
    text-align: center;
    margin-bottom: 25px;
}

.insight-stat:last-child {
    margin-bottom: 0;
}

.insight-stat .number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}

.insight-stat .label {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: var(--light);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
    opacity: 0.6;
}

.trust-logos img {
    height: 50px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.trust-logos img:hover {
    filter: grayscale(0%);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    flex: 1;
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

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

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

.service-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 80px;
    height: 80px;
    stroke: var(--accent);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

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

.service-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #c62936 100%);
    color: var(--white);
}

.benefits-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    flex: 1;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-item p {
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
}

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

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: var(--light);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

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

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

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-benefit svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
    flex-shrink: 0;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Urgency Banner */
.urgency-banner {
    background: var(--accent);
    color: var(--dark);
    padding: 15px;
    text-align: center;
    font-weight: 600;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 999;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-cta-text {
    font-weight: 600;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--accent);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.cookie-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

.cookie-accept:hover {
    background: #c62936;
}

.cookie-reject {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--gray);
}

.cookie-reject:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* About Page */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
}

.team-section {
    padding: 80px 0;
    background: var(--light);
}

.team-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

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

.team-card h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--gray);
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

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

/* Services Page */
.services-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 0;
}

.service-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-row-image {
    flex: 1;
}

.service-row-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-row-content {
    flex: 1;
}

.service-row-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-row-content p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.service-row-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
}

.service-row-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    color: var(--gray);
    margin-bottom: 10px;
    list-style: disc;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    text-align: center;
    padding: 20px;
}

.thanks-content {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary), #c62936);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .problem-grid,
    .testimonial-grid,
    .benefits-grid,
    .team-grid {
        flex-direction: column;
    }

    .story-block,
    .story-block:nth-child(even),
    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
    }

    .insight-content {
        flex-direction: column;
    }

    .form-wrapper,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .sticky-cta-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

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

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

    .btn-large {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .form-container {
        padding: 30px;
    }

    .thanks-content {
        padding: 40px 25px;
    }
}
