:root {
    --brand-900: #0f3d91;
    --brand-700: #1a73e8;
    --brand-500: #4fc3f7;
    --accent-400: #ffb347;
    --accent-300: #ffdd57;
    --neutral-900: #1c2236;
    --neutral-700: #47526a;
    --neutral-500: #62708c;
    --neutral-100: #eef3ff;
    --surface-100: #ffffff;
    --surface-200: rgba(255, 255, 255, 0.85);
    --surface-300: rgba(255, 255, 255, 0.95);
    --shadow-lg: 0 32px 64px rgba(15, 61, 145, 0.18);
}

/* Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(26, 115, 232, 0.06);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 34px rgba(15, 61, 145, 0.08);
}

.site-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2.6vw, 2rem);
    padding: clamp(0.85rem, 1.8vw, 1.4rem) clamp(1.2rem, 4.5vw, 2.6rem);
    max-width: 1180px;
    margin: 0 auto;
}

.site-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.6rem, 1.5vw, 0.9rem);
    text-decoration: none;
    color: var(--neutral-900);
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.12rem);
    letter-spacing: -0.015em;
}

.site-nav__logo img {
    display: block;
    width: clamp(150px, 18vw, 210px);
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(14, 49, 104, 0.18));
    transform-origin: center;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.site-nav__brand:focus-visible {
    outline: 2px solid rgba(255, 221, 87, 0.6);
    outline-offset: 4px;
}

.site-nav__brand:hover .site-nav__logo img,
.site-nav__brand:focus-visible .site-nav__logo img {
    transform: scale(1.05);
    filter: drop-shadow(0 16px 32px rgba(14, 49, 104, 0.25));
}

.site-nav__title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.36rem 0.95rem 0.36rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--brand-900);
    background: rgba(26, 115, 232, 0.08);
    box-shadow: inset 0 0 0 1px rgba(26, 115, 232, 0.18), 0 10px 22px rgba(12, 56, 130, 0.14);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav__title::before {
    content: '';
    display: inline-block;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-300) 0%, var(--accent-400) 100%);
    box-shadow: 0 0 12px rgba(255, 221, 87, 0.42);
}

.site-nav__brand:hover .site-nav__title,
.site-nav__brand:focus-visible .site-nav__title {
    background: rgba(79, 195, 247, 0.18);
    box-shadow: inset 0 0 0 1px rgba(26, 115, 232, 0.28), 0 16px 28px rgba(12, 56, 130, 0.18);
    color: var(--brand-700);
}

.site-nav__toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 28px rgba(15, 61, 145, 0.16);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-nav__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-900);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-nav__toggle span + span {
    margin-top: 5px;
}

.site-nav__toggle:focus-visible {
    outline: 2px solid var(--brand-500);
    outline-offset: 3px;
}

.site-nav--open .site-nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-nav--open .site-nav__toggle span:nth-child(2) {
    opacity: 0;
}

.site-nav--open .site-nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-nav__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(1.4rem, 3vw, 2.6rem);
    flex: 1;
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1.1rem, 2.6vw, 1.8rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    color: var(--neutral-700);
    transition: color 0.25s ease, text-shadow 0.25s ease;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-300) 0%, var(--accent-400) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: var(--brand-700);
    text-shadow: 0 6px 14px rgba(15, 61, 145, 0.18);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
    transform: scaleX(1);
}


@media (max-width: 1100px) {
    .site-nav {
        padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1rem, 5vw, 2rem);
    }
}

@media (max-width: 992px) {
    .site-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .site-nav__toggle {
        display: flex;
    }

    .site-nav__menu {
        position: absolute;
        left: clamp(1rem, 5vw, 2rem);
        right: clamp(1rem, 5vw, 2rem);
        top: calc(100% + 0.65rem);
        flex-direction: column;
        align-items: stretch;
        gap: 1.6rem;
        padding: 1.6rem clamp(1.2rem, 4vw, 1.8rem);
        background: rgba(255, 255, 255, 0.97);
        border-radius: 20px;
        border: 1px solid rgba(26, 115, 232, 0.08);
        box-shadow: 0 28px 48px rgba(10, 38, 84, 0.22);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .site-nav--open .site-nav__menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 700px) {
    .site-nav__brand {
        gap: 0.5rem;
    }

    .site-nav__title {
        display: none;
    }

    .site-nav__logo img {
        width: clamp(130px, 44vw, 170px);
    }
}

@media (max-width: 480px) {
    .site-nav__menu {
        padding: 1.4rem 1.2rem;
    }
}

/* Survey Table Styling */
.survey-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(26,115,232,0.07);
    overflow: hidden;
}
.survey-table th, .survey-table td {
    padding: 1em 1.2em;
    text-align: left;
}
.survey-table th {
    background: #e6f0ff;
    color: #1a73e8;
    font-weight: 700;
    font-size: 1.05em;
    border-bottom: 2px solid #cbe1ff;
}

