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

/* Fonts */
html {
    /* Darker solid background everywhere */
    background-color: #022c22;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: white;
    /* Solid background to match html */
    background-color: #022c22;
    overflow-x: hidden;
}

/* Inform the browser we support both color schemes */
:root {
    color-scheme: light dark;
}

/* Remove light-mode overrides; enforce dark UI across schemes */

/* Background */
.app-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Place above the root canvas (html background) but below content */
    z-index: 0;
    background: #022c22;
}

.bg-gradient-1 { display: none !important; }

.bg-gradient-2 { display: none !important; }

.bg-gradient-3 { display: none !important; }

.grid-pattern { display: none !important; }

/* Main Container */
.app-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* Navigation */
.navigation {
    padding: 24px;
}

.nav-content {
    max-width: 1152px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Ensure brand links look like plain brand rows */
.nav-brand,
.footer-brand,
.instructions-footer-brand {
    text-decoration: none;
    color: inherit;
}

/* Prevent underlines/highlights in all interaction states */
.nav-brand:link,
.nav-brand:visited,
.nav-brand:hover,
.nav-brand:active,
.footer-brand:link,
.footer-brand:visited,
.footer-brand:hover,
.footer-brand:active,
.instructions-footer-brand:link,
.instructions-footer-brand:visited,
.instructions-footer-brand:hover,
.instructions-footer-brand:active {
    text-decoration: none !important;
    text-decoration-color: transparent !important;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.app-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #34d399, #86efac, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 24px;
    max-width: 1024px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }
}

.title-gradient-1 {
    background: linear-gradient(90deg, #34d399, #86efac, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-white {
    color: white;
}

.title-gradient-2 {
    background: linear-gradient(90deg, #a78bfa, #f472b6, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 512px;
    margin: 0 auto;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
}

.download-button {
    background: linear-gradient(90deg, #10b981, #06b6d4, #8b5cf6);
    border: none;
    border-radius: 16px;
    padding: 20px 40px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
}

.download-button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #059669, #0891b2, #7c3aed);
    box-shadow: 0 25px 50px -12px rgba(52, 211, 153, 0.3);
}

.download-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.apple-icon {
    width: 24px;
    height: 24px;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    max-width: 512px;
    margin: 0 auto;
}

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

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 80px 24px;
    max-width: 1152px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.features-highlight {
    background: linear-gradient(90deg, #34d399, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 512px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-1 {
    order: 2;
}

.feature-2 {
    order: 4;
}

@media (min-width: 1024px) {
    .feature-1 {
        order: 1;
    }
    .feature-2 {
        order: 4;
    }
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.sparkles-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #86efac;
}

.zap-icon {
    background: rgba(6, 182, 212, 0.2);
    color: #67e8f9;
    border-color: rgba(6, 182, 212, 0.3);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    white-space: nowrap;
}

/* Feature header container */
.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .feature-title {
        font-size: 20px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .feature-header {
        align-items: flex-start;
        gap: 16px;
    }
}

.feature-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
}

.feature-dot.cyan {
    background: #22d3ee;
}

.feature-image {
    border-radius: 24px;
    width: 100%;
    max-width: 384px;
    margin: 0 auto;
}

.feature-image-1 {
    order: 1;
}

.feature-image-2 {
    order: 3;
}

@media (min-width: 1024px) {
    .feature-image-1 {
        order: 2;
    }
    .feature-image-2 {
        order: 3;
    }
}

/* iOS Section */
.ios-section {
    padding: 80px 24px;
    max-width: 1152px;
    margin: 0 auto;
}

.ios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .ios-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ios-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 2;
}

@media (min-width: 1024px) {
    .ios-content {
        order: 1;
    }
}

.ios-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.ios-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    flex-shrink: 0;
}

.ios-icon svg {
    width: 24px;
    height: 24px;
}

.ios-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.ios-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.ios-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ios-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.ios-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #60a5fa;
}

.ios-callout {
    padding-top: 16px;
}

.ios-callout > div:first-child {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ios-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    z-index: -1;
}

.ios-callout-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ios-callout-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
}

.ios-callout-icon svg {
    width: 16px;
    height: 16px;
}

.ios-callout-header span {
    color: #93c5fd;
    font-weight: 500;
}

.ios-callout p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.ios-image {
    position: relative;
    border-radius: 24px;
    width: 100%;
    max-width: 384px;
    margin: 0 auto;
    order: 1;
}

