/* Mommy Milk Bar - Final Landing Page */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #FAF7F2;
    --text-black: #000000;
    --primary-pink: #F49B9B;
    --secondary-pink: #E47C7C;
    --success-green: #5BC667;
    --text-gray: #585857;
    --border-color: #252121;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    padding: 30px 0;
    background-color: var(--bg-primary);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-pink);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.03em;
    color: var(--text-black);
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-pink);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 0px;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: var(--text-black);
    margin-bottom: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    white-space: normal;
}

/* Roze onderstreeping voor "wel" met golvend lijntje */
.wel-highlight {
    position: relative;
    display: inline-block;
}

.wel-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="6" viewBox="0 0 100 6" xmlns="http://www.w3.org/2000/svg"><path d="M0 3 Q 5 0, 10 3 T 20 3 T 30 3 T 40 3 T 50 3 T 60 3 T 70 3 T 80 3 T 90 3 T 100 3" stroke="%23E47C7C" stroke-width="3" fill="none"/></svg>');
    background-repeat: repeat-x;
    background-size: 40px 6px;
}

/* "wel" zonder onderstreeping */
.wel-highlight-no-underline {
    position: relative;
    display: inline-block;
    color: var(--secondary-pink);
    font-weight: 700;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--secondary-pink);
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    white-space: normal;
}

/* iPhone Mockups Section */
.phones-section {
    padding: 40px 0 40px;
    background-color: var(--bg-primary);
}

.hero-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.hero-visual-img {
    max-width: 100%;
    height: auto;
    width: 780px;
}

/* Download CTA */
.download-cta {
    text-align: center;
    margin-top: 40px;
}

.download-cta .download-img {
    max-width: 224px;
    height: auto;
    transition: transform 0.3s ease;
}

.download-cta .download-img:hover {
    transform: scale(1.05);
}

/* Features Header */
.features-header {
    padding: 60px 0 30px;
    text-align: center;
}

.features-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-black);
    margin-bottom: 16px;
}

.features-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--secondary-pink);
}

/* Features Section - Alle elementen op gelijke hoogte */
.features-section {
    padding: 40px 0 60px;
    background-color: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.feature-card {
    background: var(--bg-primary);
    border: 2px solid var(--secondary-pink);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 640px;
    height: 640px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 124, 124, 0.2);
}

.feature-banner {
    width: 100%;
    margin-bottom: 24px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-banner-medium {
    max-width: 320px;
}

.feature-banner-large {
    max-width: 380px;
}

.feature-banner-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.feature-badge {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--secondary-pink);
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.feature-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: var(--text-black);
    max-width: 280px;
}

/* Nieuwe Onboarding-Style Interactive Demo */
.interactive-banner-new {
    background: #FFE8ED;
    border-radius: 16px;
    padding: 18px 16px;
    width: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.onboarding-demo {
    width: 100%;
    max-width: 260px;
}

.demo-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-black);
    text-align: center;
    margin-bottom: 6px;
}

.demo-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 12px;
}

.mimi-display {
    width: 110px;
    height: 110px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mimi-char {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

.status-card {
    background: #F49B9B;
    border-radius: 14px;
    padding: 2px;
    margin-bottom: 14px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(244, 155, 155, 0.2);
}

.status-card.safe {
    background: #F49B9B;
}

.status-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.status-countdown {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 4px;
}

.status-subtext {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
}

/* Pulse animation keyframes */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.slider-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    animation: pulse 1.6s ease-in-out infinite;
}

.slider-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-black);
    text-align: center;
    margin-bottom: 10px;
}

.slider-controls {
    width: 100%;
    position: relative;
    padding-top: 0;
    height: 32px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 0 2px;
}

.slider-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: var(--text-gray);
}

.demo-slider {
    width: 100%;
    height: 20px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}

.demo-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--secondary-pink);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(228, 124, 124, 0.4);
}

.demo-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--secondary-pink);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(228, 124, 124, 0.4);
}

.slider-track-bg {
    width: 100%;
    height: 6px;
    background: #E0E0E0;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    overflow: hidden;
    pointer-events: none;
}

.slider-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-pink) 0%, var(--primary-pink) 100%);
    border-radius: 4px;
    width: 53%;
    transition: width 0.1s ease;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 0 30px;
    text-align: center;
}