.survey-table tr:not(:last-child) td {
    border-bottom: 1px solid #f0f7ff;
}

.survey-table td {
    color: #333;
    font-size: 1em;
}

.survey-table a.btn {
    background: #1a73e8;
    color: #fff;
    padding: 0.5em 1.2em;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    font-size: 0.98em;
}

.survey-table a.btn:hover {
    background: #155fc1;
}

.container {
    max-width: 900px;
    margin: 2em auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(26,115,232,0.07);
    padding: 2.5em 2em;
}

/* Features Section */
.features {
    position: relative;
    padding: clamp(6.5rem, 7vw, 9rem) clamp(1.5rem, 7vw, 6rem) clamp(6rem, 7vw, 8rem);
    background:
        radial-gradient(circle at 10% -8%, rgba(255, 221, 87, 0.22) 0%, rgba(255, 221, 87, 0) 58%),
        radial-gradient(circle at 92% 18%, rgba(79, 195, 247, 0.18) 0%, rgba(79, 195, 247, 0) 55%),
        linear-gradient(180deg, #ffffff 0%, #f5f8ff 42%, #eef3ff 100%);
    overflow: hidden;
}

.features::before,
.features::after {
    content: '';
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

.features::before {
    width: 520px;
    height: 520px;
    top: -240px;
    right: -120px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.12) 0%, rgba(26, 115, 232, 0) 70%);
}

.features::after {
    width: 420px;
    height: 420px;
    bottom: -220px;
    left: -140px;
    background: radial-gradient(circle, rgba(255, 221, 87, 0.18) 0%, rgba(255, 221, 87, 0) 70%);
}

.features h2 {
    position: relative;
    margin: 0;
    text-align: center;
    font-size: clamp(2.3rem, 3.4vw, 3rem);
    color: var(--brand-900);
    letter-spacing: -0.02em;
    z-index: 1;
}

.features h2::after {
    content: '';
    display: block;
    width: 96px;
    height: 4px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--accent-300) 0%, var(--accent-400) 100%);
    border-radius: 999px;
}

.feature-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(2rem, 3vw, 2.8rem);
    margin: clamp(3.2rem, 5vw, 4.8rem) auto 0;
    max-width: 1180px;
    width: min(1180px, 100%);
    padding: clamp(0.4rem, 1.2vw, 1.2rem);
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: clamp(2.4rem, 2.8vw, 2.9rem) clamp(1.6rem, 2.8vw, 2.4rem);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 255, 0.86) 100%);
    box-shadow: 0 30px 60px rgba(15, 61, 145, 0.18);
    border: 1px solid rgba(26, 115, 232, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    isolation: isolate;
}

.feature-card::before,
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.feature-card::before {
    background: radial-gradient(circle at 20% 20%, rgba(79, 195, 247, 0.18) 0%, transparent 60%),
                radial-gradient(circle at 75% 20%, rgba(255, 221, 87, 0.22) 0%, transparent 65%);
    opacity: 0.7;
    z-index: -1;
}

.feature-card::after {
    background: radial-gradient(circle at 80% 100%, rgba(255, 221, 87, 0.18) 0%, transparent 58%);
    opacity: 0;
    transform: scale(0.85);
    z-index: -1;
}

