/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #331B16;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    min-height: 100vh;
    /* Extend to safe areas on iOS */
    min-height: calc(100vh + env(safe-area-inset-bottom));
    overflow-x: hidden;
    position: relative;
    /* Ensure background extends to safe areas */
    padding-bottom: env(safe-area-inset-bottom);
}

/* Additional iOS Safari safe area handling */
@supports (padding: max(0px)) {
    body {
        /* Use max() for better browser support */
        padding-bottom: max(env(safe-area-inset-bottom), 0px);
        min-height: calc(100vh + max(env(safe-area-inset-bottom), 0px));
    }
}

/* Decorative Squares Background */
.squares-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.square {
    position: absolute;
    background: #FFC142;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.square:nth-child(even) {
    background: #FFC142;
    opacity: 0.4;
    animation-delay: -3s;
}

/* Individual square positioning and sizing */
.square-1 { width: 8px; height: 8px; top: 10%; right: 15%; animation-delay: 0s; }
.square-2 { width: 12px; height: 12px; top: 20%; right: 80%; animation-delay: -1s; }
.square-3 { width: 6px; height: 6px; top: 30%; right: 10%; animation-delay: -2s; }
.square-4 { width: 10px; height: 10px; top: 15%; right: 70%; animation-delay: -0.5s; }
.square-5 { width: 14px; height: 14px; top: 5%; right: 40%; animation-delay: -1.5s; }
.square-6 { width: 8px; height: 8px; top: 45%; right: 20%; animation-delay: -2.5s; }
.square-7 { width: 16px; height: 16px; top: 60%; right: 85%; animation-delay: -3.5s; }
.square-8 { width: 6px; height: 6px; top: 70%; right: 60%; animation-delay: -4s; }
.square-9 { width: 12px; height: 12px; top: 80%; right: 30%; animation-delay: -0.2s; }
.square-10 { width: 10px; height: 10px; top: 85%; right: 75%; animation-delay: -1.2s; }
.square-11 { width: 18px; height: 18px; top: 25%; right: 5%; animation-delay: -2.2s; }
.square-12 { width: 8px; height: 8px; top: 55%; right: 50%; animation-delay: -3.2s; }
.square-13 { width: 14px; height: 14px; top: 35%; right: 90%; animation-delay: -4.2s; }
.square-14 { width: 6px; height: 6px; top: 65%; right: 15%; animation-delay: -0.8s; }
.square-15 { width: 12px; height: 12px; top: 75%; right: 45%; animation-delay: -1.8s; }
.square-16 { width: 20px; height: 20px; top: 90%; right: 65%; animation-delay: -2.8s; }
.square-17 { width: 8px; height: 8px; top: 40%; right: 25%; animation-delay: -3.8s; }
.square-18 { width: 10px; height: 10px; top: 50%; right: 80%; animation-delay: -4.8s; }
.square-19 { width: 16px; height: 16px; top: 95%; right: 20%; animation-delay: -0.3s; }
.square-20 { width: 6px; height: 6px; top: 12%; right: 55%; animation-delay: -1.3s; }
.square-21 { width: 22px; height: 22px; top: 8%; right: 25%; animation-delay: -0.7s; }
.square-22 { width: 4px; height: 4px; top: 18%; right: 95%; animation-delay: -1.7s; }
.square-23 { width: 14px; height: 14px; top: 28%; right: 35%; animation-delay: -2.7s; }
.square-24 { width: 7px; height: 7px; top: 38%; right: 65%; animation-delay: -3.7s; }
.square-25 { width: 18px; height: 18px; top: 48%; right: 8%; animation-delay: -4.7s; }
.square-26 { width: 11px; height: 11px; top: 58%; right: 42%; animation-delay: -0.4s; }
.square-27 { width: 9px; height: 9px; top: 68%; right: 78%; animation-delay: -1.4s; }
.square-28 { width: 15px; height: 15px; top: 78%; right: 18%; animation-delay: -2.4s; }
.square-29 { width: 5px; height: 5px; top: 88%; right: 88%; animation-delay: -3.4s; }
.square-30 { width: 13px; height: 13px; top: 3%; right: 62%; animation-delay: -4.4s; }
.square-31 { width: 19px; height: 19px; top: 42%; right: 12%; animation-delay: -0.9s; }
.square-32 { width: 8px; height: 8px; top: 72%; right: 52%; animation-delay: -1.9s; }

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.8;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0 0;
}

