/* Adult Birthday Parties - Unique Hero Styling
   Based on birthday-parties-dark.css but with unique color scheme */
@import url('./birthday-parties-dark.css');

/* ===========================================
   ADULT BIRTHDAY UNIQUE HERO STYLING
   Theme: Cyber/Neon Purple & Blue
   =========================================== */

/* Override highlight text with neon cyan/blue gradient */
.hero .highlight {
    background: var(--gradient-neon-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override stat numbers with cyan accent */
.hero .stat-number {
    color: var(--accent-blue);
}

/* Badge with blue tint */
.hero .hero-badge {
    background: rgba(116, 185, 255, 0.2);
    border: 1px solid rgba(116, 185, 255, 0.3);
}

/* Image container with blue glow effect */
.hero-image-container {
    box-shadow: 
        0 20px 50px rgba(116, 185, 255, 0.2),
        0 0 30px rgba(108, 92, 231, 0.15);
}

/* Primary button with blue accent */
.hero .btn-primary-large {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

.hero .btn-primary-large:hover {
    box-shadow: 0 8px 30px rgba(116, 185, 255, 0.4);
}

/* Secondary button with blue border */
.hero .btn-secondary {
    border-color: rgba(116, 185, 255, 0.4);
}

.hero .btn-secondary:hover {
    background: rgba(116, 185, 255, 0.15);
    border-color: rgba(116, 185, 255, 0.6);
}

/* ===========================================
   GAMES SECTION BACKGROUND OVERRIDE
   Adult birthday uses lighter background for games
   =========================================== */

.games-section {
    background: var(--surface);
}

/* ===========================================
   FEATURED ACTIVITIES CARDS (Guitar Hero & Karaoke)
   =========================================== */

.featured-activities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.featured-activity-card {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon-cyan);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-activity-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(116, 185, 255, 0.2);
}

.featured-activity-card:hover::before {
    opacity: 1;
}

.activity-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.activity-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.activity-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.activity-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================================
   TEAM CHALLENGE ADD-ON SECTION
   =========================================== */

.team-challenge-addon {
    padding: 5rem 0;
    background: var(--dark-gray);
}

.challenge-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.challenge-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.challenge-modes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mode-card {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(116, 185, 255, 0.15);
}

.mode-card[data-mode="party"]:hover {
    border-color: rgba(253, 121, 168, 0.5);
    box-shadow: 0 20px 50px rgba(253, 121, 168, 0.2);
}

.mode-card[data-mode="gaming"]:hover {
    border-color: rgba(116, 185, 255, 0.5);
    box-shadow: 0 20px 50px rgba(116, 185, 255, 0.2);
}

.mode-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.mode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mode-card:hover .mode-image img {
    transform: scale(1.05);
}

/* Gaming mode image - reposition to show phone screen */
.mode-card[data-mode="gaming"] .mode-image img {
    object-position: 70% center;
}

.mode-content {
    padding: 2rem;
}

.mode-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mode-card[data-mode="party"] .mode-badge {
    background: rgba(253, 121, 168, 0.2);
    color: #fd79a8;
    border: 1px solid rgba(253, 121, 168, 0.3);
}

.mode-card[data-mode="gaming"] .mode-badge {
    background: rgba(116, 185, 255, 0.2);
    color: var(--accent-blue);
    border: 1px solid rgba(116, 185, 255, 0.3);
}

.mode-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.mode-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mode-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mode-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

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

.challenge-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.challenge-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Mix and match tip card */
.challenge-mix-match {
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.1) 0%, rgba(108, 92, 231, 0.1) 100%);
    border: 1px solid rgba(116, 185, 255, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.challenge-mix-match p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.challenge-mix-match strong {
    color: var(--accent-blue);
}

/* Responsive team challenge */
@media (max-width: 768px) {
    .team-challenge-addon {
        padding: 4rem 0;
    }

    .challenge-modes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mode-image {
        height: 200px;
    }

    .mode-content {
        padding: 1.5rem;
    }

    .mode-content h3 {
        font-size: 1.5rem;
    }

    .mode-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .team-challenge-addon {
        padding: 3rem 0;
    }

    .challenge-intro p {
        font-size: 1rem;
    }

    .mode-image {
        height: 180px;
    }

    .mode-content {
        padding: 1.25rem;
    }

    .mode-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .mode-content h3 {
        font-size: 1.35rem;
    }
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .featured-activities {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-activity-card {
        padding: 2rem;
    }
    
    .activity-icon {
        font-size: 3rem;
    }
    
    .activity-content h3 {
        font-size: 1.5rem;
    }
}

/* ===========================================
   MOBILE HERO REDESIGN - Compact & Clean
   Only affects screens ≤480px
   =========================================== */

@media (max-width: 480px) {
    /* Reduce overall hero padding */
    .hero-content {
        padding: 5rem 1.25rem 2.5rem;
    }
    
    /* Smaller, more subtle badge */
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
        letter-spacing: 0.02em;
    }
    
    /* Slightly smaller title */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.15;
    }
    
    /* Shorter subtitle */
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    /* Horizontal stats row - compact design */
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: nowrap;
    }
    
    .stat {
        background: rgba(255, 255, 255, 0.08);
        padding: 0.6rem 0.5rem;
        border-radius: 8px;
        backdrop-filter: blur(8px);
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.25rem;
        margin-bottom: 0.15rem;
    }
    
    .stat-text {
        font-size: 0.65rem;
        opacity: 0.85;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Compact buttons */
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .hero .btn-primary-large {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ===========================================
   FAQ SECTION STYLING
   =========================================== */

.faq {
    padding: 5rem 0;
    background: var(--surface);
}

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

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
    color: var(--text-primary);
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question h3 {
    font-size: 1.25rem;
    margin: 0;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    line-height: 1.7;
}

/* Mobile FAQ adjustments */
@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.25rem;
    }
}

/* ===========================================
   PRICING TOGGLE
   =========================================== */

.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.pricing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 4px;
}

