/* Fonts */
:root {
    --primary: #D9FF00;
    /* Neon Green/Yellow from image */
    --background: #111827;
    /* Dark Slate / Deep Blue requested */
    --surface: #000099;
    /* Slightly lighter blue for cards */
    --text: #ffffff;
    --text-muted: #e0e0e0;
    --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

/* SuperHeader removed - using Outfit Black */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

body {
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-primary {
    color: var(--primary) !important;
}

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

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    /* Rounded pill shape from image */
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px rgba(217, 255, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid rgb(255, 255, 255);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(217, 255, 0, 0.05);
}

/* Navigation */
.navbar {
    padding: 2rem 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 50;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
}

/* Navigation Links */
.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 3rem;
    }
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s;
}

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

/* Hero */
.hero-section {
    padding-top: 20px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
}

/* Background elements imitating stars/sparkles */
/* Star Styles for Repulsion Effect */
.star {
    position: absolute;
    will-change: transform, z-index;
    transition: transform 0.15s ease-out, opacity 0.7s ease-in-out;
    opacity: 0;
    /* JS will fade them in */
    transform: scale(0);
    z-index: 1;
    /* Behind content but usable */
    pointer-events: none;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-section {
    padding: 0 0 100px;
    position: relative;
    z-index: 10;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    /* Wider gaps for "website" feel */
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: #1e283d;
    /* User requested dark blue */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1.5rem;
    border-radius: 24px;
    /* "Round edge" requested */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s var(--easing);
    backdrop-filter: blur(10px);
}

/* Highlight "Business" card like the "Digital Superhero" card */
.pricing-card.popular {
    background: #1e283d;
    /* Match others */
    border: 1px solid var(--primary);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.11);
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.card-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 1rem 0;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ddd;
}

.features-list li svg {
    color: var(--primary);
    width: 20px;
    flex-shrink: 0;
}

/* Add-ons Section */
.addons-section {
    padding: 80px 0;
    background: #1d264a;
    margin-bottom: 0;
    /* Removing margin to connect with footer */
}

.section-title {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.section-title span {
    color: var(--primary);
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media(min-width: 600px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 992px) {
    .addons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.addon-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.addon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 255, 0, 0.1) 0%, rgba(217, 255, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.addon-item:hover {
    border-color: rgba(217, 255, 0, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(217, 255, 0, 0.1);
}

.addon-item:hover::before {
    opacity: 1;
}

.addon-icon {
    width: 36px;
    height: 36px;
    color: var(--primary);
    margin-bottom: 0.5rem;
    z-index: 1;
}

.addon-content {
    z-index: 1;
}

.addon-content h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.addon-content p {
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
}

/* Footer / Community Section - MATCHING IMAGE */
.community-section {
    background: var(--background);
    /* Blue background continues */
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    /* Initial padding */
}

.community-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: #0000B3;
    /* Heavy font */
    font-size: 3.5rem;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

/* The Yellow Curve */
.yellow-curve-bg {
    background: var(--primary);
    width: 150%;
    height: 600px;
    border-radius: 50% 50% 0 0;
    position: absolute;
    bottom: -200px;
    /* Adjust to show curve */
    left: -25%;
    z-index: 1;
}

.community-content {
    position: relative;
    z-index: 2;
    /* Sit on top of yellow */
    padding-bottom: 100px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.social-links a {
    width: 60px;
    height: 60px;
    border: 3px solid black;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 2rem;
    transition: 0.3s;
}

.social-links a svg {
    width: 30px;
    height: 30px;
}

.social-links a:hover {
    background: black;
    color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    margin-top: 4rem;
    font-weight: 700;
    color: black;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--easing), transform 0.8s var(--easing);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* --- Payment Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--easing);
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #1D264A;
    /* Dark Theme Blue */
    border: 3px solid #0284c7;
    /* Blue border */
    padding: 2.5rem;
    border-radius: 30px;
    /* Cute round edges */
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 0 30px rgba(2, 132, 199, 0.3);
    transform: scale(0.8);
    transition: transform 0.4s var(--easing);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-content p {
    color: white;
    /* White text for dark bg */
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

.modal-content button {
    background: #0284c7;
    /* Blue button */
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
}

.modal-content button:hover {
    transform: scale(1.05);
    background: #0369a1;
    /* Darker blue hover */
    box-shadow: 0 5px 15px rgba(2, 132, 199, 0.4);
}

/* --- Infinite Tape Styles --- */
.tape-container {
    width: 100%;
    background: #1D264A;
    /* Dark Blue */
    overflow: hidden;
    padding: 1rem 0;
    margin: 140px 0 4rem;
    /* Spacing: Increased top margin to clear fixed toolbar */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 20;
}

.tape-content {
    width: 100%;
    display: flex;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
}

.animate-tape {
    animation: tape-scroll 60s linear infinite;
    /* Slow speed */
}

@keyframes tape-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tape-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    padding: 0 2rem;
    display: inline-block;
}

/* =============================
   DIGITAL JOURNEY FOOTER SECTION
   ============================= */
.pricing-dj-section {
    background: #181717;
    position: relative;
    overflow: hidden;
}

.pricing-dj-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-dj-content {
    padding: 3rem 0 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.pricing-dj-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    flex: 1;
}

.pricing-dj-video {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-dj-video video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.pricing-dj-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    text-transform: uppercase;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: white;
}

.pricing-dj-blue {
    color: #0C1AC1;
}

.pricing-dj-lime {
    color: var(--primary);
}

.pricing-dj-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-dj {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-dj-primary {
    background: var(--primary);
    color: #0e0e0e;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(217, 255, 0, 0.35);
}

.btn-dj-primary:hover {
    background: white;
    color: #0e0e0e;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-dj-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-dj-secondary:hover {
    background: var(--primary);
    color: #0e0e0e;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 255, 0, 0.25);
}

/* Footer base with curved yellow section */
.pricing-footer-base {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 300px;
    background: #0C1AC1;
    overflow: hidden;
}

.pricing-footer-header-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    text-align: center;
    z-index: 2;
}

.pricing-footer-title {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-footer-curve {
    position: absolute;
    bottom: 0;
    left: -25%;
    width: 150%;
    height: 70%;
    background: var(--primary);
    border-radius: 50% 50% 0 0 / 50px 50px 0 0;
    box-shadow: inset 0 10px 15px -10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.pricing-footer-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
}

.pricing-social-links {
    display: flex;
    gap: 2.5rem;
    font-size: 2.5rem;
    color: #0e0e0e;
}

.pricing-social-links a {
    color: #0e0e0e;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.pricing-social-links a:hover {
    color: #0C1AC1;
    transform: translateY(-4px);
}

.pricing-policy-links {
    display: flex;
    gap: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-policy-links a {
    color: #0e0e0e;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.pricing-policy-links a:hover {
    color: #0C1AC1;
}

.pricing-copyright {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #0e0e0e;
    color: #666;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .pricing-dj-content {
        padding: 4rem 0 3rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-dj-title {
        font-size: 2rem;
    }

    .pricing-dj-video {
        width: 180px;
        align-self: flex-end;
    }

    .pricing-footer-base {
        height: 260px;
    }

    .pricing-footer-title {
        font-size: 1.25rem;
    }
}