/* Global mobile overflow fix */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

/* Additional container constraints */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(35, 25, 66, 0.85) 0%, rgba(68, 50, 124, 0.85) 100%),
        url('../images/hero/GameSpace_VR_BoardGames-1920w.webp');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: var(--font-main-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    /*animation: shimmer 15s ease-in-out infinite;*/
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-90%); }
    50% { transform: translateX(90%); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient-cyber-punk);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary-large {
    background: var(--gradient-cyber-punk);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gradient-cyber-punk);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--surface-lighter);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    transform: translateY(-2px);
}
/* Problem Section - Updated for Dark Theme */
.problem {
    padding: 6rem 0;
    background: var(--surface);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Mobile responsive for problem grid */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .problem-grid {
        gap: 1rem;
    }
    
    .problem-card {
        padding: 1.5rem;
    }
    
    .problem-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}
.problem-card {
    background: var(--surface-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-dark);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
    border-color: var(--border-light);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.features-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.features-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

.features-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.features-image {
    background: var(--gradient-primary);
    height: 400px;
    border-radius: 16px;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--surface);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-purple);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-cyber-punk);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: var(--shadow-medium);
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced timeline styling for dark theme */
.timeline-item:hover .timeline-number {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.timeline-item:hover .timeline-content h3 {
    color: var(--accent-purple);
}

/* Packages Section */
.packages {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--surface-light);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid var(--border-dark);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-strong);
}

.package-card.featured {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium);
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(243, 156, 18, 0.05) 100%);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-premium);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1;
}

.package-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.package-card.featured .package-header {
    background: var(--gradient-premium);
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.package-subtitle {
    opacity: 0.9;
    font-size: 0.95rem;
    color: var(--white);
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.package-price-note {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--white);
}

.package-body {
    padding: 2rem;
    background: var(--surface-light);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--border-dark);
    line-height: 1.5;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-package {
    width: 100%;
    justify-self: stretch;
}

/* Custom Package */
.custom-package {
    margin-top: 3rem;
    background: var(--gradient-cosmic);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.custom-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.custom-package-content {
    position: relative;
    z-index: 2;
}

.custom-package h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.custom-package p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

/* Enhanced package hover effects for dark theme */
.package-card:hover .package-header {
    background: var(--gradient-neon-purple);
}

.package-card.featured:hover .package-header {
    background: var(--gradient-premium);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--dark-gray);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Mobile responsive: single column forms */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .form-row {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-dark);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--surface);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
    background: var(--surface-lighter);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--border-light);
    background: var(--surface-lighter);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--surface-light);
    color: var(--text-primary);
}

.form-note {
    background: rgba(108, 92, 231, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.form-note p {
    margin: 0;
    color: var(--accent-purple);
}

.form-note strong {
    color: var(--text-primary);
}

.contact-form .btn-primary-large {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .hero {
        background: 
            linear-gradient(135deg, rgba(35, 25, 66, 0.85) 0%, rgba(68, 50, 124, 0.85) 100%),
            url('../images/hero/GameSpace_VR_BoardGames-1200w.webp');
        background-size: cover;
        background-position: center 20%;
        background-repeat: no-repeat;
        background-attachment: scroll; /* Fixed attachment can cause issues on mobile */
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-content {
        gap: 3rem;
    }
    
    .features-text h2 {
        font-size: 2.25rem;
    }
    
    .features-image {
        height: 350px;
    }
}

/* Responsive adjustments for process section */
@media (max-width: 768px) {
    .hero {
        background: 
            linear-gradient(135deg, rgba(35, 25, 66, 0.85) 0%, rgba(68, 50, 124, 0.85) 100%),
            url('../images/hero/GameSpace_VR_BoardGames-800w.webp');
        background-size: cover;
        background-position: center 20%; /* Adjust this to center the important part of the image */
        background-repeat: no-repeat;
        background-attachment: scroll;
        min-height: 100vh;
    }

    /*Features Section Adjustments */
    .features {
        padding: 4rem 0;
    }
    
    .features-content {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 2.5rem;
        text-align: center; /* Center content on mobile */
    }
    
    .features-text {
        order: 2; /* Text comes after image on mobile */
    }
    
    .features-image {
        order: 1; /* Image comes first on mobile */
        height: 250px; /* Smaller height on mobile */
        margin: 0 auto;
        max-width: 100%;
    }
    
    .features-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .features-text p {
        font-size: 1rem;
        text-align: left; /* Keep paragraphs left-aligned for readability */
        max-width: 100%;
    }
    
    .features-features {
        text-align: left; /* Keep list left-aligned */
        max-width: 100%;
    }

    /*Timeline Section Adjustments */
    .process-timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-item {
        gap: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .hero {
        background: 
            linear-gradient(135deg, rgba(35, 25, 66, 0.85) 0%, rgba(68, 50, 124, 0.85) 100%),
            url('../images/hero/GameSpace_VR_BoardGames-400w.webp');
        background-size: cover;
        background-position: center 20%; /* You can adjust this value */
        background-repeat: no-repeat;
        background-attachment: scroll;
        min-height: 100vh;
        padding-top: 100px; /* Increase top padding for mobile */
    }

    /* Features Section Adjustments */
        .features {
        padding: 3rem 0;
    }
    
    .features-content {
        gap: 2rem;
    }
    
    .features-image {
        height: 200px; /* Even smaller on very small screens */
    }
    
    .features-text h2 {
        font-size: 1.75rem;
    }
    
    .features-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .features-features li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
    
    .features-features li::before {
        font-size: 1rem;
    }

    /* Process Section Adjustments */

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .timeline-number {
        margin: 0 auto 1rem;
    }
        .package-card {
        margin: 0 1rem;
    }
    
    .package-body {
        padding: 1.5rem;
    }
    
    .custom-package {
        padding: 2rem;
        margin: 2rem 1rem 0;
    }
}

/* Package Selection Section */
.package-selection {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.package-showcase {
    max-width: 900px;
    margin: 3rem auto 0;
}

.package-card-large {
    background: var(--surface-light);
    border: 2px solid var(--border-dark);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(243, 156, 18, 0.05) 100%);
}

.package-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(243, 156, 18, 0.3);
    border-color: var(--border-light);
}

.package-header {
    background: var(--gradient-cyber-punk);
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.package-header h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.package-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.package-price {
    background: var(--surface);
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-dark);
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-duration {
    display: block;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.package-content {
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Mobile-first responsive design for package content */
@media (max-width: 768px) {
    .package-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .package-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

.package-features-section h4,
.package-perfect-for h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.package-features-section h4::after,
.package-perfect-for h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-premium);
}

.package-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-perfect-for ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.package-perfect-for ul li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    padding-left: 1.5rem;
}

.package-perfect-for ul li:last-child {
    border-bottom: none;
}

.package-perfect-for ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-cta {
    background: var(--surface);
    padding: 2.5rem;
    text-align: center;
    border-top: 1px solid var(--border-dark);
}

.package-cta .btn-primary-large {
    margin-bottom: 1rem;
    min-width: 250px;
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.package-features h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.package-features h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-premium);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-group h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-group ul li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-dark);
    position: relative;
    padding-left: 1.5rem;
}

.feature-group ul li:last-child {
    border-bottom: none;
}

.feature-group ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-benefits {
    margin-bottom: 3rem;
}

.package-benefits h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.package-benefits h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-premium);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border-dark);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-content h5 {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.package-extras {
    margin-bottom: 3rem;
}

.package-extras h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.package-extras h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-premium);
}

