@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%
    );
}

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    fill: currentColor;
}

.icon path {
    fill: inherit;
}

/* 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: "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: rgb(21 43 40 / 92%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 0.75rem;
    list-style: none;
    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: rgb(135 255 198 / 22%);
    color: #ffffff;
}

.language-picker__hint {
    font-size: 0.8rem;
    color: rgb(68 128 100);
}

@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;
    width: 100%;
    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);
    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;
    width: 100%;
}

/* Navigation Wrapper */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.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: flex-start;
    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;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-container > .cta-button {
    margin-left: auto;
}

.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: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.cta-button .icon {
    fill: white;
}

.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-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(255 188 188 / 95%), rgb(255 178 178 / 95%));
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.4s;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
}

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

.mobile-nav-overlay .nav-links a {
    font-size: 1.2rem;
    color: #2d1b4e;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #2d1b4e;
    font-size: 1.5rem;
    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(2rem, 5vw, 3.8rem);
    font-weight: 1000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #7b4634;
    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;
}

.hero-store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    margin-top: 1.5rem;
}

.hero-store-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 45px;
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
    color: #1f2a37;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(6px);
}

.hero-store-button i {
    font-size: 2.4rem;
}

.hero-store-button__overline {
    font-family: 'Inter', 'Nunito', Arial, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    text-align: center;
}

.hero-store-button__label {
    font-size: 1rem;
    white-space: nowrap;
}

.hero-store-button--mint {
    background: linear-gradient(135deg, rgb(0 207 138 / 92%), rgb(22 196 144 / 95%));
    color: #fff5f5;
    box-shadow: 0 18px 42px rgba(79, 170, 124, 0.25), inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-store-button--mint:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(79, 170, 124, 0.33), inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-store-button--coral {
    background: linear-gradient(135deg, rgba(255, 127, 127, 0.93), rgba(229, 90, 90, 0.97));
    color: #fff5f5;
    box-shadow: 0 18px 42px rgba(229, 90, 90, 0.28), inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-store-button--coral:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(229, 90, 90, 0.36), inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.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;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-shader {
    border-radius: 50%;
    position: relative;
    width: min(100%, 454px);
    aspect-ratio: 1 / 1;
    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: 999;
}

.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;
}

/* Flowers Section */
.flowers-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden; /* hide edges during scale */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
}

.flowers-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/images/flowers.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    transform-origin: center center;
    transform: scale(1.4); /* start zoomed in */
    filter: blur(0.2px) brightness(1.15);

    will-change: transform, filter;
    /* Remove auto-animation - will be triggered by JS */
}

/* Flowers zoom animation */
@keyframes flowersZoomIn {
    to {
        transform: scale(1);
        filter: blur(0px) brightness(1);
    }
}

/* Text fade in animation */
@keyframes textFadeIn {
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.flowers-title {
    position: absolute;
    top: 3vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: clamp(1.5rem, 4.5vw, 8rem);
    letter-spacing: 0.1vw;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgb(45 57 28 / 23%);
    text-align: center;
    white-space: nowrap;
    opacity: 0; /* Hidden initially */
    transform: translateX(-50%) scale(0.8);
    transition: opacity 1.2s ease, transform 0.5s ease;
}

.flowers-title.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.flowers-text {
    bottom: 19vh;
    left: 50%;
    position: absolute;
    z-index: 2;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: clamp(2rem, 4.1vw, 4.7rem);
    letter-spacing: 0.1vw;
    font-weight: 700;
    color: white;
    text-shadow: 0 4px 20px rgb(45 57 28 / 23%);
    text-align: center;
    white-space: nowrap;
    opacity: 0; /* Hidden initially */
    transform: translateX(-50%) scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.flowers-text.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Responsive font-size for flowers-text */
@media (min-width: 1200px) {
    .flowers-text {
        font-size: clamp(2rem, 3.1vw, 4.7rem);
    }
}

@media (min-width: 1500px) {
    .flowers-text {
        font-size: clamp(2rem, 2.4vw, 4.7rem);
    }
}

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

.hero h1 {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #7b4634;
    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;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-shader {
    border-radius: 50%;
    position: relative;
    width: min(100%, 454px);
    aspect-ratio: 1 / 1;
    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: 999;
}

.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: 535px;
    width: 100%;
    height: auto;
    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: #f2f2f2;
}

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

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

.security-icon {
    border-radius: 50%;
    width: 280px;
    height: 280px;
    background: white;

    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 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;
}

/* Animated radial gradient orb */
.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 1.2s ease-out;
    pointer-events: none;
    z-index: 1;
}

.cta-section.animate-orb::after {
    opacity: 1;
}

.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;
    }
}

