/* ============================= */
/* ROOT THEME */
/* ============================= */
:root {
    /* BACKGROUNDS */
    --main-bg: #eef5f8;
    --card-bg: rgba(255, 255, 255, 0.92);
    --footer-bg: #d6e6ee;
    --hover-light: #f4fafc;
    --divider: #e3edf2;

    /* TEXT */
    --text-main: #2f3e46;
    --text-soft: #5f7a86;
    --text-muted: #8aa3ad;

    /* BRAND */
    --brand-blue: #6da0b4;
    --brand-hover: #4f7f91;
    --brand-soft: #e6f2f7;

    /* BUTTONS */
    --button-bg: #6da0b4;
    --button-hover: #5a8fa3;
    --button-text: #ffffff;

    /* BORDERS */
    --card-border: #d6e6ee;

    /* SHADOWS */
    --card-shadow-soft: 0 10px 25px rgba(90, 120, 140, 0.08);

    /* STATUS */
    --success: #6fcf97;
    --warning: #f2c94c;
    --danger: #eb5757;
    
    --admin-alert-height: 0px;
}


/* ============================= */
/* BASE */
/* ============================= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--main-bg);
    color: var(--text-main);
}


/* ============================= */
/* HERO */
/* ============================= */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 20px;
    background: linear-gradient(
        135deg,
        var(--hover-light) 0%,
        var(--divider) 45%,
        var(--brand-soft) 100%
    );
}

.landing-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    max-width: 800px;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(90, 120, 140, 0.10);
    text-align: center;
    border: 1px solid var(--card-border);
}

h1 {
    color: var(--text-main);
    font-size: 3.2em;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.tagline {
    font-size: 1.25em;
    color: var(--text-soft);
    margin-bottom: 35px;
}


/* ============================= */
/* SECTIONS */
/* ============================= */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 40px;
}

h3 {
    color: var(--text-main);
}


/* ============================= */
/* BENEFITS */
/* ============================= */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    padding: 30px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow-soft);
    transition: 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-soft);
    box-shadow: 0 12px 26px rgba(90, 120, 140, 0.10);
}


/* ============================= */
/* TESTIMONIALS */
/* ============================= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial-item {
    background: var(--hover-light);
    padding: 25px;
    border-radius: 12px;
    font-style: italic;
    color: var(--text-main);
    text-align: left;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow-soft);
}

.author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-style: normal;
    color: var(--brand-blue);
}


/* ============================= */
/* PRICING */
/* ============================= */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 20px;
    width: 300px;
    transition: 0.25s ease;
    box-shadow: var(--card-shadow-soft);
}

.plan-card.popular {
    border-color: var(--brand-blue);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 14px 28px rgba(110, 169, 199, 0.16);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-soft);
    color: var(--brand-hover);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid var(--card-border);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.plan-features li {
    margin-bottom: 10px;
    color: var(--text-main);
}

.plan-features li::before {
    content: "✓ ";
    color: var(--brand-blue);
    font-weight: bold;
}


/* ============================= */
/* BUTTONS */
/* ============================= */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

a.button {
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.2s ease;
}

.primary {
    background: var(--button-bg);
    color: var(--button-text);
    box-shadow: 0 8px 20px rgba(109, 159, 180, 0.18);
}

.primary:hover {
    background: var(--button-hover);
    transform: translateY(-1px);
}

.secondary {
    background: var(--hover-light);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.secondary:hover {
    background: var(--divider);
}

.outline {
    border: 2px solid var(--brand-blue);
    color: var(--brand-hover);
    background: transparent;
}

.outline:hover {
    background: var(--hover-light);
}


/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 768px) {
    .hero-section {
        padding: 70px 16px;
    }

    .landing-card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    h1 {
        font-size: 2.3rem;
    }

    .tagline {
        font-size: 1.05rem;
    }

    .section-container {
        padding: 60px 16px;
    }

    .button-group {
        flex-direction: column;
        align-items: stretch;
    }

    a.button {
        width: 100%;
        text-align: center;
    }

    .plan-card.popular {
        transform: none;
    }
}