.extras-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}

.extras-list ul li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid var(--border-dark);
    break-inside: avoid;
}

.extras-list ul li:last-child {
    border-bottom: none;
}

.package-cta {
    background: var(--surface);
    padding: 2.5rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--border-dark);
    margin-top: 2rem;
}

.package-cta .btn-primary-large {
    margin-bottom: 1rem;
    min-width: 250px;
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Additional Info Cards */
.additional-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: var(--surface-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-purple);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(108, 92, 231, 0.03) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.info-card:hover h4 {
    color: var(--accent-purple);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Enhanced styling for different info cards */
.info-card:nth-child(1) {
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(253, 203, 110, 0.05) 100%);
}

.info-card:nth-child(1):hover {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 40px rgba(253, 203, 110, 0.2);
}

.info-card:nth-child(1):hover h4 {
    color: var(--accent-orange);
}

.info-card:nth-child(2) {
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(116, 185, 255, 0.05) 100%);
}

.info-card:nth-child(2):hover {
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(116, 185, 255, 0.2);
}

.info-card:nth-child(2):hover h4 {
    color: var(--accent-blue);
}

.info-card:nth-child(3) {
    background: linear-gradient(135deg, var(--surface-light) 0%, rgba(0, 184, 148, 0.05) 100%);
}

.info-card:nth-child(3):hover {
    border-color: var(--accent-green);
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.2);
}

.info-card:nth-child(3):hover h4 {
    color: var(--accent-green);
}

/* Success Stories */
.success-stories {
    padding: 6rem 0;
    background: var(--surface);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--surface-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-dark);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-light);
}

.story-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.story-quote::before {
    content: "";
    font-size: 4rem;
    color: var(--accent-purple);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.story-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.story-stats .stat {
    background: var(--surface);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive Design for Package Selection */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .extras-list ul {
        columns: 1;
    }
    
    .package-title {
        font-size: 1.75rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .package-card-large {
        margin: 0 1rem;
    }
    
    .package-header {
        padding: 2rem 1.5rem;
    }
    
    .package-header h3 {
        font-size: 1.75rem;
    }
    
    .package-price {
        padding: 1.5rem;
    }
    
    .package-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .package-showcase {
        margin: 2rem 0.5rem 0;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .package-header {
        padding: 1.5rem 1rem;
    }
    
    .package-header h3 {
        font-size: 1.5rem;
    }
    
    .package-subtitle {
        font-size: 1rem;
    }
    
    .package-price {
        padding: 1.25rem 1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .package-cta {
        padding: 1.5rem 1rem;
    }
    
    .package-cta .btn-primary-large {
        min-width: auto;
        width: 100%;
    }
    
    /* General mobile improvements */
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
