*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #e5e6e9;
    --text-dark: #303752;
    --text-mid: #4b5777;
    --text-light: #5e6a8c;
    --accent: #1a4cff;
    --accent-hover: #3a1fd4;
    --card-bg: rgba(255, 255, 255, 0.35);
    --card-border: rgba(255, 255, 255, 0.6);
}

html,
body {
    min-height: 100%;
    background: var(--bg);
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text-dark);
}


/* ── PAGE LAYOUT ── */
.page {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-image: url('../img/main-bg.jpg');
    background-repeat: no-repeat;
    background-position: center top;
}

/* ── HERO ── */
.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 90px 30px 70px;
    text-align: center;
}

/* Logo */
.logo-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 100px;
    animation: fadeUp 0.8s ease both;
}

.logo-image {
    width: 180px;
    height: 180px;
}


/* Headline */
.headline {
    font-size: 62px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    max-width: 1080px;
    margin-bottom: 24px;
    animation: fadeUp 0.9s 0.15s ease both;
}

.subtext {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-mid);
    max-width: 1080px;
    margin-bottom: 45px;
    animation: fadeUp 0.9s 0.25s ease both;
    letter-spacing: -0.5px;
}

/* Email form */
.notify-form {
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(94, 106, 140, 0.9);
    border-radius: 50px;
    padding: 0px 0px 0px 20px;
    width: 100%;
    max-width: 540px;
    /* box-shadow: 0 8px 32px rgba(0,0,0,0.06);
      backdrop-filter: blur(8px);*/
    animation: fadeUp 0.9s 0.35s ease both;
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    padding-right: 20px;
    color: var(--text-dark);
}

.notify-form input::placeholder {
    color: #5e6a8c;
}

.notify-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 20px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.notify-btn:hover {
    background: var(--accent-hover);
}

/* ── DIVIDER ── */
.divider {
    width: calc(100% - 80px);
    max-width: 1200px;
    height: 1px;
    /* background: linear-gradient(99deg, transparent, rgba(255,255,255,1), transparent); */
    background-color: #fff;
    margin: 0 auto;
}

/* ── CARDS SECTION ── */
.cards-section {
    width: 100%;
    max-width: 1200px;
    padding: 70px 90px 140px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    animation: fadeUp 1s 0.45s ease both;
}

.card {
    background: var(--card-bg);
    border: 1.5px solid var(--card-border);
    border-radius: 12px;
    padding: 45px 36px 40px;
    backdrop-filter: blur(14px);
    transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.09);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 22px;
}

.card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.4;
    letter-spacing: -0.4px;
}

.card ul li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 5px;
}

/* ── FOOTER ── */
.footer {
    width: 100%;
    text-align: center;
    padding: 0 30px 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeUp 1s 0.55s ease both;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--text-mid);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .cards-section {
        padding: 70px 30px 60px;
    }
}

@media (max-width: 1024px) {
    .logo-wrap {
        margin-bottom: 50px;
    }

    .headline {
        font-size: 50px;
    }

    .hero {
        padding: 60px 30px 60px;
    }
}

@media (max-width: 850px) {
    .cards-section {
        grid-template-columns: 1fr;
        padding: 40px 24px 52px;
        max-width: 480px;
    }

    .card-title br {
        display: none;
    }

    .divider {
        width: calc(100% - 48px);
    }

    .subtext {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .logo-image {
        width: 150px;
        height: 150px;
    }

    .headline {
        font-size: 40px;
    }

    .footer-tagline br {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero {
        padding: 40px 30px 40px;
    }

    .headline {
        font-size: 36px;
    }

    .subtext {
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .notify-form {
        flex-direction: column;
        padding: 14px 14px;
        border-radius: 12px;
        gap: 10px;
    }

    .notify-btn {
        width: 100%;
        text-align: center;
        padding: 16px 10px;
    }

    .notify-form input {
        width: 100%;
        text-align: center;
        padding-right: 0px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 110px;
        height: 110px;
    }

    .headline {
        font-size: 28px;
    }