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

:root {
    --primary: #1a3d5c;
    --secondary: #2d8b7a;
    --accent: #e67e22;
    --dark: #0f1c2e;
    --light: #f8f9fa;
    --text: #2c3e50;
    --muted: #7f8c8d;
    --white: #ffffff;
}

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

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

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 {
    background: var(--dark);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

.logo span {
    color: var(--accent);
}

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

.nav-links a {
    color: var(--light);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15,28,46,0.92) 0%, rgba(26,61,92,0.88) 100%), url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920') center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    max-width: 700px;
    padding: 60px 0;
}

.hero-badge {
    background: var(--accent);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    line-height: 1.2;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230,126,34,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.problem-text {
    flex: 1;
}

.problem-text h2 {
    font-size: 2.4rem;
    color: var(--primary);
    margin-bottom: 25px;
}

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

.problem-image {
    flex: 1;
}

.problem-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

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

.story-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.story-block {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1.2;
}

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

.story-content p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.story-visual {
    flex: 1;
}

.story-visual img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
}

.stat-item h4 {
    font-size: 3.5rem;
    color: var(--accent);
    font-weight: 800;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--white);
    margin-top: 10px;
}

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

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

.insight-header h2 {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.insight-header p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.insight-cards {
    display: flex;
    gap: 30px;
}

.insight-card {
    flex: 1;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.insight-card:hover {
    transform: translateY(-8px);
}

.insight-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.insight-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.insight-card h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
}

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

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

.testimonials-header h2 {
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 15px;
}

.testimonials-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h5 {
    color: var(--white);
    font-size: 1rem;
}

.author-info span {
    color: var(--accent);
    font-size: 0.9rem;
}

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

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

.services-header h2 {
    font-size: 2.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.services-header p {
    font-size: 1.15rem;
    color: var(--muted);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--light);
    border-radius: 15px;
    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.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

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

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.price span {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 400;
}

.btn-service {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

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

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

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

.benefits-header h2 {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 15px;
}

.benefits-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
}

.benefit-check {
    width: 35px;
    height: 35px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.benefit-text h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.7;
}

/* 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.4rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.form-info p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-feature svg {
    width: 22px;
    height: 22px;
    fill: var(--secondary);
}

.form-feature span {
    font-size: 1rem;
    color: var(--text);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    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;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    padding: 60px 0;
    background: var(--accent);
    text-align: center;
}

.urgency-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.urgency-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

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

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

.faq-header h2 {
    font-size: 2.4rem;
    color: var(--primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text);
    line-height: 1.8;
}

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

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

.footer-brand {
    flex: 1.5;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
}

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

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

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

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

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

.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;
    transition: color 0.3s;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
}

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

.sticky-cta a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(230,126,34,0.4);
    transition: transform 0.3s;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    flex: 1;
}

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

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

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

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

.btn-cookie.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

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

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

.page-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
}

/* Content Pages */
.content-section {
    padding: 80px 0;
}

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

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 30px 0 15px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* About Page */
.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-intro-content {
    flex: 1;
}

.about-intro-image {
    flex: 1;
}

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

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

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

.team-member {
    flex: 1;
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

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

.team-member span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

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

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

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

.contact-details p {
    color: var(--text);
    margin: 0;
}

.contact-form {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding-top: 80px;
}

.thanks-content {
    max-width: 600px;
    padding: 60px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

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

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

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

.thanks-content p {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .problem-grid,
    .story-block,
    .story-block.reverse,
    .form-wrapper,
    .about-intro,
    .contact-grid {
        flex-direction: column;
    }

    .insight-cards,
    .testimonials-grid,
    .stats-grid,
    .team-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;
    }

    .service-card {
        flex: 1 1 100%;
    }
}

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

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .form-container {
        padding: 30px 20px;
    }

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

    .sticky-cta a {
        justify-content: center;
    }
}