.feature-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(84px, 8vw, 96px);
    height: clamp(84px, 8vw, 96px);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.2) 0%, rgba(79, 195, 247, 0.35) 100%);
    box-shadow: inset 0 0 0 1px rgba(26, 115, 232, 0.16), 0 24px 48px rgba(15, 61, 145, 0.18);
    overflow: hidden;
}

.feature-card__icon::before,
.feature-card__icon::after {
    content: '';
    position: absolute;
    border-radius: inherit;
    inset: 6%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.8;
}

.feature-card__icon::after {
    inset: 16%;
    opacity: 0.5;
}

.feature-card__icon img {
    position: relative;
    width: clamp(42px, 4.6vw, 52px);
    height: clamp(42px, 4.6vw, 52px);
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(12, 56, 130, 0.25));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.feature-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-card__meta::before {
    content: '';
    display: inline-block;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(26, 115, 232, 0.3) 0%, rgba(79, 195, 247, 0.1) 100%);
    transform-origin: left;
    transform: scaleX(0.65);
    transition: transform 0.35s ease;
}

.feature-card h3 {
    margin: 0;
    font-size: clamp(1.22em, 2.2vw, 1.32em);
    font-weight: 700;
    color: var(--brand-900);
    letter-spacing: -0.01em;
}

.feature-card p {
    margin: 0;
    font-size: clamp(0.98em, 1.8vw, 1.05em);
    color: var(--neutral-700);
    line-height: 1.7;
}

/* Footer */
footer {
    position: relative;
    padding: clamp(4.8rem, 7vw, 6.4rem) clamp(1.6rem, 6vw, 3rem) clamp(2.8rem, 5vw, 3.6rem);
    background: linear-gradient(180deg, #1d66d1 0%, #1448a8 45%, #0c2b7d 100%);
    color: #e9f1ff;
    font-size: 0.96em;
    overflow: hidden;
    isolation: isolate;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 6%, rgba(255, 221, 87, 0.25) 0%, rgba(255, 221, 87, 0) 55%),
        radial-gradient(circle at 86% 12%, rgba(79, 195, 247, 0.24) 0%, rgba(79, 195, 247, 0) 58%);
    opacity: 0.6;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    width: 140%;
    height: 180px;
    background: radial-gradient(80% 120% at 50% 0%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-50%);
    z-index: 0;
}


.footer-bottom {
    position: relative;
    z-index: 1;
    margin: clamp(2.6rem, 6vw, 3.8rem) auto 0;
    max-width: 1180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(233, 241, 255, 0.76);
    letter-spacing: 0.02em;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95em;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(120px, 18vw, 160px);
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 221, 87, 0) 0%, rgba(255, 221, 87, 0.45) 50%, rgba(255, 221, 87, 0) 100%);
    opacity: 0.7;
}


.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
    gap: clamp(1.4rem, 3vw, 2.4rem);
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: flex-start;
}

.footer-section.about {
    padding: 0;
    background: none;
    box-shadow: none;
}

.footer-section h3 {
    margin: 0;
    font-size: 1.08em;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffdd57;
    font-weight: 600;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin-top: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 221, 87, 0.85) 0%, rgba(255, 255, 255, 0.05) 100%);
}


.footer-section p,
.footer-section li,
.footer-section a {
    color: rgba(233, 241, 255, 0.84);
    text-decoration: none;
    line-height: 1.65;
    transition: color 0.25s ease, transform 0.25s ease;
}


.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-section li {
    position: relative;
    padding-left: 1.6rem;
}

.footer-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffdd57 0%, #ffb347 100%);
    box-shadow: 0 0 10px rgba(255, 221, 87, 0.45);
}

.footer-section li a {
    display: inline-block;
}

.footer-section li a:hover {
    color: #ffdd57;
    transform: translateX(4px);
}


.footer-section.about p {
    max-width: 42ch;
}

.footer-section.contact p {
    margin: 0;
}

.footer-section.contact p + p {
    margin-top: 0.4rem;
}

.social-icons {
    display: flex;
    gap: 0.9rem;
    margin-top: 0.4rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 24px rgba(11, 27, 73, 0.35);
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 221, 87, 0.35);
    box-shadow: 0 18px 32px rgba(11, 27, 73, 0.45);
}