.disclaimer-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-black);
    margin-bottom: 16px;
}

.disclaimer-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--secondary-pink);
}

/* Values Section */
.values-section {
    padding: 40px 0 60px;
    background-color: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.values-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.values-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.values-mimi {
    width: 90px;
    height: auto;
    margin-bottom: 16px;
}

.values-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
}

.values-title-green {
    color: var(--success-green);
}

.values-title-pink {
    color: var(--primary-pink);
}

.values-list {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 400px;
}

.values-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.check-icon,
.cross-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-icon {
    color: var(--success-green);
}

.cross-icon {
    color: var(--primary-pink);
}

.values-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-black);
    flex: 1;
}

/* Disclaimer Text - Transparant */
.disclaimer-text-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0;
}

.disclaimer-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: var(--text-gray);
}

/* Download Section */
.download-section {
    padding: 50px 0;
    text-align: center;
}

.download-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--secondary-pink);
    margin-bottom: 24px;
}

.download-link {
    display: inline-block;
}

.download-img {
    max-width: 280px;
    height: auto;
    transition: transform 0.3s ease;
}

.download-img:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    padding: 50px 0 30px;
    background-color: var(--bg-primary);
}

.footer-divider {
    width: 100%;
    max-width: 1000px;
    height: 1px;
    background: var(--primary-pink);
    margin: 0 auto 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-pink);
}

.footer-social {
    display: flex;
    align-items: center;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 40px;
    height: 40px;
}

/* Reset password page */
.reset-main {
    padding: 80px 0 60px;
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
}

.reset-card {
    max-width: 600px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.reset-mimi {
    width: 90px;
    height: auto;
    margin-bottom: 16px;
}

.reset-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.3;
    color: var(--text-black);
    margin-bottom: 16px;
}

.reset-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 14px;
}

.reset-small {
    font-size: 13px;
}

.reset-support-link {
    display: inline-block;
    margin-top: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--secondary-pink);
    text-decoration: none;
}

.reset-support-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .reset-main {
        padding: 60px 0 40px;
    }

    .reset-card {
        padding: 32px 24px;
    }

    .reset-title {
        font-size: 22px;
    }

    .reset-text {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle,
    .features-subtitle {
        font-size: 20px;
    }

    .features-title {
        font-size: 34px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-card {
        min-height: auto;
        height: auto;
    }

    .phones-grid {
        height: 480px;
    }

    .phone-item-left,
    .phone-item-right {
        left: auto;
        right: auto;
    }

    .phone-item-left {
        left: calc(50% - 320px);
    }

    .phone-item-right {
        right: calc(50% - 320px);
    }

    .phone-item-left .phone-img,
    .phone-item-right .phone-img {
        max-width: 240px;
    }

    .phone-item-center .phone-img {
        max-width: 350px;
    }
}

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

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav {
        gap: 24px;
    }

    .nav-link,
    .footer-link {
        font-size: 14px;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle,
    .features-subtitle {
        font-size: 18px;
    }

    .features-title {
        font-size: 28px;
    }

    .disclaimer-title {
        font-size: 28px;
    }

    .disclaimer-subtitle {
        font-size: 20px;
    }

    .phones-grid {
        height: auto;
        flex-direction: column;
        gap: 30px;
        position: static;
    }

    .phone-item {
        position: static;
        transform: none !important;
    }

    .phone-item-left .phone-img,
    .phone-item-right .phone-img,
    .phone-item-center .phone-img {
        max-width: 280px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        min-height: auto;
        height: auto;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 16px;
    }

    .nav {
        gap: 16px;
    }

    .nav-link,
    .footer-link {
        font-size: 13px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle,
    .features-subtitle {
        font-size: 16px;
    }

    .features-title {
        font-size: 24px;
    }

    .disclaimer-title {
        font-size: 24px;
    }

    .disclaimer-subtitle {
        font-size: 18px;
    }

    .feature-badge,
    .download-title {
        font-size: 18px;
    }

    .values-mimi {
        width: 70px;
    }

    .values-title {
        font-size: 18px;
    }

    .values-column {
        padding: 30px 20px;
    }

    .mimi-display {
        width: 110px;
        height: 110px;
    }

    .status-countdown {
        font-size: 40px;
    }
}
