/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== PLACEHOLDER STYLE ===== */
.placeholder-box {
    background-color: #e8e8e8;
    border: 2px dashed #bdbdbd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 6px;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.navbar__cta {
    display: inline-block;
    padding: 8px 22px;
    background-color: #1a2e2e;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.navbar__cta:hover {
    background-color: #2a4a4a;
    transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 60px 0 0;
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 100px;
}

.hero__content {
    flex: 1;
    padding-bottom: 80px;
}

.hero__heading {
    font-family: 'Madimi One', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: #1a2e2e;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__subtext {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 36px;
}

/* Email Form */
.hero__form {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    max-width: 420px;
}

.hero__input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid #E5E5E5;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1a1a1a;
    background-color: #F5F5F5;
    transition: border-color 0.25s ease;
}

.hero__input::placeholder {
    color: #a0a0a0;
}

.hero__input:focus {
    border-color: #1a2e2e;
}

.hero__submit {
    padding: 14px 24px;
    background-color: #17484C;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    /* transition: background-color 0.25s ease, transform 0.2s ease; */
}

/* .hero__submit:hover {
    background-color: #2a4a4a;
    transform: translateY(-1px);
} */

/* App Store Badges */
.hero__badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: rgb(102, 101, 99);
    color: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    /* transition: background-color 0.25s ease, transform 0.2s ease; */
}

/* .hero__badge:hover {
    background-color: #d4d4d4;
    transform: translateY(-1px);
} */

.hero__badge-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hero__badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero__badge-label {
    font-size: 0.55rem;
    font-weight: 400;
    opacity: 0.65;
}

.hero__badge-store {
    font-size: 0.85rem;
    font-weight: 600;
}

.hero__badge .hero__badge-icon {
    fill: #FFFFFF;
}

.hero__badge--google .hero__badge-icon {
    fill: none;
}

/* Hero Image Area */
.hero__image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 520px;
}

.hero__image-wrapper::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(144, 238, 200, 0.35) 0%, rgba(144, 238, 200, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero__image {
    max-height: 560px;
    width: auto;
    position: relative;
    z-index: 1;
    object-fit: contain;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a2e2e;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: 0;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand {
    flex: 1;
    max-width: 240px;
}

.footer__logo {
    height: 25px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 100px;
}

.footer__social-link {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.25s ease;
}

.footer__social-link:hover {
    opacity: 1;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer__links {
    display: flex;
    gap: 80px;
}

.footer__column h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer__column ul li {
    margin-bottom: 12px;
}

.footer__column ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.25s ease;
}

.footer__column ul li a:hover {
    color: #ffffff;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0;
}

.footer__bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero__content {
        padding-bottom: 40px;
    }

    .hero__heading {
        font-size: 2.6rem;
    }

    .hero__subtext {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__form {
        max-width: 100%;
        justify-content: center;
    }

    .hero__badges {
        justify-content: center;
    }

    .hero__image-wrapper {
        min-height: 400px;
    }

    .hero__image {
        max-height: 420px;
    }

    .footer__top {
        flex-direction: column;
        gap: 32px;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__links {
        gap: 40px;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        justify-content: center;
    }

    .navbar__cta {
        display: none;
    }

    .hero {
        padding-top: 40px;
    }

    .hero__heading {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .hero__subtext {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero__form {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .hero__input {
        width: 100%;
    }

    .hero__submit {
        width: 100%;
        text-align: center;
    }

    .hero__badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .hero__badge {
        padding: 8px 14px;
    }

    .hero__image-wrapper {
        min-height: 300px;
        margin-top: -20px;
    }

    .hero__image {
        max-height: 320px;
    }

    .footer {
        padding-top: 40px;
    }

    .footer__brand {
        text-align: center;
        margin-bottom: 32px;
    }

    .footer__logo {
        margin: 0 auto 24px;
    }

    .footer__socials {
        justify-content: center;
        margin-top: 32px;
    }

    .footer__links {
        gap: 32px;
        justify-content: center;
        text-align: center;
    }
}