.social-icons img {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 4px 8px rgba(10, 21, 52, 0.35));
}

.footer-section.about p {
    max-width: 42ch;
}

.footer-gildefooter {
    display: block;
    width: clamp(140px, 18vw, 200px);
    height: auto;
    margin-bottom: 1.1rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(8, 18, 42, 0.55));
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    footer {
        text-align: center;
    }
    .footer-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }
    .footer-section h3::after {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-section li a {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
}

.feature-card h3 {
    margin: 0;
    font-size: 1.28em;
    font-weight: 700;
    color: var(--brand-900);
    letter-spacing: -0.01em;
}

.feature-card p {
    margin: 0;
    font-size: 1.02em;
    color: var(--neutral-700);
    line-height: 1.7;
}


.feature-card:hover::before {
    opacity: 0.9;
}

.feature-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.feature-card:hover .feature-card__meta::before {
    transform: scaleX(1);
}

.feature-card:hover h3 {
    color: var(--brand-700);
}

.feature-card:hover .feature-card__icon img {
    transform: translateY(-6px) scale(1.04);
    filter: drop-shadow(0 20px 38px rgba(12, 56, 130, 0.28));
}

.feature-card:hover .feature-card__icon {
    box-shadow: inset 0 0 0 1px rgba(26, 115, 232, 0.26), 0 28px 58px rgba(15, 61, 145, 0.26);
}

.feature-card:nth-child(2) { animation: fadeInUpFeature 0.85s ease 0.12s both; }
.feature-card:nth-child(3) { animation: fadeInUpFeature 0.85s ease 0.24s both; }
.feature-card:nth-child(4) { animation: fadeInUpFeature 0.85s ease 0.36s both; }

@media (max-width: 992px) {
    .features {
        padding: 6rem 2.2rem 6.6rem;
    }
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.2rem;
    }
    .feature-card {
        padding: 2.2rem clamp(1.4rem, 3vw, 1.9rem);
    }
    .feature-card__icon {
        width: clamp(76px, 10vw, 86px);
        height: clamp(76px, 10vw, 86px);
    }
    .feature-card__icon img {
        width: clamp(38px, 5vw, 46px);
        height: clamp(38px, 5vw, 46px);
    }
}

@media (max-width: 768px) {
    .features {
        padding: 5.4rem 1.6rem 5.8rem;
    }
    .feature-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.8rem;
    }
    .feature-card {
        padding: 2rem 1.7rem;
    }
}
/* Hero Section */
.hero {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4em;
    align-items: center;
    padding: 8em 3em 6em;
    min-height: 75vh;
    margin-top: -100px;
}

.hero,
.login-hero,
.register-hero,
.dashboard-hero {
    color: #fff;
    background: radial-gradient(circle at 15% 25%, rgba(255, 214, 87, 0.25), transparent 55%),
                radial-gradient(circle at 82% 18%, rgba(94, 233, 255, 0.22), transparent 60%),
                linear-gradient(135deg, #0f3d91 0%, #1a73e8 45%, #51d1f6 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero::before,
.login-hero::before,
.register-hero::before,
.dashboard-hero::before {
    content: '';
    position: absolute;
    inset: -20% -15% 40% 55%;
    background:
        linear-gradient(200deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(circle at 20% 25%, rgba(255, 221, 87, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    filter: blur(0);
    transform: rotate(-6deg);
    opacity: 0.35;
    z-index: 0;
}

.hero::after,
.login-hero::after,
.register-hero::after,
.dashboard-hero::after {
    content: '';
    position: absolute;
    inset: 10% 5% auto 5%;
    height: 75%;
    border-radius: 32px;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25) 0, transparent 55%),
                      radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.15) 0, transparent 45%);
    opacity: 0.4;
    filter: blur(12px);
    z-index: 0;
}

.hero-content {
    position: relative;
    max-width: 580px;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    margin-bottom: 0.6em;
    line-height: 1.1;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.9s ease forwards;
}


@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-content p {
    font-size: 1.15em;
    margin-bottom: 2.2em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1.1s ease forwards;
}

.hero-content .btn-primary {
    padding: 1.05em 2.8em;
    font-size: 1.05em;
    animation: fadeInUp 1.3s ease forwards;
    box-shadow: 0 20px 40px rgba(15, 61, 145, 0.28);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 520px;
    width: 100%;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: auto;
    width: 82%;
    height: 82%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
    height: auto;
    animation: floatHero 9s ease-in-out infinite;
    filter: drop-shadow(0 25px 45px rgba(15, 61, 145, 0.4));
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(22px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.45;
}

.hero-shape--one {
    width: 320px;
    height: 320px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 221, 87, 0.55), rgba(255, 221, 87, 0));
    animation: heroOrbit 24s ease-in-out infinite;
}

