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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #fafafa;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-accept {
    background: #d4af37;
    color: #1a1a1a;
}

.btn-accept:hover {
    background: #c19b28;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #666;
}

.btn-reject:hover {
    border-color: #999;
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 22px;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #d4af37;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.3s;
}

.hero-immersive {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 50%, #1a1a1a 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.hero-title {
    font-size: 58px;
    font-weight: normal;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 500;
}

.cta-hero:hover {
    background: #c19b28;
    transform: translateY(-2px);
}

.story-intro {
    padding: 100px 20px;
    background: #fff;
}

.lead-text {
    font-size: 21px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #3d3d3d;
}

.revelation-block {
    padding: 120px 20px;
    background: #f5f5f5;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-visual {
    flex: 1;
}

.visual-box {
    height: 400px;
    background: linear-gradient(45deg, #2c2c2c, #4d4d4d);
    border-radius: 8px;
}

.problem-amplify {
    padding: 100px 20px;
    background: #fff;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: normal;
}

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

.problem-card {
    flex: 1;
    min-width: 250px;
    padding: 40px 30px;
    background: #fafafa;
    border-left: 4px solid #d4af37;
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.problem-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.story-case {
    padding: 120px 20px;
    background: #1a1a1a;
    color: #fff;
}

.case-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.case-image {
    flex: 1;
    height: 500px;
    background: linear-gradient(180deg, #3d3d3d, #1a1a1a);
    border-radius: 8px;
}

.case-content {
    flex: 1;
}

.case-label {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4af37;
    margin-bottom: 15px;
}

.case-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: normal;
}

.case-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.case-quote {
    font-style: italic;
    border-left: 3px solid #d4af37;
    padding-left: 20px;
    margin: 30px 0;
    font-size: 19px;
}

.cta-inline {
    display: inline-block;
    color: #d4af37;
    text-decoration: none;
    font-size: 17px;
    margin-top: 20px;
    transition: all 0.3s;
}

.cta-inline:hover {
    color: #c19b28;
    transform: translateX(5px);
}

.insight-reveal {
    padding: 100px 20px;
    background: #fff;
}

.insight-reveal h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
    text-align: center;
}

.insight-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

.insight-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #555;
}

.trust-build {
    padding: 120px 20px;
    background: #f5f5f5;
}

.centered-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: normal;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    color: #2c2c2c;
}

.testimonial-author {
    font-size: 15px;
    color: #777;
}

.collection-preview {
    padding: 120px 20px;
    background: #fff;
}

.section-intro {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.collection-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.collection-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    height: 250px;
    background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
    border-radius: 8px;
    margin-bottom: 25px;
}

.collection-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.card-price {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 20px;
}

.card-cta {
    display: inline-block;
    padding: 12px 28px;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
}

.card-cta:hover {
    background: #1a1a1a;
}

.why-now {
    padding: 100px 20px;
    background: #1a1a1a;
    color: #fff;
}

.why-now h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
}

.why-now p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.urgency-box {
    margin-top: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid #d4af37;
    border-radius: 4px;
}

.urgency-box p {
    margin: 0;
    font-size: 17px;
}

.service-deep-dive {
    padding: 120px 20px;
    background: #fff;
}

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

.service-item {
    padding: 40px;
    background: #fafafa;
    border-radius: 8px;
    border-left: 5px solid #d4af37;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-price {
    display: block;
    font-size: 26px;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 15px;
}

.service-link {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.service-link:hover {
    color: #d4af37;
}

.final-cta-section {
    padding: 120px 20px;
    background: #f5f5f5;
}

.final-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
    text-align: center;
}

.final-cta-section > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #c19b28;
}

.secondary-cta {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.cta-text {
    font-size: 19px;
}

.inline-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.inline-link:hover {
    color: #c19b28;
}

.site-footer {
    padding: 80px 20px 40px;
    background: #1a1a1a;
    color: #fff;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col ul a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

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

.sticky-btn {
    display: block;
    padding: 16px 32px;
    background: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.sticky-btn:hover {
    background: #c19b28;
    transform: scale(1.05);
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 30px;
        transition: left 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content,
    .case-layout {
        flex-direction: column;
    }

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

    .collection-cards {
        flex-direction: column;
    }

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

    .sticky-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}