@import url('kc-tokens.css');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: #6B8E6F;           /* Warm Muted Green */
    --primary-light: #8BA98D;     /* Lighter Green */
    --primary-dark: #5A7560;      /* Darker Green */
    
    /* Accent Colors */
    --accent: #F4D89F;            /* Warm Pastel Yellow */
    --accent-light: #F8E5B5;      /* Lighter Yellow */
    
    /* Alert/Status Colors */
    --accent-red: #E8A5A5;        /* Warm Pastel Red/Pink */
    --success: #A8C49D;           /* Light Green Success */
    
    /* Background Colors */
    --bg-primary: #FAFAF6;        /* Cream Primary */
    --bg-secondary: #F0EFE8;      /* Light Cream Secondary */
    --bg-tertiary: #F0DCD8;       /* Light Pink Tertiary */
    
    /* Text Colors */
    --text-dark: #3D4738;         /* Dark Text */
    --text-light: #6B7967;        /* Light Gray Text */
    
    /* Border */
    --border: #DDD9CC;            /* Light Border */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #F0DCD8 100%);
    color: var(--text-dark);
}

.landing-container {
    min-height: 100vh;
}

/* Header */
.landing-header {
    background: white;
    padding: 1.2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 16%;    
}

.logo-text {
    display: flex;
    gap: 0;
}

.logo-kinder {
    color: #E8A5A5;
    font-weight: 700;
}

.logo-cura {
    color: #6B8E6F;
    font-weight: 700;
}

.header-nav {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--primary);
}

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

/* Buttons */
.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 142, 111, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--bg-primary);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Role Selection */
.role-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.role-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.role-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.role-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.role-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.role-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.role-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.role-features li::before {
    content: '✓ ';
    color: var(--success);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-shape {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-red) 100%);
    border-radius: 40px;
    transform: rotate(15deg);
    box-shadow: 0 20px 60px rgba(107, 142, 111, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

/* Features Section */
.features {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.features h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-card);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.4rem 0;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.9;
}

.menu-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        padding: 0 1rem;
    }

    .header-nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .role-selection {
        grid-template-columns: 1fr;
    }

    .visual-shape {
        width: 250px;
        height: 250px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