.hero-shape--two {
    width: 220px;
    height: 220px;
    bottom: 14%;
    right: 8%;
    background: radial-gradient(circle at 30% 30%, rgba(94, 233, 255, 0.45), rgba(94, 233, 255, 0));
    animation: heroOrbit 20s ease-in-out infinite reverse;
}

.hero-shape--three {
    width: 140px;
    height: 140px;
    top: 18%;
    right: 28%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
    animation: heroOrbit 18s ease-in-out infinite alternate;
}

@keyframes heroOrbit {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(12px, -18px, 0) scale(1.06); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 992px) {
    .hero {
        padding: 6em 2em 5em;
    }
    .hero::before {
        inset: -30% -35% 45% 35%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6em 1.8em 4.5em;
        text-align: center;
    }
    .hero-image {
        margin: 0 auto;
    }
    .hero-image::before {
        width: 70%;
        height: 70%;
    }
    .hero-shape--one {
        top: -160px;
        left: -100px;
        width: 260px;
        height: 260px;
    }
    .hero-shape--two {
        right: -40px;
    }
}
.how-it-works {
    position: relative;
    padding: clamp(6.5rem, 7vw, 9rem) clamp(1.5rem, 7vw, 6rem) clamp(6rem, 7vw, 8rem);
    background:
        radial-gradient(circle at 10% -8%, rgba(255, 221, 87, 0.22) 0%, rgba(255, 221, 87, 0) 58%),
        radial-gradient(circle at 92% 18%, rgba(79, 195, 247, 0.18) 0%, rgba(79, 195, 247, 0) 55%),
        linear-gradient(180deg, #ffffff 0%, #f5f8ff 42%, #eef3ff 100%);
    overflow: hidden;
}

.how-it-works::before,
.how-it-works::after {
    content: '';
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
}

.how-it-works::before {
    width: 520px;
    height: 520px;
    top: -240px;
    right: -120px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.12) 0%, rgba(26, 115, 232, 0) 70%);
}

.how-it-works::after {
    width: 420px;
    height: 420px;
    bottom: -220px;
    left: -140px;
    background: radial-gradient(circle, rgba(255, 221, 87, 0.18) 0%, rgba(255, 221, 87, 0) 70%);
}

.how-it-works h2 {
    position: relative;
    margin: 0;
    text-align: center;
    font-size: clamp(2.3rem, 3.4vw, 3rem);
    color: var(--brand-900);
    letter-spacing: -0.02em;
    z-index: 1;
}

.how-it-works h2::after {
    content: '';
    display: block;
    width: 96px;
    height: 4px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--accent-300) 0%, var(--accent-400) 100%);
    border-radius: 999px;
}

.steps-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(2rem, 3vw, 2.8rem);
    margin: clamp(3.2rem, 5vw, 4.8rem) auto 0;
    max-width: 1180px;
    width: min(1180px, 100%);
    padding: 0;
}

.step-card {
    position: relative;
    padding: 2.6em 2.2em 2.4em;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 247, 255, 0.98) 100%);
    border: 1px solid rgba(26, 115, 232, 0.08);
    box-shadow: 0 18px 48px rgba(12, 56, 130, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.15em;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 18% 20%, rgba(79, 195, 247, 0.16) 0%, rgba(79, 195, 247, 0) 60%),
        radial-gradient(circle at 85% 82%, rgba(255, 221, 87, 0.18) 0%, rgba(255, 221, 87, 0) 64%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.step-card > * {
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 115, 232, 0.16);
    box-shadow: 0 26px 56px rgba(12, 56, 130, 0.16);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: linear-gradient(140deg, var(--brand-700) 0%, var(--brand-500) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.42em;
    box-shadow: 0 16px 32px rgba(26, 115, 232, 0.22);
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.step-card:hover .step-number {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent-300) 0%, var(--accent-400) 100%);
    color: var(--brand-900);
}

