:root {
    --bg-color: #000000; /* Pure black to match logo background */
    --neon-pink: #ff007f;
    --neon-pink-light: #ff66b2;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --gold: #f2c94c;
    --white: #ffffff;
    --border-color: #333;
    
    /* Neon glow effect */
    --glow-text: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), 0 0 40px var(--neon-pink);
    --glow-text-subtle: 0 0 3px var(--neon-pink), 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
    --glow-box: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink), inset 0 0 10px var(--neon-pink);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utilities */
.highlight {
    color: var(--neon-pink);
}
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    vertical-align: middle;
}

.btn-primary {
    background-color: var(--neon-pink);
    color: var(--white);
    border: none;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.btn-primary:hover {
    background-color: var(--neon-pink-light);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--neon-pink);
    border: 1px solid var(--neon-pink);
    padding: 9px 24px;
}

.btn-secondary i {
    color: var(--neon-pink);
    margin-right: 5px;
}

.btn-secondary:hover {
    background-color: rgba(255, 0, 127, 0.1);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo-img {
    max-width: 120px;
    height: auto;
}

.tm {
    font-size: 0.5em;
    vertical-align: super;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-pink);
}

.nav-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    display: flex;
    padding: 80px 5% 100px;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
    font-weight: 800;
    line-height: 1;
}

.gold-heart {
    color: var(--gold);
    font-size: 1.5rem;
    vertical-align: super;
}

.hero-content p {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 0, 127, 0.3));
}


