/* Puny.bz Landing Page Styles */
/* Extracted from main template for better maintainability */

/* Puny.bz Brand Colors with Tonal Variations */
:root {
    /* Blue Tones */
    --puny-blue-10: #E8F4FD;
    --puny-blue-20: #D1E9FB;
    --puny-blue-30: #A3D3F7;
    --puny-blue-40: #75BDF3;
    --puny-blue-50: #55A6E6;
    --puny-blue-60: #4485B8;
    --puny-blue-70: #33648A;
    --puny-blue-80: #22435C;
    --puny-blue-90: #11222E;
    
    /* Red Tones */
    --puny-red-10: #FFE6E4;
    --puny-red-20: #FFCDC9;
    --puny-red-30: #FF9B93;
    --puny-red-40: #FF695D;
    --puny-red-50: #FF6F61;
    --puny-red-60: #CC594E;
    --puny-red-70: #99433A;
    --puny-red-80: #662D27;
    --puny-red-90: #331713;
    
    /* Green Tones */
    --puny-green-10: #E6FBF7;
    --puny-green-20: #CCF7EF;
    --puny-green-30: #99EFDF;
    --puny-green-40: #66E7CF;
    --puny-green-50: #4CD0B6;
    --puny-green-60: #3DA692;
    --puny-green-70: #2E7D6E;
    --puny-green-80: #1F5349;
    --puny-green-90: #0F2A25;
    
    /* Yellow Tones */
    --puny-yellow-10: #FEF9E6;
    --puny-yellow-20: #FDF3CC;
    --puny-yellow-30: #FBE799;
    --puny-yellow-40: #F9DB66;
    --puny-yellow-50: #FAB900;
    --puny-yellow-60: #C89400;
    --puny-yellow-70: #966F00;
    --puny-yellow-80: #644A00;
    --puny-yellow-90: #322500;
}

/* Global Styles */
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: var(--puny-blue-10);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section {
    margin-bottom: 6rem;
}

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

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--puny-blue-70);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--puny-blue-70);
    max-width: 600px;
    margin: 0 auto;
}

/* Trust Signal Header */
.trust-header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--puny-blue-10) 0%, var(--puny-blue-20) 100%);
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--puny-blue-80);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    color: var(--puny-blue-60);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Benefits - Clean Horizontal Layout */
.feature-benefits-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0 0 2.5rem 0;
    max-width: 900px;
    width: 100%;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.feature-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
    text-align: center;
}

.feature-benefit:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    transition: all 0.3s ease;
}

.benefit-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    transition: all 0.3s ease;
}

.feature-benefit:hover .benefit-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-benefit:hover .benefit-text {
    color: rgba(0, 0, 0, 0.9);
}

/* Legacy hero-features styles - keeping for backward compatibility */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    background: rgba(255, 255, 255, 0.8);
    color: var(--puny-blue-70);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--puny-blue-20);
}

.hero-cta {
    display: inline-block;
    background: var(--puny-blue-50);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(85, 166, 230, 0.3);
}

.hero-cta:hover {
    background: var(--puny-blue-60);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(85, 166, 230, 0.4);
    text-decoration: none;
    color: white;
}

.trust-badge {
    display: inline-block;
    background: var(--puny-yellow-50);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 16px rgba(250, 185, 0, 0.3);
}

/* Hero Section - Updated Styles */
.hero-section {
    background: white;
    border-radius: 32px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 60px rgba(85, 166, 230, 0.1);
    text-align: center;
    margin-bottom: 4rem;
}

/* Hero Headline Container */
.hero-headline-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 0 2rem 0;
    max-width: 55rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-section h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--puny-blue-70);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.headline-emoji {
    font-size: clamp(2.5rem, 5vw, 4rem);
    animation: emoji-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes emoji-bounce {
    0%, 70%, 100% {
        transform: scale(1) rotate(0deg);
    }
    35% {
        transform: scale(1.1) rotate(-5deg);
    }
}

.hero-section .subtitle {
    font-size: 1.5rem;
    color: var(--puny-blue-70);
    margin: 0 0 3rem 0;
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    text-align: center;
}

/* CTA Focus Section - Simplified */
.cta-focus-section {
    display: flex;
    justify-content: center;
    margin: 0 0 3rem 0;
    width: 100%;
}

.focus-message {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 208, 182, 0.3);
    border-radius: 25px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 16px rgba(76, 208, 182, 0.1);
    transition: all 0.3s ease;
    animation: focus-message-float 3s ease-in-out infinite;
}