.step-card h3 {
    margin: 0;
    font-size: 1.34em;
    font-weight: 700;
    color: var(--brand-900);
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.step-card p {
    margin: 0;
    font-size: 1.02em;
    color: var(--neutral-700);
    line-height: 1.68;
}

.step-card:hover h3 {
    color: var(--brand-700);
}

.step-card:nth-child(1) { animation: fadeInUpFeature 0.9s ease 0s both; }
.step-card:nth-child(2) { animation: fadeInUpFeature 0.9s ease 0.12s both; }
.step-card:nth-child(3) { animation: fadeInUpFeature 0.9s ease 0.24s both; }
.step-card:nth-child(4) { animation: fadeInUpFeature 0.9s ease 0.36s both; }

@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.4rem;
    }
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.1rem;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 6.2em 1.8em 5.6em;
    }
    .step-card {
        padding: 2.5em 2.1em;
    }
    .step-card h3 {
        font-size: 1.32em;
    }
}

/* Primary Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1em 2.8em;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1em;
    letter-spacing: 0.01em;
    color: #0f3d91;
    background: linear-gradient(120deg, #ffdd57 0%, #ffc047 55%, #ffae32 100%);
    box-shadow: 0 18px 35px rgba(255, 190, 87, 0.35);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 45px rgba(255, 190, 87, 0.45);
    background: linear-gradient(120deg, #ffe066 0%, #ffb84d 55%, #ffa326 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 15px 28px rgba(255, 190, 87, 0.4);
}

/* Fade-in animation for feature cards */
@keyframes fadeInUpFeature {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.feature-card {
    animation: fadeInUpFeature 0.8s ease forwards;
}

/* Call to Action Section */
.cta {
    position: relative;
    margin: 0;
    padding: 0;
    color: #fff;
    background: linear-gradient(165deg, #0f2e80 0%, #1a73e8 45%, #4fc3f7 100%);
    overflow: hidden;
    isolation: isolate;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 25%, rgba(255, 221, 87, 0.18) 0%, transparent 55%),
                radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    opacity: 0.7;
    z-index: 0;
}

.cta-inner {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 6.2em 2.2em 5.4em;
    text-align: center;
    z-index: 2;
}

.cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    padding: 0.45em 1.2em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85em;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.6em;
}

.cta h2 {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    margin: 0 0 0.8em;
    letter-spacing: -0.02em;
}

.cta p {
    max-width: 58ch;
    margin: 0 auto 2.4em;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    justify-content: center;
}

.cta-actions .btn-primary {
    font-size: 1.08em;
}

.cta-wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.cta-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-wave path {
    fill: #f4f8ff;
}

.cta-wave--top path {
    fill: #e9f1ff;
}

.cta-wave--bottom path {
    fill: #1d66d1;
}

.cta-wave--top {
    top: 0;
    transform: translateY(-95%);
}

