
:root {
    --orange: #FF7F50;
    --orange-light: #FFF0EB;
    --grey-bg: #F8F9FA;
    --grey-soft: #F0F0F0;
    --text-main: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --font: 'Quicksand', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: var(--font); background-color: var(--grey-bg); color: var(--text-main); font-weight: 500; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.f-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 6rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 3rem; }
.w-100 { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-lg { font-size: 1.2rem; }
.text-orange { color: var(--orange); }

/* Header */
.family-top { padding: 20px 0; background: var(--grey-bg); }
.header-wrapper { display: flex; justify-content: space-between; align-items: center; }
.brand-warm { font-size: 1.8rem; font-weight: 700; color: var(--text-main); display: flex; align-items: center; gap: 8px; }
.family-nav { display: flex; gap: 30px; }
.family-nav a { font-weight: 600; color: var(--text-light); transition: color 0.2s; }
.family-nav a:hover { color: var(--orange); }

/* Buttons */
.btn-orange-pill { background: var(--orange); color: var(--white); padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; cursor: pointer; border: none; }
.btn-orange-pill:hover { transform: translateY(-2px); box-shadow: 0 8px 15px rgba(255, 127, 80, 0.3); }
.btn-orange-solid { background: var(--orange); color: var(--white); padding: 15px 20px; border-radius: 12px; font-weight: 700; font-size: 1.1rem; cursor: pointer; border: none; transition: background 0.2s; display: inline-block; }
.btn-orange-solid:hover { background: #E66638; }
.link-orange { color: var(--orange); font-weight: 700; display: inline-block; border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.link-orange:hover { border-color: var(--orange); }

/* Hero */
.hero-warm { padding: 80px 0 60px; }
.hero-warm h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; color: var(--text-main); }
.warm-lead { font-size: 1.3rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* Overlapping Avatars */
.avatar-ring { position: relative; width: 300px; height: 300px; margin: 0 auto; border-radius: 50%; border: 2px dashed var(--orange); }
.avatar, .avatar-center { position: absolute; width: 80px; height: 80px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.avatar-center { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; font-size: 3rem; background: var(--orange-light); border: 2px solid var(--orange); }
.a1 { top: -40px; left: 110px; }
.a2 { bottom: 40px; right: -20px; }
.a3 { bottom: 40px; left: -20px; }
.a4 { top: 110px; right: -40px; }

/* Sections */
.section-spacing { padding: 60px 0; }
.page-title-warm { padding: 60px 0 20px; }
.page-title-warm h1 { font-size: 3rem; margin-bottom: 15px; }
.feature-flex { display: flex; align-items: center; gap: 60px; }
.f-copy, .f-graphic { flex: 1; }
.f-copy h2 { font-size: 2.5rem; margin-bottom: 20px; }
.f-copy p { font-size: 1.15rem; color: var(--text-light); }
.soft-card { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.bg-orange-light { background: var(--orange-light); border: 2px solid rgba(255, 127, 80, 0.2); }
.reverse-desk { flex-direction: row-reverse; }

.progress-bar-wrap { height: 15px; background: var(--white); border-radius: 10px; overflow: hidden; margin-top: 15px; }
.progress-fill { height: 100%; background: var(--orange); border-radius: 10px; }

/* Footer / Form */
.family-footer { background: var(--white); margin-top: 80px; padding-top: 80px; border-top: 1px solid var(--grey-soft); }
.footer-card { background: var(--grey-bg); border-radius: 30px; padding: 50px; display: flex; gap: 50px; align-items: center; box-shadow: inset 0 0 0 2px var(--grey-soft); margin-bottom: 80px; }
.fcard-left { flex: 1; }
.fcard-left h2 { font-size: 2.5rem; margin-bottom: 15px; line-height: 1.2; }
.fcard-left p { font-size: 1.1rem; color: var(--text-light); }
.fcard-right { flex: 1.5; }
.warm-form { background: var(--white); padding: 30px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.w-row { display: flex; gap: 15px; margin-bottom: 15px; }
.w-row input, .w-row select { flex: 1; padding: 15px; border: 2px solid var(--grey-soft); border-radius: 10px; font-family: var(--font); font-size: 1rem; font-weight: 500; outline: none; transition: border-color 0.2s; }
.w-row input:focus, .w-row select:focus { border-color: var(--orange); }

.footer-links-warm { display: flex; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid var(--grey-soft); }
.warm-col p { color: var(--text-light); margin-bottom: 10px; font-size: 0.95rem; }
.warm-col a:hover { color: var(--orange); }
.footer-bottom-warm { padding: 30px 0; text-align: center; color: var(--text-light); font-size: 0.9rem; }

/* Cookie */
.cookie-soft { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 5px; border-radius: 50px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); z-index: 1000; display: none; width: 90%; max-width: 600px; }
.cs-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 25px; }
.cs-content p { font-size: 0.95rem; margin: 0; }

/* Animations */
.bounce-in { animation: bounce 1s cubic-bezier(0.28, 0.84, 0.42, 1); }
.fade-delay { animation: fadeIn 1s ease-in 0.5s both; }
@keyframes bounce { 0% { transform: scale(0.8); opacity: 0; } 50% { transform: scale(1.05); } 100% { transform: scale(1); opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
    .family-nav { display: none; }
    .feature-flex, .reverse-desk, .footer-card { flex-direction: column; text-align: center; }
    .f-copy.text-right { text-align: center; }
    .w-row { flex-direction: column; }
    .footer-links-warm { flex-direction: column; gap: 30px; text-align: center; }
    .avatar-ring { margin: 60px auto 40px; }
    .cs-content { flex-direction: column; text-align: center; padding: 20px; }
    .cookie-soft { border-radius: 20px; }
}