.pricing-toggle-option {
    background: transparent;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-toggle-option:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-toggle-option.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-label {
    display: block;
}

/* Price qualifier adjustments for dynamic content */
.price-qualifier {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.pricing-text {
    display: inline;
}

.myyntitakuu-link {
    display: inline-flex;
}

/* Responsive toggle */
@media (max-width: 480px) {
    .pricing-toggle {
        width: 100%;
    }
    
    .pricing-toggle-option {
        flex: 1;
        padding: 0.6rem 1rem;
    }
}

/* ===========================================
   GAME CATEGORY THEME COLORS
   =========================================== */

/* Red theme for racing simulators */
.game-category.featured[data-theme="red"] {
    border-color: rgba(231, 76, 60, 0.3);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, var(--surface) 100%);
}

.game-category.featured[data-theme="red"]:hover {
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.2);
}

.game-category.featured[data-theme="red"] h3 {
    color: #e74c3c;
}

.game-category.featured[data-theme="red"] .game-tag {
    border-color: rgba(231, 76, 60, 0.3);
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

/* Purple theme for VR games */
.game-category.featured[data-theme="purple"] {
    border-color: rgba(108, 92, 231, 0.3);
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, var(--surface) 100%);
}

.game-category.featured[data-theme="purple"]:hover {
    border-color: rgba(108, 92, 231, 0.5);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.2);
}

.game-category.featured[data-theme="purple"] h3 {
    color: #6c5ce7;
}

.game-category.featured[data-theme="purple"] .game-tag {
    border-color: rgba(108, 92, 231, 0.3);
    background: rgba(108, 92, 231, 0.1);
    color: #6c5ce7;
}

/* Blue theme for PlayStation */
.game-category.featured[data-theme="blue"] {
    border-color: rgba(52, 152, 219, 0.3);
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, var(--surface) 100%);
}

.game-category.featured[data-theme="blue"]:hover {
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
}

.game-category.featured[data-theme="blue"] h3 {
    color: #3498db;
}

.game-category.featured[data-theme="blue"] .game-tag {
    border-color: rgba(52, 152, 219, 0.3);
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

/* Red theme for Nintendo Switch */
.game-category.featured[data-theme="nintendo"] {
    border-color: rgba(230, 0, 18, 0.3);
    background: linear-gradient(135deg, rgba(230, 0, 18, 0.05) 0%, var(--surface) 100%);
}

.game-category.featured[data-theme="nintendo"]:hover {
    border-color: rgba(230, 0, 18, 0.5);
    box-shadow: 0 8px 30px rgba(230, 0, 18, 0.2);
}

.game-category.featured[data-theme="nintendo"] h3 {
    color: #e60012;
}

.game-category.featured[data-theme="nintendo"] .game-tag {
    border-color: rgba(230, 0, 18, 0.3);
    background: rgba(230, 0, 18, 0.1);
    color: #e60012;
}

/* Green theme for board games */
.game-category.featured[data-theme="green"] {
    border-color: rgba(39, 174, 96, 0.3);
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.05) 0%, var(--surface) 100%);
}

