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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a86a;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0d8ce;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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;
}

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-immersive {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c3e50 0%, #4a5f7a 100%);
    background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1600&h=1200&fit=crop');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-family: 'Georgia', serif;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent-color);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 106, 0.4);
}

.cta-hero:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 106, 0.5);
}

section {
    padding: 100px 0;
}

.hook-section {
    background: var(--bg-white);
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-visual {
    background: var(--bg-light);
}

.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.split-content {
    flex: 1;
}

.split-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    background: var(--primary-color);
    transform: translateX(5px);
}

.problem-amplification {
    background: var(--bg-white);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-card {
    padding: 40px;
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.problem-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.insight-reveal {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5267 100%);
    color: white;
}

.reveal-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.reveal-text {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.insight-quote {
    font-size: 2rem;
    font-style: italic;
    text-align: center;
    padding: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    margin: 3rem 0;
    color: var(--accent-color);
}

.trust-builder {
    background: var(--bg-white);
}

.trust-builder h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-columns {
    display: flex;
    gap: 50px;
}

.trust-item {
    flex: 1;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.trust-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonials-flow {
    background: var(--bg-light);
}

.testimonial {
    margin-bottom: 3rem;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--secondary-color);
    font-weight: 600;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.collections-reveal {
    background: var(--bg-white);
}

.collections-title {
    text-align: center;
    margin-bottom: 1rem;
}

.collections-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.collection-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.collection-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.collection-image {
    flex: 1;
}

.collection-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.collection-info {
    flex: 1;
}

.collection-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-select-service {
    padding: 14px 35px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.urgency-block {
    background: var(--bg-light);
}

.urgency-box {
    background: linear-gradient(135deg, #8b7355 0%, #a08968 100%);
    color: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.urgency-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.urgency-countdown {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

.final-benefits {
    background: var(--bg-white);
}

.final-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-item {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.styled-form {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.guarantee-section {
    background: var(--bg-white);
    text-align: center;
}

.guarantee-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.guarantee-note {
    font-style: italic;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 16px 35px;
    background: var(--accent-color);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #2c3e50 0%, #3d5267 100%);
    color: white;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.hero-lead {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.about-story,
.about-mission,
.team-section,
.values-section {
    padding: 80px 0;
}

.about-visual-break {
    padding: 0;
}

.full-width-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mission-grid {
    display: flex;
    gap: 40px;
}

.mission-card {
    flex: 1;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-member {
    margin-bottom: 2.5rem;
}

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

.values-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.values-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list strong {
    color: var(--secondary-color);
}

.cta-section {
    background: var(--bg-light);
    text-align: center;
    padding: 80px 0;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 60px 0;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

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

.service-image-large img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-content {
    flex: 1;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0 1.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.session-info {
    font-style: italic;
    color: var(--text-light);
    margin: 1rem 0;
}

.contact-info {
    padding: 60px 0;
}

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

.contact-card {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-visit,
.contact-map,
.contact-faq {
    padding: 60px 0;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 80px 40px;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed var(--border-color);
}

.map-info {
    color: var(--text-light);
    margin-top: 1rem;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.thanks-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #8b7355 0%, #a08968 100%);
    color: white;
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: white;
}

.thanks-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.selected-service {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
}

.thanks-next-steps {
    padding: 80px 0;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 3rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thanks-social-proof {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.thanks-social-proof h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 2rem auto;
    max-width: 700px;
}

.thanks-cta {
    padding: 80px 0;
    text-align: center;
}

.thanks-cta h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 30px;
    margin: 10px;
    transition: all 0.3s ease;
}

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

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

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .split-container,
    .trust-columns,
    .collection-card,
    .service-item,
    .contact-grid,
    .mission-grid {
        flex-direction: column;
    }

    .collection-card:nth-child(even) {
        flex-direction: column;
    }

    .floating-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
    }

    .styled-form {
        padding: 30px;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}