:root {
    --primary: #19aa8b;
    --primary-light: #20cfa9;
    --primary-dark: #128068;
    --background: #fcfcfc;
    --surface: #ffffff;
    --text-main: #111827;
    --text-muted: #4b5563;
    --border: #e5e7eb;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 40px rgba(25, 170, 139, 0.12);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Subtle background gradients for Lilly-like premium feel */
body::before {
    content: '';
    position: absolute;
    top: -20vh;
    left: -10vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(25, 170, 139, 0.03) 0%, rgba(252, 252, 252, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: -20vh;
    right: -10vw;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(25, 170, 139, 0.04) 0%, rgba(252, 252, 252, 0) 80%);
    z-index: -1;
    pointer-events: none;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    animation: fadeInDown 1s ease-out;
}

.main-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.badge-20-years {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(25, 170, 139, 0.1), rgba(25, 170, 139, 0.05));
    border: 1px solid rgba(25, 170, 139, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    animation: pulseGlow 3s infinite alternate;
}

.badge-20-years svg {
    margin-right: 0.5rem;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
}

.intro {
    max-width: 800px;
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.status-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    position: relative;
}

.status-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    animation: blink 2s infinite;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* Cards Grid */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.card {
    background: var(--surface);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(25, 170, 139, 0.2);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-image-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.card-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.card-avatar {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20px;
    border: 2px solid var(--border);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.card:hover .card-logo,
.card:hover .card-avatar {
    transform: scale(1.05);
}

.card:hover .card-avatar {
    border-color: var(--primary);
}

.card-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.card:hover .btn {
    color: var(--primary-dark);
}

.card:hover .btn-arrow {
    transform: translateX(6px);
}

/* Footer */
.footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 0 rgba(25, 170, 139, 0);
    }

    to {
        box-shadow: 0 0 15px rgba(25, 170, 139, 0.2);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .headline {
        font-size: 3rem;
    }

    .intro {
        margin-bottom: 3rem;
    }
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .headline {
        font-size: 2.25rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}