:root {
    --cream: #FFFDF5;
    --marigold: #FFD166;
    --pink: #EF476F;
    --text-dark: #2D2D2D;
    --text-medium: #5A5A5A;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
}

/* --- Header & Logo --- */
header {
    padding: 1.5rem 5%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* --- Hero Section --- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Pangolin', cursive;
    font-size: 4rem;
    color: var(--pink);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.info {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Buttons --- */
.callToAction-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--pink);
    color: white;
}

.btn-secondary {
    background-color: var(--marigold);
    color: var(--text-dark);
}

.btn-action {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--pink);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(239, 71, 111, 0.3);
    border: none;
}

.btn-action:hover {
    background-color: #d63d63;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(239, 71, 111, 0.4);
    color: white;
}

.btn-action:active {
    transform: translateY(0);
}

/* --- Animations (Puzzles) --- */
.anim {
    position: absolute;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

.anim img {
    width: 100%;
    height: auto;
    display: block;
}

.blob-1 { width: 20%; top: 4%; left: 40%; }
.blob-2 { width: 20%; top: 50%; right: 75%; }
.blob-3 { width: 30%; top: 35%; left: 65%; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(10deg); }
    66% { transform: translate(-20px, 20px) rotate(-10deg); }
}

/* --- Problem/Solution Section --- */
.problem-solution {
    padding: 6rem 5% 0 5%;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(255, 209, 102, 0.1) 100%);
    text-align: center;
    position: relative;
}

.section-title {
    font-family: 'Pangolin', cursive;
    font-size: 3rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

#research {
    font-family: 'Pangolin', cursive;
    padding-bottom: 50px;
    font-size: 3rem;
    color: var(--pink);
}

.stats-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 20px;
    width: 100%;
}

.stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--marigold), var(--pink));
}

.stat-card:hover { transform: translateY(-10px); }

.stat-number {
    font-family: 'Pangolin', cursive;
    font-size: 3.5rem;
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stat-description {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.5;
}

/* --- About Section --- */
.about-us {
    padding: 15rem 5%;
    background-color: rgba(255, 209, 102, 0.1);
    text-align: center;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text strong {
    color: var(--pink);
    font-weight: 800;
}

.highlight-text {
    font-family: 'Pangolin', cursive;
    font-size: 2rem !important;
    color: var(--pink);
    margin-top: 2rem;
}

.hidden-btn-container {
    margin-top: 2rem;
}

.about-photos {
    flex: 1;
    min-width: 300px;
}

.team-img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid white;
    transition: transform 0.3s ease;
}

.team-img:hover {
    transform: rotate(-2deg) scale(1.02);
}

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 25px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.close-btn {
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.close-btn:hover { color: var(--pink); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Footer --- */
footer {
    background: linear-gradient(135deg, var(--marigold), var(--pink));
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-family: 'Pangolin', cursive;
    font-size: 2.5rem;
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.85;
    margin-top: 0.25rem;
}

.connect-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.instagram-pill {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-pill:hover {
    background: white;
    color: var(--pink);
    transform: translateY(-3px);
}

.btn-email-glass-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-email-glass-pill i {
    font-size: 18px;
    color: #FFD166;
}

.btn-email-glass-pill:hover {
    background: white;
    color: var(--pink);
    border: 1px solid white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-email-glass-pill:hover i {
    color: var(--pink);
}

.btn-email-glass-pill:active {
    transform: translateY(0);
}

.footer-divider {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-bottom {
    text-align: center;
    font-family: 'Pangolin', cursive;
    font-size: 1.2rem;
    color: white;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text, .about-text h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .connect-wrapper { justify-content: center; }
}

/* --- GDPR --- */
.gdpr-notice {
    font-size: 0.85rem;
    color: var(--text-medium);
    background: #f8f9fa;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--marigold);
    line-height: 1.4;
    text-align: left;
}

.gdpr-notice i {
    color: var(--pink);
    margin-right: 5px;
}