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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ececec;
    color: #1f2937;
    overflow-x: hidden;
}

.dynamic-nav {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo-corner {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    background: #f0edec;
    border-radius: 12px;
    padding-top: 5px;
    display: none;
}

.nav-logo-corner img {
    width: 45px;
    height: 45px;
    transition: transform 0.3s ease;
}

.nav-logo-corner:hover img {
    transform: scale(1.1);
}

.nav-toggle {
    width: 50px;
    height: 50px;
    background: rgba(42, 62, 85, 0.1);
    border: 1px solid rgba(42, 62, 85, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #2A3E55;
    transition: all 0.3s ease;
}

.nav-toggle.active div.expand-nav-icon {
    display: none;
}

.nav-toggle.active div.close-nav-icon {
    display: inline;
}

.nav-toggle:not(.active) div.close-nav-icon {
    display: none;
}

.nav-menu {
    position: fixed;
    top: 90px;
    right: 30px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(42, 62, 85, 0.2);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    min-width: 180px;
}

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

.nav-menu li {
    margin-bottom: 5px;
}

.nav-menu li:last-child {
    margin-bottom: 0;
}

.nav-menu a {
    display: block;
    color: #2A3E55;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    padding-left: 20px;
}

.nav-menu svg {
    vertical-align: text-bottom;
}

.nav-seo {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.dynamic {
    background: linear-gradient(to bottom, rgba(236, 236, 236, 0.85) 0%, rgba(236, 236, 236, 0.9) 100%),
    url('/images/home_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

.dynamic-hero {
    padding: 140px 60px 100px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dynamic-hero-content h1 {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #2A3E55 0%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dynamic-hero-content p {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dynamic-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.dynamic-cta {
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

.dynamic-cta-primary {
    background: #2A3E55;
    color: #fff;
    border: solid 1px #2A3E55;
    box-shadow: 0 10px 30px rgba(42, 62, 85, 0.3);
}

.dynamic-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(42, 62, 85, 0.5);
    background: #1f2d3f;
}

.dynamic-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dynamic-visual img {
    max-width: 100%;
    filter: drop-shadow(0 20px 60px rgba(255, 255, 255, 0.1));
    animation: floatLogo 6s infinite ease-in-out;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* HOW IT WORKS SECTION */
.how-it-works {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    text-align: center;
}

.how-it-works h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #2A3E55 0%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(42, 62, 85, 0.15);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(42, 62, 85, 0.3);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2A3E55 0%, #1f2d3f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
    color: #fff;
}

.step h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2A3E55;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
}

/* ACCOUNT TYPE CARDS */
.dynamic-icon-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
}

.dynamic-icon-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(42, 62, 85, 0.2);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.dynamic-icon-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(42, 62, 85, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(42, 62, 85, 0.15);
}

.dynamic-icon-card svg {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    color: #2A3E55;
}

.dynamic-icon-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2A3E55;
}

.dynamic-icon-card h4 {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 20px;
}

.dynamic-icon-card p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.feature-list li {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2A3E55;
    font-weight: 700;
    font-size: 18px;
}

.tool-replacement {
    background: rgba(42, 62, 85, 0.08);
    border: 1px solid rgba(42, 62, 85, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.tool-replacement strong {
    color: #2A3E55;
    font-weight: 600;
}

.account-pricing {
    background: rgba(42, 62, 85, 0.08);
    border: 1px solid rgba(42, 62, 85, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    font-size: 14px;
    color: #16a34a;
    line-height: 1.6;
}

.account-pricing svg {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
    vertical-align: middle;
    display: inline-block;
}

.account-pricing strong {
    font-weight: 600;
}

.dynamic-icon-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    color: #fff;
    background: #2A3E55;
    border: solid 1px #2A3E55;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.dynamic-icon-cta:hover {
    background: #1f2d3f;
    border-color: #1f2d3f;
    transform: translateX(5px);
}

.dynamic-icon-cta svg {
    width: 25px !important;
    height: auto !important;
    margin-bottom: 0px !important;
}

/* FEATURES SECTION */
.dynamic-features {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.dynamic-features h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2A3E55 0%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audience-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(42, 62, 85, 0.2);
    border-radius: 30px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    color: #2A3E55;
}

.tab-btn.active {
    background: #2A3E55;
    border-color: #2A3E55;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.dynamic-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.dynamic-feature {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(42, 62, 85, 0.15);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
}

.dynamic-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(42, 62, 85, 0.3);
}

.dynamic-feature-icon {
    font-size: 48px;
    margin-bottom: 25px;
}

.dynamic-feature h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2A3E55;
}

.dynamic-feature p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 16px;
}

/* WHY LAUGH LOCATOR SECTION */
.dynamic-about {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.dynamic-about h2 {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #2A3E55 0%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dynamic-about p {
    font-size: 19px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 25px;
}

/* FINAL CTA */
.final-cta {
    padding: 80px 60px 120px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 30px;
    color: #2A3E55;
}

.final-cta p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-logo-corner {
        display: block;
    }

    .dynamic-visual {
        display: none;
    }

    .dynamic-hero {
        grid-template-columns: 1fr;
        padding: 120px 30px 80px;
        gap: 60px;
    }

    .how-it-works {
        padding: 80px 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .dynamic-icon-section {
        grid-template-columns: 1fr;
        padding: 0 30px 80px;
    }

    .dynamic-features {
        padding: 80px 30px;
    }

    .dynamic-feature-grid {
        grid-template-columns: 1fr;
    }

    .dynamic-about {
        padding: 80px 30px;
    }

    .final-cta {
        padding: 60px 30px 100px;
    }

    .nav-toggle {
        width: 45px;
        height: 45px;
    }

    .dynamic-nav {
        top: 20px;
        right: 20px;
    }

    .nav-logo-corner {
        top: 20px;
        left: 20px;
    }

    .nav-menu {
        right: 20px;
        top: 75px;
    }
}
/* Generic Styling */
.secondary-button {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(42, 62, 85, 0.2);
    color: #6b7280;
}

.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(42, 62, 85, 0.5);
    border-color: rgba(42, 62, 85, 0.5);
}