/* Features Section */
.features {
    display: flex;
    justify-content: space-between;
    padding: 50px 10%;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-item {
    text-align: center;
    flex: 1;
}

.feature-item .icon {
    font-size: 3.5rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.small-heart-top {
    position: absolute;
    top: -5px;
    right: 50%;
    transform: translateX(50%);
    font-size: 0.3em;
    color: var(--neon-pink);
}

.feature-item h4 {
    font-size: 0.8rem;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.feature-item p {
    font-size: 0.7rem;
    color: #999;
    line-height: 1.4;
}

.divider {
    width: 1px;
    background-color: rgba(255,255,255,0.1);
    height: 80px;
    margin: 0 20px;
}

/* We Tried It Section */
.we-tried-it {
    display: flex;
    padding: 80px 10%;
    align-items: center;
    justify-content: space-between;
}

.left-content {
    flex: 1;
    max-width: 400px;
}

.we-tried-img {
    max-width: 380px;
    height: auto;
    margin-bottom: 25px;
}

.neon-line {
    border: none;
    height: 3px;
    background-color: var(--gold);
    width: 100%;
    margin: 20px 0;
    box-shadow: 0 0 10px var(--gold);
}

.left-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.right-features {
    flex: 1.5;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

.feature-item-small {
    text-align: center;
}

.feature-item-small .icon {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
}

.feature-item-small h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

.circle-badge {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 20px;
    box-shadow: 0 0 10px rgba(242, 201, 76, 0.5);
}
.circle-badge .small-heart {
    color: var(--neon-pink);
    margin-top: 12px;
}

/* Renewal Option Section */
.renewal-option {
    background-color: #f5f5f5;
    color: #000;
    padding: 60px 10%;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--neon-pink);
    font-size: 1rem;
}

.renewal-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    align-items: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.neon-box {
    background-color: var(--bg-color);
    border: 3px solid var(--neon-pink);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--glow-box);
}

.neon-box h2 {
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink), 0 0 3px var(--neon-pink);
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.neon-box i {
    color: var(--neon-pink);
    font-size: 3rem;
}

.renewal-text {
    text-align: left;
    max-width: 400px;
}

.renewal-text h4 {
    color: var(--neon-pink);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.renewal-text p {
    color: #555;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.check-list i {
    color: var(--neon-pink);
    margin-right: 10px;
}

.certificate-image img {
    width: 330px;
    height: auto;
    aspect-ratio: 7 / 10;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* How It Works Section */
.how-it-works {
    padding: 80px 10%;
    text-align: center;
}

.section-title-light {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title-light::before, .section-title-light::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
}
.section-title-light::before { left: -70px; }
.section-title-light::after { right: -70px; }

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.steps-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1.8;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 5px;
}

.step .icon {
    font-size: 4rem;
    color: var(--neon-pink);
    margin-bottom: 20px;
    position: relative;
    font-weight: 300;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.step p {
    font-size: 1rem;
    color: #999;
    line-height: 1.4;
}

.arrow {
    color: var(--neon-pink);
    font-size: 2rem;
    margin-top: 25px;
}

.couple-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.couple-step-mobile {
    display: none; /* Hide mobile-only step on desktop */
}

.couple-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* What's Included Section */
.whats-included {
    background-color: #f5f5f5;
    color: #000;
    padding: 60px 10%;
    text-align: center;
}

.included-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.included-item {
    text-align: center;
}

.included-item .icon {
    font-size: 3rem;
    color: var(--neon-pink);
    margin-bottom: 15px;
}

.included-item p {
    font-size: 1rem;
    font-weight: 600;
}

.included-badge {
    display: flex;
    align-items: center;
    background-color: #ffe6f2;
    border: 2px solid var(--neon-pink);
    border-radius: 10px;
    padding: 10px 20px;
    gap: 15px;
}

.included-badge .icon {
    font-size: 2.5rem;
    color: var(--neon-pink);
}

.badge-text {
    text-align: left;
}

.badge-text h4 {
    color: var(--neon-pink);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* The Trap Agreement */
.trap-agreement {
    display: flex;
    padding: 80px 10%;
    justify-content: space-between;
    align-items: center;
}

.agreement-left {
    flex: 1;
}

.agreement-left h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.agreement-left .subtitle {
    color: var(--neon-pink);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.agreement-left p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.agreement-middle {
    flex: 1.5;
}

.agreement-middle ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.agreement-middle li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
}

.agreement-middle i {
    color: var(--neon-pink);
    margin-right: 10px;
    margin-top: 5px;
}

.agreement-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.no-courthouse-img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.4));
}

/* Footer Section */
.footer {
    position: relative;
    padding: 80px 10% 20px;
    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
    gap: 10%;
}

.tm-love-img {
    max-width: 350px;
    height: auto;
}

.footer-cta {
    text-align: left;
    max-width: 400px;
}

.footer-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-cta p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.hashtag {
    font-weight: 600;
    color: var(--text-color) !important;
    margin-top: 15px;
    font-size: 0.9rem;
}

.city-view-img {
    position: absolute;
    bottom: -20px;
    right: -120px;
    width: 480px;
    max-width: none;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    max-width: 120px;
    height: auto;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--neon-pink);
}

/* --- Desktop overrides for Hamburger --- */
.nav-toggle, .nav-toggle-label {
    display: none;
}

/* --- Mobile View (Elegant & Non-stacked) --- */
@media (max-width: 1024px) {
    /* Navbar & Hamburger Menu */
    .navbar {
        position: relative;
    }
    .nav-btn {
        display: none; /* Hide button on mobile or move it into menu */
    }
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 10px;
        z-index: 100;
    }
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--white);
        height: 2px;
        width: 30px;
        position: relative;
        transition: all 0.3s ease;
    }
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    .nav-toggle-label span::before { bottom: 8px; }
    .nav-toggle-label span::after { top: 8px; }
    
    /* Toggle animations */
    #nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    #nav-toggle:checked ~ .nav-toggle-label span::before { transform: rotate(45deg); bottom: 0; }
    #nav-toggle:checked ~ .nav-toggle-label span::after { transform: rotate(-45deg); top: 0; }
    
    /* Dropdown menu */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        border-bottom: 2px solid var(--neon-pink);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 99;
    }
    #nav-toggle:checked ~ .nav-links {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }
    
    /* Hero - Overlapping Badge */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
        position: relative;
    }
    .hero-content {
        margin: 0 auto;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-image {
        position: relative;
        margin-top: 40px; /* Space it nicely below buttons */
        z-index: 2;
    }
    .badge-img {
        max-width: 250px;
    }
    
    /* Features - 2x2 Grid */
    .features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
        justify-content: center;
    }
    .features .divider {
        display: none; /* Remove flexbox dividers from grid layout */
    }
    .feature-item {
        border-right: none;
        padding: 10px;
    }
    /* Add border to the 1st and 3rd visual items (DOM children 1 and 5) */
    .feature-item:nth-child(4n+1) {
        border-right: 1px solid rgba(255,255,255,0.1);
    }
    
    /* We Tried It */
    .we-tried-it {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }
    .left-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .right-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .circle-badge {
        grid-column: span 2;
        margin: 20px auto;
    }
    
    /* Horizontal Scroll / Carousel for How It Works */
    .steps-container {
        display: block; /* Override previous */
    }
    .steps-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 0 40px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for cleaner look */
    }
    .steps-row::-webkit-scrollbar {
        display: none;
    }
    .step {
        flex: 0 0 70%; /* Show part of next card */
        scroll-snap-align: center;
        background: rgba(255,255,255,0.05);
        padding: 30px;
        border-radius: 15px;
    }
    .arrow {
        display: none; /* Hide arrows in swipe mode */
    }
    .couple-image-container {
        display: none; /* Hide desktop couple image */
    }
    .couple-step-mobile {
        display: flex; /* Override display:none from desktop */
        align-items: center;
        justify-content: center;
        padding: 0; /* Remove step padding so image fills the card nicely */
    }
    .couple-step-mobile img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
    }
    
    /* What's Included - 2x2 Grid */
    .included-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .included-item::after {
        display: none;
    }
    .included-badge {
        grid-column: span 2;
        margin-top: 20px;
    }
    
    /* Renewal Option */
    .renewal-content {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .renewal-text {
        padding: 30px 0;
    }
    .certificate-image img {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Agreement */
    .trap-agreement {
        flex-direction: column;
        padding: 50px 5%;
    }
    .agreement-left, .agreement-middle, .agreement-right {
        max-width: 100%;
        margin: 0 auto 30px auto;
        text-align: center;
    }
    .agreement-middle ul li {
        justify-content: center;
    }
    
    /* Footer */
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .city-view-img {
        position: relative; /* Change from absolute to sit nicely */
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        right: auto;
        bottom: auto;
        opacity: 0.8;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}
