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

:root {
    --primary: #1a1a2e;
    --secondary: #c9a227;
    --accent: #e8d5b7;
    --dark: #0f0f1a;
    --light: #faf8f5;
    --text: #2d2d2d;
    --muted: #6b6b6b;
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

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

/* Navigation */
.nav-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-toggle {
    background: var(--primary);
    color: var(--light);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-toggle:hover {
    background: var(--secondary);
}

.nav-menu {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--primary);
    min-width: 220px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu a {
    display: block;
    padding: 14px 24px;
    color: var(--light);
    transition: background 0.2s;
}

.nav-menu a:hover {
    background: var(--secondary);
}

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

.hero-immersive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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="%23c9a227" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    opacity: 0.3;
}

.hero-badge {
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--light);
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.2;
    position: relative;
}

.hero-title strong {
    font-weight: 700;
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent);
    max-width: 600px;
    margin-bottom: 40px;
    position: relative;
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark);
    padding: 18px 45px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background: transparent;
    color: var(--light);
    padding: 16px 40px;
    border: 2px solid var(--light);
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-inline {
    color: var(--secondary);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.btn-inline:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Scroll Indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--primary);
    color: var(--light);
}

.section-accent {
    background: var(--accent);
}

.section-muted {
    background: #f0ebe3;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 700px;
}

/* Problem Section */
.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background: var(--light);
    padding: 40px 30px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

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

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

/* Story Section */
.story-flow {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

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

.story-image {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-image svg {
    width: 60%;
    height: 60%;
    opacity: 0.6;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

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

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

/* Services Grid */
.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

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

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

.service-body {
    padding: 30px;
}

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

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

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

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

/* Testimonials */
.testimonial-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    flex-shrink: 0;
}

.testimonial-content blockquote {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    color: var(--secondary);
}

/* Benefits */
.benefits-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 40px 25px;
}

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

.benefit-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--dark);
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.benefit-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

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

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

.form-content {
    flex: 1;
    color: var(--light);
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

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

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

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
}

.guarantee-item svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
}

.form-container {
    flex: 1;
    background: var(--light);
    padding: 50px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    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-submit {
    width: 100%;
    background: var(--secondary);
    color: var(--dark);
    padding: 18px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Urgency Banner */
.urgency-strip {
    background: var(--secondary);
    padding: 20px;
    text-align: center;
}

.urgency-strip p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.sticky-cta p {
    color: var(--light);
    font-size: 1rem;
}

.sticky-cta .btn-primary {
    padding: 12px 30px;
}

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

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

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

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

.footer-col a {
    display: block;
    padding: 8px 0;
    color: var(--accent);
    transition: color 0.2s;
}

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

.footer-col p {
    line-height: 1.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 80px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: var(--light);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
}

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

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

.cookie-banner p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

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

.cookie-accept {
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.cookie-reject {
    background: transparent;
    color: var(--muted);
    padding: 12px 25px;
    border: 1px solid var(--muted);
    border-radius: 4px;
    cursor: pointer;
}

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

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

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

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

.thanks-page p {
    color: var(--accent);
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 40px;
}

/* About Page */
.page-header {
    background: var(--primary);
    padding: 150px 0 80px;
    text-align: center;
}

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

.page-header p {
    color: var(--accent);
    font-size: 1.2rem;
}

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

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

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

.about-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 150px;
    height: 150px;
    fill: var(--light);
    opacity: 0.8;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    color: var(--muted);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Contact Page */
.contact-layout {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
}

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

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

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

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

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

.contact-details p {
    color: var(--muted);
}

.contact-map {
    flex: 1;
    min-height: 400px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.legal-content p {
    margin-bottom: 15px;
    color: var(--text);
}

.legal-content ul {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
    .story-block,
    .story-block:nth-child(even),
    .about-block,
    .about-block:nth-child(even) {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-avatar {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

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

    .sticky-cta {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .sticky-cta p {
        font-size: 0.9rem;
    }
}