.cta-wave--bottom {
    bottom: 0;
    transform: translateY(95%);
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.cta-shape--one {
    width: 260px;
    height: 260px;
    top: -120px;
    left: 12%;
    background: radial-gradient(circle, rgba(255, 221, 87, 0.55) 0%, rgba(255, 221, 87, 0) 65%);
    animation: ctaFloat 22s ease-in-out infinite;
}

.cta-shape--two {
    width: 200px;
    height: 200px;
    bottom: 18%;
    right: 10%;
    background: radial-gradient(circle, rgba(94, 233, 255, 0.45) 0%, rgba(94, 233, 255, 0) 65%);
    animation: ctaFloat 18s ease-in-out infinite reverse;
}

.cta-shape--three {
    width: 140px;
    height: 140px;
    top: 32%;
    right: 26%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
    animation: ctaFloat 24s ease-in-out infinite alternate;
}

@keyframes ctaFloat {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(16px, -12px, 0) scale(1.05); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
}

@media (max-width: 768px) {
    .cta-inner {
        padding: 5.4em 1.6em 4.4em;
    }
    .cta p {
        font-size: 1em;
    }
    .cta-wave {
        height: 90px;
    }
    .cta-wave--top {
        transform: translateY(-96%);
    }
    .cta-wave--bottom {
        transform: translateY(96%);
    }
    .cta-shape--one {
        width: 200px;
        height: 200px;
        top: -140px;
        left: 5%;
    }
    .cta-shape--two {
        width: 160px;
        height: 160px;
        right: -30px;
    }
}


/* Testimonials Section */
.testimonials {
    padding: 5em 3em;
    text-align: center;
}
.testimonials h2 { font-size: 2.5em; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2em;
    margin-top: 3em;
}
.testimonial-card {
    background: #fff;
    padding: 2em;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    font-style: italic;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Footer Styling - Verbeterd */
footer {
    background: linear-gradient(135deg, #4fc3f7, #1a73e8);
    color: #fff;
    padding: 5em 3em 3em;
    font-size: 0.95em;
    position: relative;
    overflow: hidden;
}

/* Voeg subtiele bewegende cirkels toe in de achtergrond */
footer::before,
footer::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

footer::before {
    width: 200px;
    height: 200px;
    background: #ffdd57;
    top: -50px;
    left: -50px;
    animation: floatShapeFooter 15s ease-in-out infinite alternate;
}

footer::after {
    width: 300px;
    height: 300px;
    background: #ffc107;
    bottom: -80px;
    right: -80px;
    animation: floatShapeFooter 20s ease-in-out infinite alternate-reverse;
}

@keyframes floatShapeFooter {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(10px); }
    100% { transform: translateY(0) translateX(0); }
}



/* Auth Section (Register/Login) */
.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2em;
}

.auth-container {
    background: #fff;
    padding: 3em 2em;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.auth-container h2 {
    margin-bottom: 1.5em;
    font-size: 2em;
    color: #1a73e8;
}

.auth-container form {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.auth-container input,
.auth-container select {
    padding: 0.8em 1em;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
}

.auth-container input:focus,
.auth-container select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 5px rgba(26,115,232,0.4);
}

.auth-container button {
    margin-top: 1em;
}

.auth-container p {
    margin-top: 1em;
    font-size: 0.9em;
}

.auth-container p a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
}

.auth-container p a:hover {
    text-decoration: underline;
}

/* Custom text selection color */
::selection {
    background-color: #ffdd57; /* zachte geel van je knoppen/accents */
    color: #1a73e8; /* contrasterende tekstkleur */
}

::-moz-selection {
    background-color: #ffdd57;
    color: #1a73e8;
}

/* Algemene reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #f0f7ff;
    color: #333;
    height: 100%;
}

/* Login Hero Section */
.login-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-start; /* box hoger geplaatst */
    justify-content: center;
    padding: 3em 2em; /* iets minder padding boven */
}

/* Login Box / Container */
.login-container {
    background: #fff;
    color: #333;
    max-width: 450px;
    width: 100%;
    border-radius: 25px;
    padding: 3em 2.5em;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    z-index: 2;
    transition: none; /* geen hover-effect op de box */
    margin-top: -20px;
}

/* Logo */
.login-logo img {
    width: 120px;
    margin-bottom: 1.5em;
}

/* Titel en tekst */
.login-container h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #1a73e8;
}

.login-container p {
    font-size: 1em;
    margin-bottom: 1.5em;
    color: #555;
}

/* Input velden */
.login-container input {
    width: 100%;
    padding: 0.9em 1em;
    margin-bottom: 1em;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
}

.login-container input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 10px rgba(26,115,232,0.3);
}

