/* Why Habitoo screens image responsive styles */
.why-screens-img-wrapper {
    display: flex;
    justify-content: center;
    margin: 82px 0 20px 0;
    padding: 0 15px;
}
.why-screens-img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

@media (max-width: 700px) {
    .why-screens-img {
        max-width: 95vw;
    }
}
.play-badge {
    width: 180px;
    max-width: 100%;
    display: block;
}
.hero-main-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    display: block;
}
.feature-screen-placeholder {
    width: 100%;
    max-width: 180px;
    height: 120px;
    background: #2a2230;
    border-radius: 18px;
    margin: 0 auto 18px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0b8c1;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.7;
    box-shadow: 0 2px 12px rgba(220, 55, 242, 0.1);
    border: 2px dashed #dc37f2;
}
/* Hero Section Flex Layout */
.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 24px 0 24px;
}
.hero-text {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 520px;
    text-align: left;
}
.hero-visual {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
}

@media (max-width: 800px) {
    .hero-content {
        flex-direction: column;
        gap: 24px;
        padding: 32px 8px 0 8px;
    }
    .hero-text {
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }
}
/* Habitoo Landing Page Custom Styles */

:root {
    --accent: #dc37f2;
    --accent-dark: #b12bbf;
    /* --bg-gradient: linear-gradient(135deg, #23272f 0%, #1a1d22 100%); */
    --bg-gradient: radial-gradient(
        circle,
        rgb(30, 30, 30) 0%,
        rgb(14, 14, 14) 100%
    );
    --text-main: #f8fafc;
    --text-muted: #b0b8c1;
    --white: #23272f;
    --main_bg: #000000;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--main_bg);
    color: var(--text-main);
    line-height: 1.5;
}
.content {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.hero-section {
    background: url('../img/grid_background.png') center center/cover no-repeat
        fixed;
    text-align: center;
    color: #000000;
    position: relative;
    min-height: 520px;
    z-index: 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 32, 0.95);
    z-index: 1;
    pointer-events: none;
}
.hero-content,
.navbar {
    position: relative;
    z-index: 2;
}
.screen-placeholder {
    background: #23272f;
    color: var(--accent);
}
.btn-primary {
    background: var(--accent);
    color: #23272f;
}
.btn-primary:hover {
    background: var(--accent-dark);
}
.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-secondary:hover {
    background: var(--accent);
    color: #23272f;
}

.footer {
    position: relative;
    background: transparent;
    flex-shrink: 0;
    padding: 24px 0 16px 0;
    overflow: hidden;
}
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/grid_background.png') center center/cover no-repeat
        fixed;
    z-index: 0;
    filter: blur(4px) brightness(0.7);
}
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 32, 0.93);
    z-index: 1;
    pointer-events: none;
}
.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 24px;
}
.footer-link {
    color: #b0b8c1;
    font-size: 11px;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-link:hover {
    color: #f8fafc;
}

.footer-copyright {
    color: #b0b8c1;
    font-size: 11px;
}

body {
    background: var(--main_bg);
    color: var(--text-main);
    margin: 0;
    padding: 0;
}

.hero-section {
    padding: 30px 0 40px 0;
    /* background: var(--bg-gradient); */
    text-align: center;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 0 32px;
    min-height: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.navbar-logo .logo {
    width: 120px;
    height: auto;
    display: block;
}
.navbar-links {
    display: flex;
    gap: 32px;
}
.navbar-link {
    color: #b0b8c1;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    padding: 6px 0;
    position: relative;
}
.navbar-link:hover,
.navbar-link:focus {
    color: var(--accent);
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-main);
}

.hero-content .accent {
    color: var(--accent);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.play-store-link {
    display: inline-block;
    /* justify-content: flex-start; */
}

.cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 36px;
    margin-top: 30px;
}

@media (max-width: 800px) {
    .cta-container {
        /* display: flex; */
        /* flex-direction: column; */
        align-items: center;
        /* padding: 0 20px; */
    }
    /* .play-store-link, */
    .cta-group {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
}

.btn {
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(61, 220, 151, 0.12);
}
.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}
.btn-secondary:hover {
    background: var(--accent);
    color: var(--white);
}

.hero-visual {
    margin: 40px auto 0 auto;
    display: flex;
    justify-content: center;
    width: 220px;
}

.phone-mockup {
    width: 220px;
    height: 440px;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 8px 32px rgba(61, 220, 151, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.screen-placeholder {
    width: 180px;
    height: 380px;
    background: #e6f9f2;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.7;
}

.features-section {
    padding: 60px 0 60px 0;
    background: var(--bg-gradient);
    text-align: center;
    border-top: 1px solid #2d2d2d;
}
.features-section h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--accent-dark);
}
.features-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.feature-card {
    background: #202020;
    border-radius: 18px;
    padding: 32px 24px;
    width: 260px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    border: 1px solid #2d2d2d;
}
.feature-card:hover {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 0 15px rgba(111, 111, 111, 0.13);
}
.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--accent);
}
.feature-card h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.why-section {
    padding: 60px 0 60px 0;
    background: var(--bg-gradient);
    text-align: center;
    border-top: 1px solid #2d2d2d;
    border-bottom: 1px solid #2d2d2d;
}
.why-section h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--accent-dark);
}
.why-list {
    list-style: none;
    padding: 0 20px 0 20px;
    margin: 0 auto;
    max-width: 420px;
    color: var(--text-main);
    font-size: 1.1rem;
    text-align: left;
}
.why-list li {
    margin-bottom: 14px;
    padding-left: 1.2em;
    position: relative;
}
.why-list li:before {
    content: '✔';
    color: var(--accent);
    position: absolute;
    left: 0;
}

.social-proof-section {
    padding: 40px 0 30px 0;
    background: #fff;
    text-align: center;
}
.social-proof-section h2 {
    color: var(--accent-dark);
    margin-bottom: 18px;
}
.social-proof-section blockquote {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0 auto;
    max-width: 420px;
}

.final-cta-section {
    position: relative;
    padding: 60px 0 60px 0;
    text-align: center;
    overflow: hidden;
}
.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/grid_background.png') center center/cover no-repeat
        fixed;
    z-index: 0;
    filter: blur(4px) brightness(0.7);
}
.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 32, 0.93);
    z-index: 1;
    pointer-events: none;
}
.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.final-cta-content h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--accent-dark);
}

@media (max-width: 800px) {
    .features-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .feature-card {
        /* width: 80%; */
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .features-section h2,
    .why-section h2,
    .final-cta-section h2 {
        font-size: 1.2rem;
    }
    .phone-mockup {
        width: 140px;
        height: 260px;
    }
    .screen-placeholder {
        width: 110px;
        height: 200px;
        font-size: 0.9rem;
    }
}