.game-category.featured[data-theme="green"]:hover {
    border-color: rgba(39, 174, 96, 0.5);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.2);
}

.game-category.featured[data-theme="green"] h3 {
    color: #27ae60;
}

.game-category.featured[data-theme="green"] .game-tag {
    border-color: rgba(39, 174, 96, 0.3);
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

/* Orange theme for party games */
.game-category.featured[data-theme="orange"] {
    border-color: rgba(243, 156, 18, 0.3);
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, var(--surface) 100%);
}

.game-category.featured[data-theme="orange"]:hover {
    border-color: rgba(243, 156, 18, 0.5);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.2);
}

.game-category.featured[data-theme="orange"] h3 {
    color: #f39c12;
}

.game-category.featured[data-theme="orange"] .game-tag {
    border-color: rgba(243, 156, 18, 0.3);
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
}

/* ===========================================
   WHAT IS GAMESPACE SECTION
   Inspired by team-benefits with metallic colors
   =========================================== */

.what-is-gamespace {
    padding: 6rem 0;
    background: var(--surface);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-large {
    background: linear-gradient(135deg, var(--surface-light) 0%, var(--surface) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.feature-large:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 60px rgba(116, 185, 255, 0.15);
}

.feature-large .feature-image {
    height: 100%;
    overflow: hidden;
}

.feature-large .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-large:hover .feature-image img {
    transform: scale(1.05);
}

.feature-large .feature-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-large .feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--gradient-neon-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-large .feature-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Features grid - 2 per row like team-benefits */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-neon-cyan);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-card .feature-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 200px;
}

.feature-card .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

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

/* Metallic color themes for each feature */
.feature-card:nth-child(1) {
    border-color: rgba(231, 76, 60, 0.3);
}

.feature-card:nth-child(1):hover {
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.15);
}

.feature-card:nth-child(1):hover h4 {
    color: #e74c3c;
}

.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
}

.feature-card:nth-child(2) {
    border-color: rgba(108, 92, 231, 0.3);
}

.feature-card:nth-child(2):hover {
    border-color: rgba(108, 92, 231, 0.5);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.15);
}

.feature-card:nth-child(2):hover h4 {
    color: #6c5ce7;
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #6c5ce7 0%, #5f27cd 100%);
}

.feature-card:nth-child(3) {
    border-color: rgba(52, 152, 219, 0.3);
}

.feature-card:nth-child(3):hover {
    border-color: rgba(52, 152, 219, 0.5);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);
}

.feature-card:nth-child(3):hover h4 {
    color: #3498db;
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #3498db 0%, #2980b9 100%);
}

.feature-card:nth-child(4) {
    border-color: rgba(39, 174, 96, 0.3);
}

.feature-card:nth-child(4):hover {
    border-color: rgba(39, 174, 96, 0.5);
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.15);
}

.feature-card:nth-child(4):hover h4 {
    color: #27ae60;
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, #27ae60 0%, #229954 100%);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .feature-large {
        grid-template-columns: 1fr;
    }
    
    .feature-large .feature-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .what-is-gamespace {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large .feature-content {
        padding: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .what-is-gamespace {
        padding: 3rem 0;
    }
    
    .feature-large .feature-content h3 {
        font-size: 1.5rem;
    }
    
    .feature-large .feature-content p {
        font-size: 1rem;
    }
}

/* ===========================================
   SUCCESS STORIES SECTION
   =========================================== */

.success-stories {
    padding: 6rem 0;
    background: var(--dark-gray);
}

.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;
    position: relative;
    padding-left: 1.5rem;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-blue);
    font-family: Georgia, serif;
    line-height: 1;
}

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

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

.author-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
}

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

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

.story-stats .stat {
    background: var(--surface);
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-dark);
}

/* Responsive testimonials */
@media (max-width: 768px) {
    .success-stories {
        padding: 4rem 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .story-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .success-stories {
        padding: 3rem 0;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .story-quote {
        font-size: 1rem;
        padding-left: 1rem;
    }
    
    .story-quote::before {
        font-size: 2.5rem;
        top: -8px;
    }
}
