@import url('about.css');
:root {
    --coral: #FF7F7F;
    --coral-light: #FFB3B3;
    --coral-dark: #E55A5A;
    --mint: #7FFFD4;
    --mint-light: #B3FFE6;
    --mint-dark: #5ACCAA;
    --white-coral: #FFF5F5;
    --text-dark: #2D3748;
    --text-light: #718096;
    --gradient-coral: linear-gradient(0deg, #FF7F7F 0%, #ffa8a8 100%);
    --gradient-mint: linear-gradient(135deg, #7FFFD4 0%, #B3FFE6 100%);
    --gradient-hero: linear-gradient(
        180deg,
        #FFD3CB 0%,
        #FFF8F8 50%,
        #FFCECA 100%
    );
}

/* Language picker */
.footer-language {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.language-picker {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: "Saans", "Inter", "Helvetica Neue", Arial, sans-serif;
}

.language-picker__label {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: #23514a;
}

.language-picker__control {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.language-picker__button {
    width: 100%;
    text-align: left;
    background: hsl(152 35% 59% / 1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 0.85rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.language-picker__button:focus-visible,
.language-picker__button:hover {
    outline: none;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(51, 204, 153, 0.3);
    background: hsl(152 35% 54% / 1);
}

.language-picker__control.is-open .language-picker__button {
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(51, 204, 153, 0.3);
    background: hsl(152 35% 51% / 1);
}

.language-picker__value {
    flex: 1;
}

.language-picker__icon {
    display: inline-flex;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s ease, color 0.2s ease;
}

.language-picker__control.is-open .language-picker__icon {
    transform: rotate(180deg);
    color: #ffffff;
}

.language-picker__list {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    margin-bottom: 0.75rem;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: rgba(25, 21, 43, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 0.75rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 45px rgba(16, 12, 32, 0.46);
    z-index: 20;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.language-picker__list.is-visible {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.language-picker__option {
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-picker__option:hover,
.language-picker__option:focus {
    background: rgba(255, 255, 255, 0.08);
}

.language-picker__option.is-active {
    background: rgba(156, 135, 255, 0.22);
    color: #ffffff;
}

.language-picker__hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 768px) {
    .language-picker {
        margin-top: 1.5rem;
    }

    .language-picker__label {
        font-size: 1rem;
    }

    .language-picker__list {
        bottom: auto;
        top: 100%;
        margin-bottom: 0;
        margin-top: 0.75rem;
    }
}

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

body {
    font-family: 'Merriweather', Arial, serif;
    background-color: var(--white-coral);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* LIQUID GLASS STYLES */
.liquidGlass-wrapper {
    position: relative;
    display: flex;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
    position: absolute;
    z-index: 0;
    inset: 0;
    backdrop-filter: blur(3px);
    filter: url(#glass-distortion);
    overflow: hidden;
}

.liquidGlass-tint {
    z-index: 1;
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 66%);
}

.liquidGlass-shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.5),
        inset -1px -1px 1px 1px rgba(255, 255, 255, 0.5);
}

.liquidGlass-text {
    z-index: 3;
    color: black;
}

/* Navigation Wrapper */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 90%;
}

.nav-glass {
    border-radius: 2rem;
}

.nav-glass,
.nav-glass > div {
    border-radius: 2rem;
}

/* Navigation */
.navbar {
    position: relative;
    background: transparent;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coral);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#logo-image {
    height: 34px;
    width: auto;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--coral);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-coral);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 127, 127, 0.3);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: var(--coral);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 127, 127, 0.95), rgb(124 52 52 / 95%));
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    transform: translateX(0);
}

.mobile-nav-overlay .nav-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-overlay .nav-links a {
    font-size: 2rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.mobile-nav-overlay .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.mobile-nav-overlay .nav-links a:hover::before {
    left: 100%;
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease-out;
}

.hero h1 {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: clamp(2.5rem, 5vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #5a4747;
    text-shadow: 0 2px 12px rgba(255,255,255,0.25);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #312424;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: #ff7f7f;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffd6d6;
    box-shadow: 0 2px 12px rgba(255,127,127,0.06);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.button-secondary:hover {
    background: #fff1ee;
    color: #e55a5a;
    border-color: #ffb3b3;
    box-shadow: 0 6px 24px rgba(255,127,127,0.13);
    transform: translateY(-2px) scale(1.03);
}

.hero-art {
    position: relative;
    animation: fadeInRight 1s ease-out;
    margin-top: -70px;
}

.hero-shader {
    border-radius: 50%;
    height: 395px;
    position: relative;
    width: 395px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #4faa7c;
    box-shadow: 0 20px 40px rgba(33, 230, 180, 0.25);
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
}

.hero-shader__canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-shader__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 2;
}

.hero-shader__message {
    position: absolute;
    inset: 0;
    display: none;
    place-items: center;
    background: #4faa7c;
    color: #cfe9e0;
    font: 14px/1.4 system-ui, -apple-system, "Segoe UI", Roboto, "Inter", Arial, sans-serif;
    padding: 24px;
    text-align: center;
    z-index: 3;
}

/* Floating particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 127, 127, 0.3);
    border-radius: 50%;
    animation: floatParticle 8s infinite linear;
}

.particle:nth-child(2n) {
    background: rgba(127, 255, 212, 0.3);
    animation-duration: 10s;
}

.particle:nth-child(3n) {
    background: rgba(255, 179, 179, 0.4);
    animation-duration: 12s;
}

/* App Features Section */
.app-features {
    padding: 6rem 0;
    background: white;
}

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

.section-header h2 {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white-coral);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 127, 127, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 127, 127, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 127, 127, 0.15);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.feature-icon img {
    width: 292px;
    height: 292px;
    object-fit: contain;
}

.feature-card:nth-child(even) .feature-icon {
    color: var(--text-dark);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* CBT Techniques Section */
.cbt-section {
    padding: 6rem 0;
    background: var(--white-coral);
}

.cbt-features-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2.5rem;
    margin: 2.5rem 0 2rem 0;
    flex-wrap: wrap;
}

.cbt-feature-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 180px;
    max-width: 220px;
    min-width: 140px;
    margin: 0 0.5rem;
}

.cbt-illustration {
    height: 180px;
    width: auto;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(127, 255, 212, 0.08), 0 2px 16px rgba(255, 127, 127, 0.12);
    object-fit: contain;
    background: white;
    transition: all 0.3s cubic-bezier(.4,2,.6,1);
    margin-bottom: 1.2rem;
}

.cbt-illustration:hover {
    transform: scale(1.04) translateY(-8px) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(255,127,127,0.18), 0 4px 24px rgba(127,255,212,0.18);
}

.cbt-desc {
    width: 100%;
    background: rgba(255,255,255,0.9);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(255,127,127,0.06);
    padding: 1.5rem 1rem;
    text-align: center;
}

.cbt-desc h3 {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.cbt-desc p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

/* Support Section Styles - Moved to support-section.css */

/* Download Section */
.download-section {
    padding: 6rem 0;
    background: white;
}

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

.download-content h2 {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.download-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--text-dark);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 55, 72, 0.3);
}