@media (min-width: 1024px) {
    .ios-image {
        order: 2;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 24px;
    max-width: 1024px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.pricing-highlight {
    background: linear-gradient(90deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    /* Center two-card layout on wider screens */
    max-width: 800px;
    margin: 0 auto;
}

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

.pricing-card {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pricing-card.popular {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(147, 51, 234, 0.5);
    padding-top: 32px;
    margin-top: 12px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.pricing-card:nth-child(1)::before {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
}

.pricing-card:nth-child(2)::before {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.1));
}

.pricing-card.popular::before {
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.2), rgba(236, 72, 153, 0.2));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Adjust glow effect for popular card */
.pricing-card.popular::before {
    top: 12px;
}

/* Policy content */
.policy-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-top: 8px;
}

.policy-content p {
    color: rgba(255, 255, 255, 0.75);
}

.policy-content ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-content li {
    color: rgba(255, 255, 255, 0.8);
}

.policy-content .policy-credit {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.pricing-card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.pricing-icon.cyan {
    background: rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #67e8f9;
}

.pricing-icon.emerald {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
}

.pricing-icon svg {
    width: 24px;
    height: 24px;
}

.pricing-app-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.pricing-card-price {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.pricing-card-description {
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Section */
.cta-section {
    padding: 80px 24px;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.cta-container {
    position: relative;
}

.cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 24px;
    filter: blur(48px);
    z-index: -1;
}

.cta-content {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 512px;
    margin: 0 auto 32px;
}

.cta-button {
    background: linear-gradient(90deg, #10b981, #06b6d4, #8b5cf6);
    border: none;
    border-radius: 16px;
    padding: 24px 48px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
}

.cta-button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #059669, #0891b2, #7c3aed);
    box-shadow: 0 25px 50px -12px rgba(52, 211, 153, 0.3);
}

.cta-button-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-apple-icon {
    width: 28px;
    height: 28px;
}

/* Footer */
.footer {
    padding: 48px 24px;
    max-width: 1152px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer-brand-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #34d399, #86efac, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-right {
        flex-direction: row;
        gap: 24px;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Support Button */
.support-button {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    color: rgba(16, 185, 129, 0.9);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-button:hover {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.3), rgba(6, 182, 212, 0.3));
    border-color: rgba(16, 185, 129, 0.5);
    color: rgba(16, 185, 129, 1);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.2);
}

.support-button-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-icon {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .features-title,
    .pricing-title,
    .cta-title {
        font-size: 28px;
    }
    
    .hero-subtitle,
    .features-subtitle,
    .pricing-subtitle,
    .cta-subtitle {
        font-size: 16px;
    }
    
    .feature-description,
    .ios-description {
        font-size: 16px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }
    
    .footer-content {
        text-align: center;
    }
}

\/* Older iOS Callout */
.older-ios-callout {
    margin-top: 16px;
}

.older-ios-callout > div:first-child {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.older-ios-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    z-index: -1;
}

.older-ios-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.older-ios-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.older-ios-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fed7aa;
}

.older-ios-icon svg {
    width: 16px;
    height: 16px;
}

.older-ios-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.older-ios-title {
    color: #fed7aa;
    font-weight: 500;
    font-size: 14px;
}

.older-ios-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
}

.instructions-button {
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    color: #fed7aa;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.instructions-button:hover {
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.3), rgba(245, 158, 11, 0.3));
    border-color: rgba(249, 115, 22, 0.5);
    color: #fdba74;
    transform: scale(1.05);
}

/* Instructions Page */
.instructions-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
}

.instructions-page.hidden {
    display: none;
}

.instructions-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* Instructions Navigation */
.instructions-nav {
    padding: 24px;
    max-width: 1152px;
    margin: 0 auto;
}

.instructions-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Instructions Header */
.instructions-header {
    text-align: center;
    padding: 48px 24px;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.instructions-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #06b6d4, #3b82f6);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
    color: white;
}

.instructions-hero-icon svg {
    width: 40px;
    height: 40px;
}

.instructions-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
}

@media (min-width: 1024px) {
    .instructions-title {
        font-size: 48px;
    }
}

.instructions-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 768px;
    margin: 0 auto;
}

/* iOS 26 Note */
.ios26-note {
    position: relative;
    max-width: 512px;
    margin: 32px auto 0;
}

.ios26-note > div:first-child {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ios26-note::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    z-index: -1;
}

.ios26-note-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ios26-note-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
}

.ios26-note-icon svg {
    width: 16px;
    height: 16px;
}

.ios26-note-header span {
    color: #93c5fd;
    font-weight: 500;
}

