:root {
    --gradient-pink: #f8c8dc;
    --gradient-purple: #d4a5d9;
    --gradient-blue: #a8d8ea;
    --gradient-teal: #88d8c0;
    --text-dark: #3b3b3b;
    --text-medium: #5a5a5a;
    --text-light: #888888;
    --accent-coral: #e8a598;
    --bg-cream: #fdf8f5;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background: var(--bg-cream);
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 32px;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

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

.nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-dark);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg,
        var(--gradient-pink) 0%,
        var(--gradient-purple) 25%,
        var(--gradient-blue) 50%,
        var(--gradient-teal) 75%,
        var(--gradient-pink) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 32px 40px;
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--text-dark);
    margin-bottom: 16px;
    animation: fadeInUp 1s ease-out;
}

.hero-brain {
    margin: 16px auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-brain img {
    width: clamp(160px, 22vw, 240px);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
}

.hero-slogan {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--text-dark);
    margin-bottom: 6px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-tagline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    color: var(--text-dark);
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta {
    margin-top: 32px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: 16px 44px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    top: 10%;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    bottom: 20%;
    left: -50px;
    animation-delay: 2s;
}

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

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* About Section */
.about {
    background: linear-gradient(180deg, var(--bg-cream) 0%, rgba(248, 200, 220, 0.1) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-purple));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.4;
}

.about-text-content {
    text-align: left;
}

.about-intro {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-intro strong {
    background: linear-gradient(90deg, var(--gradient-purple), var(--gradient-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Approach Section */
.approach {
    background: var(--white);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 64px;
}

.approach-block {
    background: var(--bg-cream);
    border-radius: 24px;
    padding: 40px 36px;
    transition: all 0.3s ease;
}

.approach-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.approach-block h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.approach-block p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.approach-block p:last-child {
    margin-bottom: 0;
}

.welcome-note {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: var(--text-dark) !important;
    font-size: 1.05rem !important;
    margin-top: 8px;
}

/* Why Section */
.why-section {
    max-width: 900px;
    margin: 0 auto;
}

.why-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
}

.why-negative {
    background: linear-gradient(135deg, rgba(232, 165, 152, 0.15), rgba(248, 200, 220, 0.15));
}

.why-positive {
    background: linear-gradient(135deg, rgba(136, 216, 192, 0.2), rgba(168, 216, 234, 0.2));
}

.why-card h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-style: italic;
}

.why-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--white) 0%, rgba(168, 216, 234, 0.1) 100%);
}

.services-intro {
    text-align: center;
    max-width: 600px;
    margin: -32px auto 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.support-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-card {
    background: var(--bg-cream);
    border-radius: 24px;
    padding: 36px 32px;
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.support-card h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(212, 165, 217, 0.3);
}

.support-card ul {
    list-style: none;
    margin-bottom: 16px;
}

.support-card li {
    padding: 5px 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.support-card li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gradient-purple);
    margin-top: 8px;
    flex-shrink: 0;
}

.support-card .note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    line-height: 1.6;
    margin-top: 4px;
}

.support-card-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.support-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg,
        rgba(248, 200, 220, 0.25) 0%,
        rgba(212, 165, 217, 0.25) 50%,
        rgba(168, 216, 234, 0.25) 100%);
}

.contact-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--text-medium);
    margin-bottom: 28px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group .required {
    color: var(--accent-coral);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(212, 165, 217, 0.3);
    border-radius: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-cream);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gradient-purple);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 165, 217, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gradient-pink), var(--gradient-purple));
    color: var(--text-dark);
    font-family: 'Nunito Sans', sans-serif;
    margin-top: 8px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gradient-purple), var(--gradient-pink));
}

/* Footer */
footer {
    background: var(--white);
    padding: 60px 0 32px;
    text-align: center;
}

.footer-symbol {
    margin-bottom: 24px;
}

.infinity-symbol {
    width: 80px;
    height: 40px;
}

.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.accessibility-note {
    font-size: 0.85rem;
    color: var(--text-medium);
    max-width: 520px;
    margin: 0 auto 20px;
    line-height: 1.7;
    font-style: italic;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    color: var(--text-dark);
    text-decoration: none;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 968px) {
    .support-types {
        grid-template-columns: 1fr;
    }

    .approach-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }

    .about-image {
        max-width: 260px;
        margin: 0 auto;
    }

    .about-text-content {
        text-align: center;
    }

    .about-image::before {
        top: -8px;
        left: -8px;
        right: 8px;
        bottom: 8px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .approach-block,
    .why-card {
        padding: 28px 24px;
    }

    .support-card {
        padding: 28px 24px;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
