/* ── HERO BÖLÜMÜ ── */
.hero {
    padding: 80px 5% 100px;
    background: linear-gradient(160deg, #FFF0F5 0%, #FFF8FA 40%, #EEF8FE 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero .circle-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 143, 171, 0.18), transparent 70%);
    top: -80px;
    right: 100px;
    border-radius: 50%;
    pointer-events: none;
}

.hero .circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(116, 199, 236, 0.2), transparent 70%);
    bottom: -60px;
    left: 300px;
    border-radius: 50%;
    pointer-events: none;
}

.hero .circle-3 {
    position: absolute;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 209, 102, 0.25), transparent 70%);
    top: 80px;
    left: 80px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-left {
    flex: 1.95;        /* 1.3'ün %50 fazlası */
    z-index: 1;
}
.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sun-light);
    color: #B47A00;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    border: 2px solid var(--sun);
}

.hero h1 {
    font-size: clamp(36px, 6vw, 60px); /* Responsive typography */
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero h1 .pink-word {
    color: var(--bubblegum);
}

.hero h1 .sky-word {
    color: var(--sky);
}

.hero h1 .under {
    display: inline-block;
    position: relative;
}

.hero h1 .under::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--sun);
    border-radius: 50px;
    opacity: 0.7;
}

.hero p {
    font-size: clamp(15px, 2.5vw, 17px); /* Responsive typography */
    color: var(--text);
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.9;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap; /* Butonların sığmaması durumunda alt satıra geçmesini sağlar */
    gap: 14px;
    align-items: center;
    margin-bottom: 48px;
}

.hero-right {
    flex: 1;
    z-index: 1;
}