/* Login Button */
.login-container .btn-primary {
    width: 100%;
    padding: 0.9em 0;
    background: linear-gradient(135deg, #ffdd57, #ffc107);
    color: #1a73e8;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* subtiele schaduw */
    transition: all 0.3s ease;
}

/* Hover effect login button */
.login-container .btn-primary:hover {
    background: linear-gradient(135deg, #ffd633, #ffb800); /* subtiel helderder */
    box-shadow: 0 5px 15px rgba(0,0,0,0.15); /* iets donkerder schaduw maar geen lift */
    color: #1a73e8; /* tekstkleur blijft hetzelfde */
    transform: none; /* geen transformatie */
}

/* Registratie link onder login */
.login-register {
    margin-top: 1.5em;
    font-size: 0.9em;
    color: #555;
}

.login-register a {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
}

.login-register a:hover {
    text-decoration: underline;
}

.register-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-start; /* iets hoger */
    justify-content: center;
    padding: 3em 2em;
}

/* Registratie Box */
.register-container {
    background: #fff;
    color: #333;
    max-width: 450px;
    width: 100%;
    border-radius: 25px;
    padding: 3em 2.5em;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -10px;
}

/* Logo */
.register-logo img {
    width: 120px;
    margin-bottom: 1.5em;
}

/* Titels */
.register-container h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #1a73e8;
}

.register-container p {
    font-size: 1em;
    margin-bottom: 1.5em;
    color: #555;
}

/* Input velden */
.register-container input,
.register-container select {
    width: 100%;
    padding: 0.9em 1em;
    margin-bottom: 1em;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1em;
    outline: none;
    transition: all 0.3s ease;
}

.register-container input:focus,
.register-container select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 10px rgba(26,115,232,0.3);
}

/* Register Button */
.register-container .btn-primary {
    width: 100%;
    padding: 0.9em 0;
    background: linear-gradient(135deg, #ffdd57, #ffc107);
    color: #1a73e8;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Hover effect - subtieler, geen grootteverandering */
.register-container .btn-primary:hover {
    background: linear-gradient(135deg, #ffd633, #ffb800);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    color: #1a73e8;
    transform: none;
}

/* Link naar login */
.register-login {
    margin-top: 1.5em;
    font-size: 0.9em;
    color: #555;
}

.register-login a {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
}

.register-login a:hover {
    text-decoration: underline;
}

/* Foutmelding */
.error-msg {
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.8em 1em;
    border-radius: 10px;
    margin-bottom: 1em;
    font-size: 0.95em;
}

/* ------------------- DASHBOARD PAGE ------------------- */
body.dashboard-page {
    background: linear-gradient(135deg, #0f3d91 0%, #1a73e8 45%, #51d1f6 100%);
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

.dashboard-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding-top: 3em; /* naar boven verplaatst */
}

.dashboard-container {
    max-width: 1150px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

/* Titel */
.dashboard-header {
    margin-bottom: 2.2em;
}

.dashboard-header h1 {
    font-size: 2.6em;
    font-weight: 700;
    margin-bottom: 0.3em;
}

.dashboard-header p {
    font-size: 1.1em;
    color: #e3f2fd;
}

/* Grid layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2em;
    justify-content: center;
    margin-top: 1em;
}

/* Cards */
.dashboard-card {
    background: #fff;
    color: #333;
    border-radius: 20px;
    padding: 2.3em 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

.dashboard-card:hover {
    transform: translateY(-6px);
    border-top: 5px solid #1a73e8;
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.25);
}

/* Icon Circle */
.icon-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #4fc3f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1em;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 15px rgba(26,115,232,0.3);
}

.icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* wit maken */
}

.dashboard-card:hover .icon-circle {
    transform: scale(1.07);
}

/* Tekst */
.dashboard-card h3 {
    font-size: 1.25em;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 0.5em;
}

.dashboard-card p {
    font-size: 0.98em;
    color: #555;
    margin-bottom: 1.8em;
    line-height: 1.6;
}

/* Buttons */
.dashboard-card .btn-primary {
    background-color: #1a73e8;
    color: #fff;
    padding: 0.8em 1.6em;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dashboard-card .btn-primary:hover {
    background-color: #155fc1;
    box-shadow: 0 0 15px rgba(21, 95, 193, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-header h1 {
        font-size: 2em;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}