.ios26-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Steps Section */
.steps-section {
    padding: 48px 24px;
    max-width: 1024px;
    margin: 0 auto;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-card {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.step-card:nth-child(1)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.step-card:nth-child(2)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.step-card:nth-child(3)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.step-card:nth-child(4)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.step-card:nth-child(5)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.step-card:nth-child(6)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.step-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.download-gradient {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.music-gradient {
    background: linear-gradient(135deg, #10b981, #22c55e);
}

.apple-gradient {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.settings-gradient {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.check-gradient {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.final-gradient {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-content {
    min-width: 0;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.step-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.step-instructions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-instruction {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.instruction-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    margin-top: 6px;
    flex-shrink: 0;
}

/* Troubleshooting Section */
.troubleshooting-section {
    padding: 48px 24px;
    max-width: 1024px;
    margin: 0 auto;
}

.troubleshooting-header {
    text-align: center;
    margin-bottom: 32px;
}

.troubleshooting-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.troubleshooting-highlight {
    background: linear-gradient(90deg, #f97316, #ef4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.troubleshooting-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.troubleshooting-card {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.troubleshooting-card:nth-child(1)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.troubleshooting-card:nth-child(2)::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 16px;
    filter: blur(24px);
    opacity: 0.5;
    z-index: -1;
}

.troubleshooting-card-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.troubleshooting-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.troubleshooting-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.troubleshooting-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.troubleshooting-dot.orange {
    background: #f97316;
}

.troubleshooting-dot.purple {
    background: #a855f7;
}

/* Instructions CTA Section */
.instructions-cta-section {
    padding: 80px 24px;
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.instructions-cta-container {
    position: relative;
}

.instructions-cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 24px;
    filter: blur(48px);
    z-index: -1;
}

.instructions-cta-content {
    position: relative;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.instructions-cta-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.instructions-cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 512px;
    margin: 0 auto 32px;
}

.instructions-cta-button {
    background: linear-gradient(90deg, #10b981, #06b6d4, #8b5cf6);
    border: none;
    border-radius: 16px;
    padding: 24px 48px;
    color: white;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
}

.instructions-cta-button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #059669, #0891b2, #7c3aed);
    box-shadow: 0 25px 50px -12px rgba(52, 211, 153, 0.3);
}

.instructions-cta-button-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.instructions-cta-apple-icon {
    width: 28px;
    height: 28px;
}

/* Instructions Footer */
.instructions-footer {
    padding: 48px 24px;
    max-width: 1152px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instructions-footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

@media (min-width: 768px) {
    .instructions-footer-content {
        flex-direction: row;
    }
}

.instructions-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.instructions-footer-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.instructions-footer-brand-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, #34d399, #86efac, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instructions-footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* Utility */
.hidden {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .features-title,
    .pricing-title,
    .cta-title {
        font-size: 28px;
    }
    
    .hero-subtitle,
    .features-subtitle,
    .pricing-subtitle,
    .cta-subtitle {
        font-size: 16px;
    }
    
    .feature-description,
    .ios-description {
        font-size: 16px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }
    
    .footer-content {
        text-align: center;
    }

    .instructions-title {
        font-size: 32px;
    }

    .instructions-subtitle {
        font-size: 16px;
    }

    .step-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .step-title {
        font-size: 20px;
        text-align: center;
    }

    .step-description {
        font-size: 16px;
        text-align: center;
    }

    .instructions-cta-title {
        font-size: 28px;
    }

    .instructions-cta-subtitle {
        font-size: 16px;
    }

    .troubleshooting-title {
        font-size: 24px;
    }

    .older-ios-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .instructions-nav-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* Language Switcher Styles */
.language-switcher {
    position: relative;
    margin-left: auto;
}

.language-switcher-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.language-switcher-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.language-switcher-button:focus-visible {
    outline: 2px solid #34d399;
    outline-offset: 2px;
    border-radius: 8px;
}

.language-switcher-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.language-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.language-switcher-button[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    min-width: 200px;
}

.language-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-options {
    padding: 8px;
    max-height: 340px; /* prevent overflow on small screens */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.language-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option:focus-visible {
    outline: 2px solid #34d399;
    outline-offset: 2px;
    border-radius: 8px;
}

.language-option.active {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
}

.language-name {
    font-weight: 500;
    margin-bottom: 2px;
}

.language-native {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 400;
}

/* RTL Support */
[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .language-option {
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .language-switcher-button {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .language-icon {
        width: 14px;
        height: 14px;
    }
    
    .dropdown-icon {
        width: 12px;
        height: 12px;
    }
    
    .language-dropdown {
        min-width: 180px;
    }
    
    .language-option {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .language-switcher-button .current-language {
        display: none;
    }
    
    .language-switcher-button {
        padding: 8px;
        min-width: 40px;
        justify-content: center;
    }
    
    .language-dropdown {
        right: -10px;
        min-width: 160px;
    }
    
    [dir="rtl"] .language-dropdown {
        right: auto;
        left: -10px;
    }
}

/* Animation for language change */
.language-switcher-button.loading .language-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Error message styles */
.language-error {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}