.logo-icon {
    margin-bottom: -20px;
    animation: bounce 3.5s ease-in-out infinite;
}

.logo-icon img {
    transition: transform 0.3s ease;
}

.logo-icon:hover img {
    transform: scale(1.05);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #331B16;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #5A2D1A;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #E3570F 0%, #DC2626 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(227, 87, 15, 0.3);
    margin-bottom: 20px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(227, 87, 15, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5A2D1A;
    margin-top: 20px;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #331B16;
    text-align: center;
    margin-bottom: 30px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.step-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.step-icon img {
    transition: transform 0.3s ease;
    border-radius: 12px;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.step-icon-1,
.step-icon-2,
.step-icon-3 {
    transition: transform 0.3s ease;
}

.step:hover .step-icon-1,
.step:hover .step-icon-2,
.step:hover .step-icon-3 {
    transform: scale(1.1);
}

.step:hover .step-icon img {
    transform: scale(1.1);
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #331B16;
    margin-bottom: 15px;
    line-height: 1.3;
    text-wrap: balance;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5A2D1A;
    line-height: 1.6;
    text-wrap: balance;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 900px;
    }
    
    .step {
        max-width: 280px;
    }
    
    .step-description {
        max-width: 240px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* Hide some floating squares on tablets */
    .square-5, .square-8, .square-11, .square-14, .square-17, .square-20,
    .square-23, .square-26, .square-29, .square-32 {
        display: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0 0;
    }
    
    .logo-icon img {
        width: 200px;
        height: 200px;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-description {
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .how-it-works {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .steps-container {
        gap: 40px;
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .step {
        max-width: 320px;
    }
    
    .step-description {
        max-width: 260px;
        font-size: 0.95rem;
    }
    
    .step-icon img {
        width: 100px;
        height: 100px;
        max-width: 100px;
        max-height: 100px;
    }
    
    .step-icon svg {
        width: 100px;
        height: 100px;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    /* Hide additional squares on mobile - keep 12 squares visible */
    .square-2, .square-4, .square-6, .square-12, .square-16, .square-19, .square-25, .square-9, .square-15, .square-21 {
        display: none;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .step {
        max-width: 100%;
    }
    
    .step-description {
        max-width: 300px;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .square,
    .logo-icon,
    .step-icon-1,
    .step-icon-2,
    .step-icon-3 {
        animation: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
}

/* Focus states for accessibility */
.cta-button:focus {
    outline: 3px solid #F97316;
    outline-offset: 2px;
}

.cta-button:focus:not(:focus-visible) {
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-title,
    .section-title,
    .step-title {
        color: #000;
    }
    
    .hero-description,
    .cta-subtitle,
    .step-description {
        color: #333;
    }
    
    .cta-button {
        border: 2px solid #000;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #331B16 0%, #5A2D1A 100%);
    color: #FEF3C7;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    border-radius: 12px;
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FEF3C7;
    margin-bottom: 10px;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #FDE68A;
    line-height: 1.5;
    max-width: 250px;
    margin-bottom: 25px;
}

.footer-cta-button {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #E3570F 0%, #DC2626 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(227, 87, 15, 0.4);
    margin-top: 5px;
}

.footer-cta-button:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 87, 15, 0.5);
}

.footer-cta-button:active {
    transform: translateY(0);
}

.footer-cta-button:focus {
    outline: 3px solid #FFC142;
    outline-offset: 2px;
}

.footer-cta-button:focus:not(:focus-visible) {
    outline: none;
}

/* Footer links styles commented out since links are commented out in HTML */
/*
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
*/

.footer-column-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FEF3C7;
    margin-bottom: 20px;
}

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

.footer-list li {
    margin-bottom: 12px;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    color: #FDE68A;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFC142;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #5A2D1A;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #FDE68A;
    margin: 0;
}

/* Footer social styles commented out since social icons are commented out in HTML */
/*
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    color: #FDE68A;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(253, 230, 138, 0.1);
}

.footer-social-link:hover {
    color: #FFC142;
    transform: translateY(-2px);
    background: rgba(255, 193, 66, 0.2);
}
*/

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    /* Footer links styles commented out since links are commented out in HTML */
    /*
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    */
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    /* Footer links styles commented out since links are commented out in HTML */
    /*
    .footer-links {
        gap: 25px;
    }
    */
    
    /* Footer social styles commented out since social icons are commented out in HTML */
    /*
    .footer-social {
        justify-content: center;
    }
    */
    
    .footer-cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Manual Features Section */
.manual-features {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.manual-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.manual-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #331B16;
    margin-bottom: 15px;
    line-height: 1.2;
}

.manual-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #5A2D1A;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.manual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    justify-items: center;
}

.manual-item {
    text-align: center;
    max-width: 350px;
    width: 100%;
}

.manual-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}

.manual-icon img {
    transition: transform 0.3s ease;
    border-radius: 12px;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.manual-item:hover .manual-icon img {
    transform: scale(1.1);
}

.manual-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #331B16;
    margin-bottom: 15px;
    line-height: 1.3;
    text-wrap: balance;
}

.manual-item-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5A2D1A;
    line-height: 1.6;
    text-wrap: balance;
    max-width: 280px;
    margin: 0 auto;
}

.manual-cta {
    background: linear-gradient(135deg, #331B16 0%, #5A2D1A 100%);
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
}

.manual-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #FEF3C7;
    margin: 0;
    line-height: 1.5;
    text-wrap: balance;
}

.manual-cta-text strong {
    color: #FFC142;
}

/* Manual Features Responsive Design */
@media (max-width: 1024px) {
    .manual-features {
        padding: 60px 0;
    }
    
    .manual-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 40px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .manual-item {
        max-width: 280px;
    }
    
    .manual-item-description {
        max-width: 240px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .manual-features {
        padding: 60px 0;
    }
    
    .manual-content {
        padding: 0 15px;
    }
    
    .manual-subtitle {
        margin-bottom: 40px;
    }
    
    .manual-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 35px;
        max-width: 400px;
    }
    
    .manual-item {
        max-width: 320px;
    }
    
    .manual-icon {
        height: 80px;
        margin-bottom: 15px;
    }
    
    .manual-icon img {
        width: 80px;
        height: 80px;
    }
    
    .manual-item-title {
        font-size: 1.25rem;
    }
    
    .manual-item-description {
        font-size: 0.95rem;
        max-width: 260px;
    }
    
    .manual-cta {
        padding: 25px 20px;
    }
    
    .manual-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .manual-features {
        padding: 50px 0;
    }
    
    .manual-grid {
        gap: 50px;
    }
    
    .manual-item {
        max-width: 100%;
    }
    
    .manual-icon {
        height: 70px;
        margin-bottom: 10px;
    }
    
    .manual-icon img {
        width: 70px;
        height: 70px;
    }
    
    .manual-item-description {
        max-width: 300px;
        font-size: 0.9rem;
    }
    
    .manual-cta {
        padding: 20px 15px;
    }
    
    .manual-cta-text {
        font-size: 0.95rem;
    }
}

/* Accessibility for manual features */
@media (prefers-reduced-motion: reduce) {
    .manual-icon img {
        transition: none;
    }
    
    .manual-item:hover .manual-icon img {
        transform: none;
    }
}

/* Platform Availability Section */
.platform-availability {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.platform-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #331B16;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}

.platform-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #5A2D1A;
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.platform-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.platform-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E3570F 0%, #DC2626 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.platform-badge-secondary {
    background: linear-gradient(135deg, #5A2D1A 0%, #331B16 100%);
}

.platform-phase-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #331B16;
    margin-bottom: 40px;
    line-height: 1.3;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 20px;
}

.platform-item {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E3570F 0%, #DC2626 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    padding: 8px;
}

.platform-item:hover .platform-icon {
    transform: scale(1.05);
}

.platform-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.platform-icon svg {
    color: white;
}

.platform-item-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #331B16;
    margin-bottom: 12px;
    line-height: 1.3;
}

.platform-item-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5A2D1A;
    line-height: 1.5;
    text-wrap: balance;
}

.platform-expansion {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.platform-expansion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    min-width: 120px;
}

.platform-expansion-item svg {
    color: #E3570F;
    transition: transform 0.3s ease;
}

.platform-expansion-item:hover svg {
    transform: scale(1.1);
}

.platform-expansion-item span {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #5A2D1A;
}

.platform-expansion-note {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #5A2D1A;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    text-wrap: balance;
}

.platform-expansion-note strong {
    color: #E3570F;
}

/* Platform Availability Responsive Design */
@media (max-width: 768px) {
    .platform-availability {
        padding: 60px 0;
    }
    
    .platform-subtitle {
        margin-bottom: 40px;
    }
    
    .platform-timeline {
        gap: 50px;
    }
    
    .platform-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .platform-phase-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .platform-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .platform-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .platform-item-title {
        font-size: 1.2rem;
    }
    
    .platform-item-description {
        font-size: 0.95rem;
    }
    
    .platform-expansion {
        gap: 30px;
    }
    
    .platform-expansion-item {
        min-width: 100px;
        gap: 10px;
    }
    
    .platform-expansion-item svg {
        width: 28px;
        height: 28px;
    }
    
    .platform-expansion-note {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .platform-availability {
        padding: 50px 0;
    }
    
    .platform-timeline {
        gap: 40px;
    }
    
    .platform-expansion {
        gap: 25px;
        justify-content: space-around;
    }
    
    .platform-expansion-item {
        min-width: 80px;
    }
    
    .platform-expansion-item span {
        font-size: 0.85rem;
    }
}

/* Accessibility for platform availability */
@media (prefers-reduced-motion: reduce) {
    .platform-icon,
    .platform-expansion-item svg {
        transition: none;
    }
    
    .platform-item:hover .platform-icon,
    .platform-expansion-item:hover svg {
        transform: none;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #331B16;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(227, 87, 15, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 87, 15, 0.1);
}

.faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #331B16;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #5A2D1A;
    line-height: 1.6;
    margin: 0;
    text-wrap: balance;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-title {
        margin-bottom: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 50px 0;
    }
    
    .faq-grid {
        gap: 25px;
    }
    
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

/* Accessibility for FAQ */
@media (prefers-reduced-motion: reduce) {
    .faq-item {
        transition: none;
    }
    
    .faq-item:hover {
        transform: none;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: none;
    flex-direction: column;
    z-index: 1000;
}

.modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(227, 87, 15, 0.1);
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    flex-shrink: 0;
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #331B16;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #5A2D1A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(227, 87, 15, 0.1);
    color: #E3570F;
    transform: scale(1.1);
}

.modal-close:focus {
    outline: 2px solid #E3570F;
    outline-offset: 2px;
}

.modal-content {
    flex: 1;
    width: 100%;
    height: calc(100vh - 80px); /* Subtract header height */
}

.modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-content {
        height: calc(100vh - 70px); /* Adjust for smaller header */
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 12px 16px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-content {
        height: calc(100vh - 60px); /* Adjust for smaller header */
    }
}

/* Modal Animation */
.modal-overlay {
    animation: fadeIn 0.3s ease-out;
}

.modal-container {
    animation: slideDown 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Accessibility for modal */
@media (prefers-reduced-motion: reduce) {
    .modal-overlay,
    .modal-container {
        animation: none;
    }
    
    .modal-close:hover {
        transform: none;
    }
} 