.app-store-btn i {
    font-size: 1.5rem;
}

.phone-mockup {
    position: relative;
    text-align: center;
}

.phone-mockup img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--white-coral);
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 127, 127, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 127, 127, 0.1);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
}

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

.stars {
    color: #FFD700;
    margin-top: 0.5rem;
}

/* Security & Privacy Section */
.security-section {
    padding: 6rem 0;
    background: white;
}

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

.security-card {
    text-align: center;
    padding: 2rem;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-hero);
    text-align: center;
    color: #3d4451;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.3;
}

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

.cta-section h2 {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-white {
    background: white;
    color: var(--coral);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #d0ffe9;
    color: #78b1a2;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #23514a;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.footer-section p,
.footer-section a {
    color: #46675e;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #3d7d73;
}

.footer-bottom {
    border-top: 1px solid rgba(61, 125, 115, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #78b1a2;
    font-size: 0.875rem;
}

/* Mobile full-screen footer */
@media (max-width: 768px) {
    .footer {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 2rem 0;
    }

    .footer .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-section {
        padding: 0 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }

    .footer-bottom {
        margin-top: auto;
        padding: 1.5rem 1.5rem 2rem;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 127, 127, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 127, 127, 0.6);
    }
}

/* Scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Animation Classes */
.mobile-bounce-in {
    animation: slideInBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Improvements */
    .nav-wrapper {
        top: 10px;
        max-width: 95%;
    }

    .nav-glass {
        border-radius: 1.5rem;
    }

    .nav-glass,
    .nav-glass > div {
        border-radius: 1.5rem;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    .mobile-menu {
        width: 49px;
        display: block;
        position: relative;
        z-index: 10001;
        padding: 10px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--coral), var(--coral-dark));
        color: white;
        transition: all 0.3s ease;
    }

    .mobile-menu:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(255, 127, 127, 0.4);
    }
    
    .nav-links {
        display: none;
    }

    /* Hide Get Started button on mobile */
    .nav-container > .cta-button {
        display: none;
    }

    /* BADASS Hero Section for Mobile */
    .hero {
        min-height: 100vh;
        padding: 5rem 0 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-art {
        order: 1;
        margin-bottom: 1rem;
        margin-top: 0;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: 1rem;
        animation: slideInBounce 1s ease-out;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        animation: slideInBounce 1s ease-out 0.2s both;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
        animation: slideInBounce 1s ease-out 0.4s both;
    }

    .hero-shader {
        width: 280px;
        height: 280px;
        margin: 0 auto;
        animation: float 4s ease-in-out infinite, slideInBounce 1s ease-out 0.1s both;
    }

    /* Floating particles enhanced for mobile */
    .particle {
        width: 6px;
        height: 6px;
    }

    /* Mobile Support Section - Moved to support-section.css */

    /* Download Section - Buttons on one line */
    .download-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .app-store-btn {
        flex: 1;
        max-width: 150px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--text-dark), #1a202c);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .app-store-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(45, 55, 72, 0.4);
    }

    .app-store-btn i {
        font-size: 1.2rem;
    }

    .app-store-btn div {
        line-height: 1.2;
    }

    /* SICK Security Section for Mobile */
    .security-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, rgba(255, 245, 245, 0.5), rgba(255, 255, 255, 0.8));
        position: relative;
        overflow: hidden;
    }

    .security-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="security-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,127,127,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23security-pattern)"/></svg>');
        opacity: 0.4;
    }

    .security-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .security-card {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 245, 0.8));
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 127, 127, 0.2);
        border-radius: 20px;
        padding: 1.5rem;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
        overflow: hidden;
    }

    .security-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 127, 127, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .security-card:hover::before {
        left: 100%;
    }

    .security-card:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 40px rgba(255, 127, 127, 0.25);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 245, 245, 0.95));
    }

    .security-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
        background: linear-gradient(135deg, var(--mint), var(--mint-dark));
        box-shadow: 0 8px 20px rgba(127, 255, 212, 0.3);
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }

    .security-card:hover .security-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 30px rgba(127, 255, 212, 0.4);
    }

    .security-card h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        position: relative;
        z-index: 1;
    }

    .security-card p {
        font-size: 0.9rem;
        color: var(--text-light);
        line-height: 1.5;
        position: relative;
        z-index: 1;
    }

    /* Enhanced mobile typography */
    .section-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Enhanced testimonials for mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 245, 0.8));
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 127, 127, 0.1);
        animation: slideInBounce 0.6s ease-out;
    }

    .testimonial-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 35px rgba(255, 127, 127, 0.15);
        border-color: rgba(255, 127, 127, 0.3);
    }

    /* Enhanced features for mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, rgba(255, 245, 245, 0.8), rgba(255, 255, 255, 0.9));
        backdrop-filter: blur(10px);
        animation: slideInBounce 0.6s ease-out;
    }

    .feature-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(255, 127, 127, 0.2);
    }

    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }

    /* Enhanced CTA section */
    .cta-section h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

    .cta-button-white {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .cta-button-white:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 1rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero p {
        font-size: 1rem;
        padding: 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .cta-button, .button-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem;
    }

    .app-store-btn {
        max-width: 140px;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .app-store-btn i {
        font-size: 1rem;
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .security-card {
        padding: 1.25rem;
    }
}