.focus-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 208, 182, 0.15);
}

.focus-icon {
    font-size: 1.2rem;
    animation: focus-icon-pulse 2s ease-in-out infinite;
}

.focus-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--puny-blue-70);
    white-space: nowrap;
}

@keyframes focus-message-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes focus-icon-pulse {
    0%, 70%, 100% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.1);
    }
}
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(85, 166, 230, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    color: var(--puny-blue-80);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--puny-blue-50);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(85, 166, 230, 0.3);
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(85, 166, 230, 0.4);
    text-decoration: none;
    color: white;
}

/* GridStack Styles */
.grid-stack {
    margin-bottom: 3rem;
}

.grid-stack-item {
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.grid-stack-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.grid-stack-item-content {
    height: 150px;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Card Theme Styles */
.card-blue {
    background: var(--puny-blue-20);
    color: var(--puny-blue-80);
}

.card-blue h3 {
    color: var(--puny-blue-90);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-blue p {
    color: var(--puny-blue-70);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.card-blue .badge {
    background: var(--puny-blue-50);
    color: var(--puny-blue-10);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.card-blue .icon {
    color: var(--puny-blue-60);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.card-red {
    background: var(--puny-red-20);
    color: var(--puny-red-80);
}

.card-red h3 {
    color: var(--puny-red-90);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-red p {
    color: var(--puny-red-70);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.card-red .badge {
    background: var(--puny-red-50);
    color: var(--puny-red-10);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.card-red .icon {
    color: var(--puny-red-60);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.card-green {
    background: var(--puny-green-20);
    color: var(--puny-green-80);
}

.card-green h3 {
    color: var(--puny-green-90);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-green p {
    color: var(--puny-green-70);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.card-green .badge {
    background: var(--puny-green-50);
    color: var(--puny-green-10);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.card-green .icon {
    color: var(--puny-green-60);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.card-yellow {
    background: var(--puny-yellow-20);
    color: var(--puny-yellow-80);
}

.card-yellow h3 {
    color: var(--puny-yellow-90);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-yellow p {
    color: var(--puny-yellow-70);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.card-yellow .badge {
    background: var(--puny-yellow-50);
    color: var(--puny-yellow-10);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    align-self: flex-start;
}

.card-yellow .icon {
    color: var(--puny-yellow-60);
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

/* Grid Controls */
.grid-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.grid-control-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.grid-control-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-blue {
    background: var(--puny-blue-50);
    color: white;
}

.btn-green {
    background: var(--puny-green-50);
    color: white;
}

.btn-red {
    background: var(--puny-red-50);
    color: white;
}

.btn-yellow {
    background: var(--puny-yellow-50);
    color: white;
}

/* Problem/Solution Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255, 111, 97, 0.1);
    border-left: 4px solid var(--puny-red-50);
}

.problem-card h3 {
    color: var(--puny-red-70);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.problem-card .cost {
    background: var(--puny-red-10);
    color: var(--puny-red-80);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 1rem;
    display: inline-block;
}

.vs-divider {
    text-align: center;
    margin: 3rem 0;
}

.vs-badge {
    background: var(--puny-blue-50);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 8px 32px rgba(85, 166, 230, 0.3);
}

.solution-highlight {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(76, 208, 182, 0.1);
    border: 3px solid var(--puny-green-30);
    text-align: center;
}

.solution-highlight h3 {
    color: var(--puny-green-70);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.solution-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    background: var(--puny-green-10);
    color: var(--puny-green-80);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
}

/* Social Proof Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--puny-blue-80);
}

.testimonial-result {
    background: rgba(76, 208, 182, 0.1);
    color: var(--puny-green-80);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
}

/* Video Testimonial Styles */
.video-testimonial-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin: 1rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-testimonial-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Modern FAQ Section */
.modern-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.modern-faq-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--puny-blue-20);
    position: relative;
}

.modern-faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--puny-blue-50);
}

.faq-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.modern-faq-question {
    color: var(--puny-blue-80);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.modern-faq-question:hover {
    color: var(--puny-blue-50);
}

.faq-toggle {
    color: var(--puny-blue-50);
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--puny-blue-10);
}

.modern-faq-question:hover .faq-toggle {
    background: var(--puny-blue-50);
    color: white;
    transform: rotate(90deg);
}

.modern-faq-answer {
    color: var(--puny-blue-70);
    line-height: 1.6;
    font-size: 1rem;
    padding-left: 0;
    margin-top: 1rem;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ List Format Styles */
.modern-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.modern-faq-item {
    border-bottom: 1px solid var(--puny-blue-20);
    padding: 1rem 0;
}

.modern-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.modern-faq-item:first-child {
    padding-top: 0;
}

.modern-faq-item .faq-icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    margin-bottom: 0;
    display: inline;
}

.modern-faq-item .modern-faq-question {
    margin-bottom: 0;
    align-items: center;
}

.modern-faq-item .modern-faq-answer {
    margin-top: 0.75rem;
    padding-left: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    background: var(--puny-blue-50);
    color: white;
    padding: 4rem 2rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(85, 166, 230, 0.2);
}

.final-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-btn.primary {
    background: white;
    color: var(--puny-blue-60);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: var(--puny-blue-60);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--puny-blue-60);
    text-decoration: none;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-blue { color: var(--puny-blue-50); }
.stat-green { color: var(--puny-green-50); }
.stat-yellow { color: var(--puny-yellow-50); }
.stat-red { color: var(--puny-red-50); }

.stat-label {
    color: var(--puny-blue-70);
    font-weight: 600;
}

/* Loading Animation */
.grid-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    font-size: 1.2rem;
    color: var(--puny-blue-60);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--puny-blue-20);
    border-top: 4px solid var(--puny-blue-50);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes cardPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.card-animate {
    animation: cardPulse 0.6s ease-in-out;
}

/* What Can You Build Section */
.build-types-section {
    margin-bottom: 6rem;
}

.build-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .build-types-grid {
        grid-template-columns: 1fr;
    }
}

.build-type-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid;
}

.build-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.build-type-card.service { border-left-color: var(--puny-green-50); }
.build-type-card.store { border-left-color: var(--puny-red-50); }
.build-type-card.creator { border-left-color: var(--puny-yellow-50); }
.build-type-card.professional { border-left-color: var(--puny-blue-50); }

.build-type-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.build-type-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.build-type-icon.service { background: var(--puny-green-20); color: var(--puny-green-70); }
.build-type-icon.store { background: var(--puny-red-20); color: var(--puny-red-70); }
.build-type-icon.creator { background: var(--puny-yellow-20); color: var(--puny-yellow-70); }
.build-type-icon.professional { background: var(--puny-blue-20); color: var(--puny-blue-70); }

.build-type-card h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--puny-blue-80);
}

.build-type-card p {
    color: var(--puny-blue-60);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-types-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-type-tag {
    background: var(--puny-blue-10);
    color: var(--puny-blue-70);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-type-tag.service { background: var(--puny-green-10); color: var(--puny-green-70); }
.card-type-tag.store { background: var(--puny-red-10); color: var(--puny-red-70); }
.card-type-tag.creator { background: var(--puny-yellow-10); color: var(--puny-yellow-70); }

.build-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--puny-green-50);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Feature Cards - Carousel & Grid */
.feature-cards-carousel {
    margin-bottom: 3rem;
    position: relative;
}

/* Hide carousel on desktop, show grid */
@media (min-width: 1024px) {
    .feature-cards-carousel {
        display: none;
    }
    
    .feature-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 5rem 1.5rem;
        margin-bottom: 3rem;
        align-items: start;
    }
}

/* Show carousel on mobile/tablet, hide grid */
@media (max-width: 1023px) {
    .feature-cards-grid {
        display: none;
    }
    
    .feature-cards-carousel {
        display: block;
    }
}

/* Swiper Carousel Styling */
.swiper {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    box-sizing: border-box;
}

.feature-cards-carousel {
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

.swiper-slide > a {
    width: 100%;
    height: 100%;
    display: flex;
}

/* Navigation arrows */
.swiper-button-prev,
.swiper-button-next {
    color: var(--puny-blue-50);
    font-size: 1.2rem;
    font-weight: 900;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--puny-blue-50);
    color: white;
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    font-weight: 900;
}

/* Pagination dots */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(85, 166, 230, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    background: var(--puny-blue-50);
    transform: scale(1.2);
}

.feature-cards-grid > a {
    display: flex;
    height: 100%;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feature-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.feature-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.feature-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--puny-blue-80);
}

.feature-card p {
    color: var(--puny-blue-60);
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.feature-preview {
    background: var(--puny-blue-10);
    border-radius: 12px;
    padding: 1rem;
    margin-top: auto;
    text-align: center;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-preview-mockup {
    background: white;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    min-width: 120px;
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.example-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.example-preview {
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.example-content {
    padding: 1.5rem;
}

.example-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--puny-blue-80);
}

.example-content p {
    color: var(--puny-blue-60);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.example-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.example-feature {
    background: var(--puny-blue-10);
    color: var(--puny-blue-70);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.try-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--puny-blue-50);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.try-button:hover {
    background: var(--puny-blue-60);
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

/* Examples Toggle Button */
.examples-toggle-container {
    text-align: center;
    margin: 2rem 0;
}

.examples-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--puny-blue-50);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(85, 166, 230, 0.3);
}

.examples-toggle-btn:hover {
    background: var(--puny-blue-60);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(85, 166, 230, 0.4);
}

.toggle-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.toggle-arrow.rotated {
    transform: rotate(180deg);
}

/* Examples Additional Grid */
.examples-additional {
    margin-top: 2rem;
    animation: slideDown 0.4s ease-out;
}

.examples-additional.hiding {
    animation: slideUp 0.3s ease-in;
}

/* Problem Section Toggle */
.problem-toggle-container {
    text-align: center;
    margin: 2rem 0;
}

.problem-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--puny-red-50);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 111, 97, 0.3);
}

.problem-toggle-btn:hover {
    background: var(--puny-red-60);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 111, 97, 0.4);
}

.problem-section-content {
    margin-top: 2rem;
    animation: slideDown 0.4s ease-out;
}

.problem-section-content.hiding {
    animation: slideUp 0.3s ease-in;
}

/* Solution Section Toggle */
.solution-toggle-container {
    text-align: center;
    margin: 2rem 0;
}

.solution-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--puny-green-50);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(76, 208, 182, 0.3);
}

.solution-toggle-btn:hover {
    background: var(--puny-green-60);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(76, 208, 182, 0.4);
}

.solution-section-content {
    margin-top: 2rem;
    animation: slideDown 0.4s ease-out;
}

.solution-section-content.hiding {
    animation: slideUp 0.3s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 2000px;
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
        max-height: 2000px;
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
        max-height: 0;
    }
}

/* Simple 4-Card Preview Grid */
.simple-grid-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.simple-grid-header {
    text-align: center;
    margin-bottom: 2rem;
}

.simple-grid-header h3 {
    color: var(--puny-blue-70);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.simple-grid-header p {
    color: var(--puny-blue-60);
    margin: 0;
}

.simple-grid-container {
    max-width: 600px;
    margin: 0 auto;
}

.simple-grid {
    margin-bottom: 1rem;
}

.simple-grid .grid-stack-item {
    border-radius: 12px;
}

.simple-grid .grid-stack-item-content {
    height: 120px;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    cursor: grab;
}

.simple-grid .grid-stack-item-content:active {
    cursor: grabbing;
}

.simple-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.simple-card-title {
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.simple-card-content {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.3;
}

/* Simple card themes */
.simple-card-blue {
    background: var(--puny-blue-20);
    color: var(--puny-blue-80);
}

.simple-card-blue .simple-card-title {
    color: var(--puny-blue-90);
}

.simple-card-red {
    background: var(--puny-red-20);
    color: var(--puny-red-80);
}

.simple-card-red .simple-card-title {
    color: var(--puny-red-90);
}

.simple-card-green {
    background: var(--puny-green-20);
    color: var(--puny-green-80);
}

.simple-card-green .simple-card-title {
    color: var(--puny-green-90);
}

.simple-card-yellow {
    background: var(--puny-yellow-20);
    color: var(--puny-yellow-80);
}

.simple-card-yellow .simple-card-title {
    color: var(--puny-yellow-90);
}

.try-instructions {
    text-align: center;
    color: var(--puny-blue-60);
    font-size: 0.9rem;
    font-style: italic;
}

/* Card size labels */
.card-size-label {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--puny-blue-80);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    pointer-events: none;
    z-index: 10;
}

/* Enhanced resize handle visibility */
.simple-grid .ui-resizable-se {
    background: var(--puny-blue-50);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    bottom: 5px;
    right: 5px;
}

.simple-grid .ui-resizable-se:hover {
    background: var(--puny-blue-60);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-control-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .final-cta {
        padding: 3rem 1rem;
    }
    
    .cta-buttons {
        align-items: center;
    }
    
    .cta-btn {
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* FAQ Mobile Styles */
    .modern-faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modern-faq-card {
        padding: 1.5rem;
    }
    
    .faq-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .modern-faq-question {
        font-size: 1rem;
        line-height: 1.3;
        gap: 0.75rem;
    }
    
    .faq-toggle {
        width: 20px;
        height: 20px;
        font-size: 1.25rem;
    }
    
    .modern-faq-answer {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }
    
    /* FAQ List Mobile Styles */
    .modern-faq-item {
        padding: 1.25rem 0;
    }
    
    .modern-faq-item .faq-icon {
        font-size: 1.1rem;
        margin-right: 0.5rem;
    }
    
    .modern-faq-item .modern-faq-answer {
        padding-left: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-top: 0.75rem;
    }
    
    /* Video Testimonial Mobile Styles */
    .video-testimonial-container {
        margin: 0.75rem 0;
        border-radius: 8px;
    }
    
    .video-testimonial-container iframe {
        border-radius: 8px;
    }
    
    /* Simple Grid Responsive */
    .simple-grid-container {
        max-width: 100%;
    }
    
    .simple-grid .grid-stack-item-content {
        height: 100px;
        padding: 0.75rem;
    }
    
    .simple-card-icon {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .simple-card-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .simple-card-content {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .simple-grid-section {
        padding: 1.5rem;
    }
    
    .try-instructions {
        font-size: 0.8rem;
    }
}

/* Mobile-specific carousel styling */
@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    
    .landing-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 1.2rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-headline-container {
        gap: 1.2rem;
        margin: 0 0 2.5rem 0;
    }
    
    .hero-section h1 {
        font-size: clamp(1.8rem, 5vw, 3rem);
        line-height: 1.25;
    }
    
    .headline-emoji {
        font-size: clamp(2.2rem, 6vw, 3.2rem);
    }
    
    .hero-section .subtitle {
        font-size: 1.08rem;
        margin: 0 0 2.5rem 0;
        line-height: 1.6;
    }
    
    .cta-focus-section {
        margin: 0 0 2.5rem 0;
    }
    
    .focus-message {
        padding: 0.9rem 1.5rem;
        border-radius: 20px;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .focus-text {
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .hero-features {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    
    /* Feature Benefits Mobile Styles */
    .feature-benefits-container {
        gap: 1rem;
        margin: 0 0 2rem 0;
        max-width: 100%;
    }
    
    .feature-benefit {
        padding: 0.8rem 1rem;
        min-width: 120px;
        gap: 0.4rem;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .benefit-text {
        font-size: 0.8rem;
    }
    
    .hero-feature {
        font-size: 0.96rem;
        padding: 0.48rem 0.96rem;
    }
    
    .hero-cta {
        font-size: 1.08rem;
        padding: 0.9rem 1.8rem;
    }
    
    .feature-cards-carousel {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem;
    }
    
    .feature-cards-carousel .feature-card {
        padding: 1.2rem;
        max-width: 90vw;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-section h1 {
        font-size: clamp(1.5rem, 6vw, 2.4rem);
        margin-bottom: 0.6rem;
        line-height: 1.1;
    }
    
    .hero-section .subtitle {
        font-size: 1.02rem;
        margin-bottom: 0.9rem;
    }
    
    .hero-features {
        gap: 0.48rem;
        margin-bottom: 1.2rem;
        flex-wrap: wrap;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        padding: 0.36rem 0.72rem;
        line-height: 1.2;
    }
    
    .hero-cta {
        font-size: 1.02rem;
        padding: 0.78rem 1.5rem;
    }
    
    .feature-cards-carousel .feature-card {
        padding: 1rem;
    }
    
    .feature-cards-carousel .feature-card h4 {
        font-size: 0.95rem;
    }
    
    .feature-cards-carousel .feature-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}