/* Contact Info Cards - Elegant and Simple Design */
.contact-info-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.contact-info-card {
    padding: 2.5rem 2rem;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-card:hover {
    border-color: #FF7F7F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 127, 127, 0.08);
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-wrapper {
    background: #fff5f5;
}

.contact-info-card i {
    font-size: 1.25rem;
    color: #2d1b4e;
    transition: color 0.3s ease;
}

.contact-info-card:hover i {
    color: #FF7F7F;
}

.contact-info-card h4 {
    color: #2d1b4e;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-info-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info-card a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #FF7F7F;
}

/* Responsive Design for Contact Cards */
@media (max-width: 768px) {
    .contact-info-container {
        margin: 2rem auto 0;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Shared Hero Styles for About and Contact Pages */
.page-hero {
    background: white;
    padding: 20rem 0 16rem;
}

.page-hero .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2d1b4e;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
}

/* Responsive Design for Page Heroes */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem !important;
    }

    .page-hero p {
        font-size: 1rem !important;
    }
}

/* 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);
}

/* Large screens - adjust flowers text position */
@media (min-width: 2000px) {
    .flowers-text {
        bottom: 10vh;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation Improvements */
    #mobile-menu-icon{
        margin-top: -8px;
        width: 0.9em;
        height: 0.9em;
    }
    .nav-wrapper {
        width: 97vw;
        top: 7px;
        max-width: 97vw;
        padding: 0;
    }

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

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

    .navbar {
        padding: 0.5rem 1rem;
    }

    .mobile-menu {
        width: 44px;
        height: 44px;
        display: block;
        position: relative;
        z-index: 10001;
        padding: 10px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff9191, #ff7c7c);
        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);
    }
    
    .navbar .nav-links {
        display: none;
    }

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

    .nav-container > .mobile-menu {
        margin-left: auto;
    }

    /* BADASS Hero Section for Mobile */

    .hero {
        min-height: auto;
        padding: 4.5rem 0 2.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .hero-content {
        margin: 0;
        order: 2;
    }

    .hero-art {
        order: 1;
        margin-bottom: 1rem;
        margin-top: 4rem;
        justify-content: center;
    }

    .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-store-buttons {
        gap: 0.75rem;
        justify-content: center;
    }

    .hero-store-button {
        padding: 0.75rem 1.6rem;
        gap: 0.6rem;
    }

    .hero-store-button i {
        font-size: 2.08rem;
    }

    .hero-shader {
        width: min(70vw, 320px);
        margin: 0 auto;
        animation: float 4s ease-in-out infinite, slideInBounce 1s ease-out 0.1s both;
    }

    /* Hero Text Overlay Mobile */
    .hero-text-overlay {
        font-size: clamp(2.5rem, 12vw, 5rem);
        line-height: 0.9;
        bottom: 15vh;
    }

    /* Flowers Section Mobile */
    .flowers-section {
        min-height: 60vh;
    }

    .flowers-title {
        font-size: clamp(2.5rem, 4.5vw, 8rem);
        top: 6vw;
    }

    .flowers-text {
        bottom: 12vh;
        font-size: 6.3vw;
        width: 100vw;
    }

    /* 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: 1rem;
        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: 2rem 1.5rem;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
        overflow: hidden;
        min-height: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .security-icon {
        width: 140px;
        height: 140px;
        margin: 4rem auto 6rem;
        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;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .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: 140px;
        height: 140px;
        margin: 4rem auto 6rem;
        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;
        border-radius: 50%;
    }

    .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: 1rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--text-dark);
        position: relative;
        z-index: 1;
        text-align: center;
        line-height: 1.3;
    }

    .security-card p {
        font-size: 0.85rem;
        color: var(--text-light);
        line-height: 1.4;
        position: relative;
        z-index: 1;
        text-align: center;
        margin: 0;
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }

    /* 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: 3.75rem 0 1.5rem;
    }

    .hero-container {
        padding: 0 1.75rem;
    }

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

    .hero p {
        font-size: 1rem;
        padding: 0;
        text-align: justify;
        text-align-last: left;
        hyphens: auto;
    }

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

    .hero-shader {
        width: min(82vw, 280px);
        animation: float 5s ease-in-out infinite;
    }

    .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.5rem 1rem;
        min-height: 280px;
    }

    /* Mobile Animation Classes - applied automatically on mobile viewports */
    .feature-card,
    .security-card,
    .testimonial-card,
    .support-item {
        animation: slideInBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .cta-button,
    .app-store-btn {
        animation: pulseGlow 2s ease-in-out infinite;
    }
}