/* nasıl çalışır butonu  */
.btn-big-sky {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--sky), #4FAEE8);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Baloo 2', cursive;
    box-shadow: 0 8px 28px rgba(79, 174, 232, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-big-sky:hover {
    transform: translateY(-3px);
}


/* büyük şirin dashboard kartı */
.cute-dashboard {
    width: 100%;
    max-width: 840px;          /* Kartı genişlet: 560px'in %50 fazlası */
    margin: 0 auto;            /* Hero içinde ortala */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.cute-dashboard::before {
    content: '🌈';
    position: absolute;
    top: -18px;
    right: 32px;
    font-size: 36px;
}


.baby-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.baby-avatar-big {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--bubblegum-light), var(--sky-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    border: 3px solid var(--bubblegum-light);
}
.baby-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    font-family: 'Baloo 2', cursive;
}

.baby-info p {
    font-size: 13px;
    color: var(--text-soft);
}
.baby-age-tag {
    margin-left: auto;
    background: linear-gradient(135deg, var(--bubblegum), #FF6B95);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    font-family: 'Baloo 2', cursive;
    box-shadow: 0 4px 12px rgba(255, 107, 149, 0.3);
}





.color-stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Responsive grid */
    gap: 10px;
    margin-bottom: 24px;
}
.color-stat {
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
}

.color-stat .cs-emoji {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
}

.color-stat strong {
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 800;
    display: block;
}

.color-stat span {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.75;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* genel bölüm emojisi */
.section-emoji {
    font-size: 48px;
    display: block;
    margin-bottom: 8px;
}

/* ── ÖZELLİKLER KARTLARI ── */
.features {
    background: var(--white);
}

/* ═══════════════════════════════════════════════════════════ */
/* ── ANA SAYFA EK STİLLERİ ── */
/* ═══════════════════════════════════════════════════════════ */

/* ── about-project ── */
.about-project { position: relative; padding: 100px 80px; background: var(--white); overflow: hidden; min-height: 500px; display: flex; align-items: center; }
.about-bg-deco { position: absolute; inset: 0; pointer-events: none; }
.about-bg-deco::before { content: '🌸'; position: absolute; font-size: 120px; opacity: 0.04; bottom: -20px; right: -10px; transform: rotate(-15deg); }
.about-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text .pink-word { color: var(--bubblegum); }
.about-desc { font-size: 16px; color: var(--text); line-height: 1.9; margin-bottom: 16px; }
.about-impact { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.impact-item { display: flex; gap: 16px; align-items: flex-start; }
.impact-item div strong { font-family: 'Baloo 2', cursive; font-size: 16px; font-weight: 800; color: var(--text); display: block; margin-bottom: 4px; }
.impact-item div p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }
.impact-icon { font-size: 32px; width: 52px; height: 52px; background: var(--bubblegum-soft); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-visual { display: flex; align-items: center; justify-content: center; }
.about-illustration { text-align: center; position: relative; }
.about-family-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border: 4px solid var(--bubblegum-light);
    transition: all 0.3s;
    display: block;
}
.about-family-img:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(255, 143, 171, 0.25);
}
.about-hearts { display: flex; gap: 16px; justify-content: center; margin-top: 16px; font-size: 32px; animation: pulse 2s infinite; }

/* ── how-it-works ── */
.how-it-works { padding: 90px 80px; background: linear-gradient(160deg, var(--sky-soft) 0%, var(--bg) 100%); }
.steps-container { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }
.step-card { background: var(--white); border-radius: var(--radius-xl); padding: 36px 28px; text-align: center; flex: 1; min-width: 200px; max-width: 300px; border: 3px solid var(--border); transition: all 0.3s; position: relative; }
.step-card:hover { transform: translateY(-8px); border-color: var(--bubblegum); box-shadow: var(--shadow-hover); }
.step-card h3 { font-family: 'Baloo 2', cursive; font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.step-number { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); width: 36px; height: 36px; background: linear-gradient(135deg, var(--bubblegum), #FF6B95); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Baloo 2',cursive; font-weight: 800; font-size: 18px; box-shadow: 0 4px 12px rgba(255,107,149,0.3); }
.step-icon { font-size: 48px; display: block; margin: 12px 0 16px; }
.step-arrow { font-size: 32px; color: var(--bubblegum); opacity: 0.5; flex-shrink: 0; }

/* ── feat-detailed ── */
.feat-grid-detailed { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feat-detailed-card { background: var(--white); border-radius: var(--radius-xl); overflow: hidden; border: 2px solid var(--border); transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275); }
.feat-detailed-card:hover { transform: translateY(-8px); border-color: var(--bubblegum); box-shadow: var(--shadow-hover); }
.feat-detailed-media { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; }
.feat-detailed-body { padding: 28px; }
.feat-detailed-body h3 { font-family: 'Baloo 2', cursive; font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.feat-detailed-body p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.feat-detailed-tag { display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 800; font-family: 'Baloo 2',cursive; margin-bottom: 10px; }
.feat-detailed-features { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 20px; }
.feat-detailed-features span { font-size: 12px; font-weight: 600; color: var(--text-soft); padding: 4px 8px; background: var(--bg); border-radius: 8px; }
.feat-detailed-link { display: inline-block; font-weight: 700; color: var(--bubblegum); text-decoration: none; font-size: 14px; transition: all 0.2s; }
.feat-detailed-link:hover { transform: translateX(4px); color: #FF6B95; }

/* ── btn-edit-profile (ana sayfadaki) ── */
.btn-edit-profile { width: 100%; padding: 12px; border: 2px dashed var(--bubblegum-light); background: var(--bubblegum-soft); border-radius: var(--radius); font-size: 14px; font-weight: 700; color: var(--bubblegum); cursor: pointer; transition: all 0.2s; font-family: 'Baloo 2',cursive; margin-bottom: 20px; }
.btn-edit-profile:hover { background: var(--bubblegum); color: white; border-style: solid; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,107,149,0.3); }
/* Buton ile kutucuklar arasında nefes payı */
.btn-edit-profile {
    margin-top: 18px;
}
/* ── design-note ── */
.design-note { display: none; }



/* ═══  — GELİŞTİRİLMİŞ HERO SAĞ PANEL ═══ */
/* Üstte "örnek" şeridi */
.mock-s3-badge {
    background: var(--lavender-soft); color: var(--lavender);
    border: 1.5px dashed var(--lavender-light);
    border-radius: 50px; padding: 8px 14px; text-align: center;
    font-size: .8rem; font-weight: 700; margin-bottom: 14px;
}

/* "Neleri takip edeceksin?" — belirgin başlık kartı */
.mock-feat-title {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 2px solid var(--bubblegum-light);
    border-radius: 16px; padding: 12px 14px; margin: 18px 0 12px;
    box-shadow: 0 6px 18px rgba(255,143,171,.18);
}
.mock-feat-title .mf-pin {
    width: 44px; height: 44px; flex-shrink: 0; font-size: 1.25rem;
    background: linear-gradient(135deg, var(--bubblegum), var(--lavender));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(255,143,171,.35);
}
.mock-feat-title strong { font-size: .9rem; font-weight: 800; color: var(--text); display: block; }
.mock-feat-title small { font-size: .68rem; font-weight: 600; color: var(--text-soft); display: block; margin-top: 2px; }
/* Takip kutucukları — renkli ikon balonu + üst renk şeridi */
.mock-feat-strip {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.mock-feat-item {
    position: relative; overflow: hidden;
    background: #fff; border: 2px solid var(--border); border-radius: 16px;
    padding: 14px 8px 12px; text-align: center;
    box-shadow: 0 4px 12px rgba(61,44,53,.06);
    transition: transform .15s ease, box-shadow .15s ease;
}
.mock-feat-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--mf);
}
.mock-feat-item:hover {
    transform: translateY(-3px); box-shadow: 0 10px 22px rgba(61,44,53,.14);
}
.mock-feat-item .mf-icon {
    width: 42px; height: 42px; margin: 0 auto 9px; border-radius: 50%;
    background: var(--mf-soft); color: var(--mf);
    display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.mock-feat-item .mf-name { display: block; font-weight: 800; font-size: .74rem; color: var(--text); }
.mock-feat-item .mf-tip { display: block; font-size: .6rem; color: var(--text-soft); margin-top: 3px; line-height: 1.35; }
/* kutucuk renk temaları */
.mf-pink { --mf: var(--bubblegum); --mf-soft: var(--bubblegum-soft); }
.mf-sky  { --mf: var(--sky); --mf-soft: var(--sky-soft); }
.mf-mint { --mf: #3DAE6E; --mf-soft: var(--mint-soft); }
.mf-sun  { --mf: #C89000; --mf-soft: var(--sun-soft); }
.mf-lav  { --mf: var(--lavender); --mf-soft: var(--lavender-soft); }
.mf-peach{ --mf: #E0753B; --mf-soft: var(--peach-light); }
/* ═══ SOL HERO: ÖZELLİK BADGE'LERİ (ilk 3 saniye algısı, göz yormaz) ═══ */
.mock-badges {
    margin-top: 24px;
    display: flex; flex-wrap: wrap; gap: 8px;
    max-width: 660px;
}
.mock-badge {
    background: var(--bubblegum-soft);
    color: #C23B5E;
    border: 1.5px solid var(--bubblegum-light);
    border-radius: 50px;
    padding: 7px 13px;
    font-size: .76rem; font-weight: 800;
    display: inline-flex; align-items: center; gap: 6px;
    box-shadow: 0 3px 10px rgba(255,143,171,.16);
    transition: transform .15s ease, box-shadow .15s ease;
}
.mock-badge:hover {
    transform: translateY(-2px); box-shadow: 0 8px 16px rgba(255,143,171,.28);
}
.mock-badge.b-sky  { background: var(--sky-soft);  color: #1E6FA8; border-color: var(--sky-light); }
.mock-badge.b-mint { background: var(--mint-soft); color: #1F7A4D; border-color: var(--mint-light); }
.mock-badge.b-sun  { background: var(--sun-soft);  color: #8A5C00; border-color: var(--sun-light); }
.mock-badge.b-lav  { background: var(--lavender-soft); color: #6F4FC0; border-color: var(--lavender-light); }







/* ── Hero Video Arka Planı ── */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    pointer-events: none;
}

.hero {
    position: relative;
}
.hero > div:not(.hero-video-bg):not(.hero-video-overlay) {
    position: relative;
    z-index: 2;
}


/* Hero video üzerindeki yazıların okunabilirliği */
.hero h1 .pink-word {
    color: #FFB3C7;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.hero h1 .sky-word {
    color: #9AD8F0;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.hero .under::after {
    opacity: 0.9;
    background: #FFB3C7;
}
.hero h1 {
    color: #fff;
    text-shadow: 0 3px 20px rgba(0,0,0,0.5);
}
.hero p {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}






















