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

body {
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
}

.nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem;
}

.hamburger {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.05);
}

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    transition: right 0.4s ease;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-menu a:hover {
    padding-left: 1rem;
    color: #d4af37;
}

.hero-visual {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

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

.hero-overlay-text h1 {
    font-size: 4.5rem;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-overlay-text p {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: 2px solid #d4af37;
}

.cta-primary:hover {
    background: transparent;
    color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.section-visual-story {
    display: flex;
    flex-direction: column;
}

.story-block {
    display: flex;
    min-height: 70vh;
    position: relative;
}

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

.story-image-container {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.story-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f8f8;
}

.story-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.story-content .cta-inline {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.story-content .cta-inline:hover {
    padding-left: 10px;
}

.problem-amplify {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
}

.problem-amplify h2 {
    font-size: 3.2rem;
    font-weight: 200;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.problem-amplify p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    line-height: 1.9;
    opacity: 0.9;
}

.insight-section {
    padding: 6rem 2rem;
    background: #fff;
}

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-left: 4px solid #d4af37;
    transition: all 0.3s ease;
}

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

.insight-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
    color: #2c2c2c;
}

.insight-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.trust-builder {
    background: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 2rem;
    position: relative;
}

.trust-builder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
}

.trust-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: #2c2c2c;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    padding: 2.5rem;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-top: 3px solid #d4af37;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    text-align: right;
}

.services-reveal {
    padding: 7rem 2rem;
    background: #f8f8f8;
}

.services-reveal h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 300;
    color: #2c2c2c;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #2c2c2c;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 1px;
}

.service-cta:hover {
    background: #d4af37;
}

.urgency-block {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #fff;
    padding: 5rem 2rem;
    text-align: center;
}

.urgency-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.urgency-block p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-cta {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: #fff;
    color: #d4af37;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.urgency-cta:hover {
    background: transparent;
    color: #fff;
}

.form-section {
    padding: 7rem 2rem;
    background: #fff;
}

.form-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: #2c2c2c;
}

.form-section p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

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

.submit-btn {
    padding: 1.3rem 2rem;
    background: #d4af37;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
}

.submit-btn:hover {
    background: #2c2c2c;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(44, 44, 44, 0.95);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.sticky-cta-bar p {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.sticky-cta-bar a {
    padding: 0.9rem 2.5rem;
    background: #d4af37;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sticky-cta-bar a:hover {
    background: #fff;
    color: #d4af37;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    color: #fff;
    padding: 2rem;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.cookie-banner p a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #d4af37;
    color: #fff;
}

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

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

.cookie-reject:hover {
    background: #fff;
    color: #2c2c2c;
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #d4af37;
}

.footer-section p,
.footer-section a {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #d4af37;
}

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

.page-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-weight: 400;
    color: #2c2c2c;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 400;
    color: #555;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.8rem;
}

.contact-info {
    background: #f8f8f8;
    padding: 3rem;
    margin: 3rem 0;
    border-left: 4px solid #d4af37;
}

.contact-info h3 {
    margin-top: 0;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-weight: 300;
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.2rem;
}

.thanks-content a {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #d4af37;
}

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

    .hero-overlay-text p {
        font-size: 1.1rem;
    }

    .story-block {
        flex-direction: column !important;
    }

    .story-content {
        padding: 3rem 2rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .sticky-cta-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .cookie-banner {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }
}
