/* ============================================
   ACASA - Design & Animatii
   ============================================ */

/* Carusel — banda compacta, nu domina pagina */
.home-carousel-wrapper {
    height: clamp(200px, 22vw, 340px);
    border-radius: 0;
    background: linear-gradient(135deg, #2D3561, #7B2D8E);
}

.home-carousel-wrapper .carousel-image-wrapper {
    overflow: hidden;
    background: linear-gradient(135deg, #2D3561, #7B2D8E);
}

.home-carousel-wrapper .carousel-image-wrapper .protected-media,
.home-carousel-wrapper .carousel-image-wrapper .protected-media img.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: var(--carousel-fit, cover);
    object-position: var(--carousel-pos, center center);
}

.home-carousel-wrapper .carousel-image-wrapper .protected-media img.carousel-image {
    transform: scale(var(--carousel-zoom, 1));
    transform-origin: var(--carousel-pos, center center);
}

.home-carousel-wrapper .carousel-overlay {
    background: linear-gradient(
        to top,
        rgba(45, 53, 97, 0.82) 0%,
        rgba(45, 53, 97, 0.35) 40%,
        transparent 72%
    );
    align-items: flex-end;
    justify-content: center;
    padding: 0 24px 36px;
}

.home-carousel-wrapper .carousel-content {
    width: 100%;
    max-width: 900px;
}

@media (max-width: 768px) {
    .home-carousel-wrapper {
        height: clamp(170px, 28vw, 260px);
    }

    .home-carousel-wrapper .carousel-overlay {
        padding: 0 16px 28px;
    }
}

@media (max-width: 480px) {
    .home-carousel-wrapper {
        height: clamp(180px, 38vw, 240px);
    }

    .home-carousel-wrapper .carousel-overlay {
        padding: 0 12px 20px;
        align-items: flex-end;
    }

    .home-carousel-wrapper .carousel-description {
        display: none;
    }

    .home-carousel-wrapper .carousel-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
}

.hero-banner--home {
    padding: 32px 0 48px;
    background: linear-gradient(135deg, #2D3561 0%, #7B2D8E 45%, #E8A838 100%);
}

.hero-banner--home.hero-banner--with-carousel {
    padding: 24px 0 40px;
}

.hero-banner--home .hero-content h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.hero-banner--home .hero-content .lead {
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-banner--home .hero-content p {
    font-size: 16px;
    margin-bottom: 0;
    max-width: 640px;
}

.hero-banner--home .hero-wave svg {
    height: 48px;
}

.hero-banner--home .hero-content h1,
.hero-banner--home .hero-content .lead,
.hero-banner--home .hero-content p {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-banner--home.hero-loaded .hero-content h1 { opacity: 1; transform: none; transition-delay: 0.1s; }
.hero-banner--home.hero-loaded .hero-content .lead { opacity: 1; transform: none; transition-delay: 0.2s; }
.hero-banner--home.hero-loaded .hero-content p { opacity: 1; transform: none; transition-delay: 0.3s; }

@media (max-width: 768px) {
    .hero-banner--home {
        padding: 24px 0 36px;
    }

    .hero-banner--home.hero-banner--with-carousel {
        padding: 20px 0 32px;
    }

    .hero-banner--home .hero-content h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .hero-banner--home .hero-content .lead {
        font-size: 16px;
    }

    .hero-banner--home .hero-content p {
        font-size: 14px;
    }

    .hero-banner--home .hero-wave svg {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero-banner--home .hero-content h1 {
        font-size: 24px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #fff, #fff9f0);
    color: #7B2D8E;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-btn-outline {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(6px);
}

.hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Quick nav */
.home-quick-nav {
    background: #fff;
    border-bottom: 1px solid rgba(123, 45, 142, 0.08);
    box-shadow: 0 4px 20px rgba(45, 53, 97, 0.06);
    padding: 18px 0;
    position: relative;
    z-index: 5;
}

.home-quick-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.home-quick-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(232, 168, 56, 0.12));
    color: #2D3561;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.home-quick-pill:hover {
    border-color: #7B2D8E;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(123, 45, 142, 0.15);
    color: #7B2D8E;
}

.home-quick-pill i {
    color: #7B2D8E;
}

/* Stats strip */
.home-stats {
    padding: 40px 0;
    background: linear-gradient(90deg, #7B2D8E, #4A90E2, #E8A838);
    background-size: 200% 100%;
    animation: homeGradientShift 8s ease infinite;
}

@keyframes homeGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.home-stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    color: #fff;
}

.home-stat-item strong {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 6px;
}

.home-stat-item span {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section blocks */
.home-section {
    padding: 70px 0;
}

.home-section-alt {
    background: linear-gradient(180deg, #FFF9F0 0%, #fff 100%);
}

.home-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 24px;
}

.home-section-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 34px;
    color: #2D3561;
    margin-bottom: 10px;
}

.home-section-header p {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
}

.home-section-header .section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: #7B2D8E;
    font-weight: 800;
    text-decoration: none;
}

.home-section-header .section-link:hover {
    gap: 12px;
}

/* Price cards home */
.home-prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.home-price-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 10px 35px rgba(45, 53, 97, 0.08);
    border-top: 5px solid var(--card-color, #7B2D8E);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}

.home-price-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transition: left 0.6s ease;
}

.home-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(123, 45, 142, 0.15);
}

.home-price-card:hover::after {
    left: 120%;
}

.home-price-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--card-color, #7B2D8E), #E8A838);
}

.home-price-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 22px;
    color: #2D3561;
    margin-bottom: 8px;
}

.home-price-amount {
    font-family: 'Fredoka One', cursive;
    font-size: 28px;
    color: var(--card-color, #7B2D8E);
    margin-bottom: 12px;
}

.home-price-amount small {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

.home-price-features {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}

.home-price-features li {
    font-size: 14px;
    color: #555;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-price-features li i {
    color: var(--card-color, #7B2D8E);
    font-size: 11px;
}

.home-price-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    color: var(--card-color, #7B2D8E);
    text-decoration: none;
    font-size: 14px;
}

/* Explore page cards */
.home-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.home-page-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 30px rgba(45, 53, 97, 0.08);
    border: 2px solid transparent;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.home-page-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: 0 16px 40px rgba(123, 45, 142, 0.18);
    border-color: rgba(123, 45, 142, 0.25);
}

.home-page-card-image {
    height: 160px;
    background: linear-gradient(135deg, var(--card-accent, #7B2D8E), var(--card-accent-2, #E8A838));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-page-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page-card-image i {
    font-size: 48px;
    color: rgba(255,255,255,0.9);
    animation: homeIconPulse 3s ease-in-out infinite;
}

@keyframes homeIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.home-page-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-page-card-body h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 20px;
    color: #2D3561;
    margin-bottom: 8px;
}

.home-page-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.home-page-card-cta {
    font-weight: 800;
    font-size: 14px;
    color: #7B2D8E;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-page-card:hover .home-page-card-cta {
    gap: 10px;
}

/* Reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease var(--reveal-delay, 0s), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

.home-content-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 30px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(45, 53, 97, 0.06);
}

/* ============================================
   Filozofie — Educatia este stiinta de a asculta
   ============================================ */
.home-philosophy {
    position: relative;
    padding: 88px 24px 100px;
    background: linear-gradient(145deg, #FFF9F0 0%, #F0F6FF 40%, #F8F0FF 100%);
    overflow: hidden;
}

.home-philosophy-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-philosophy-float {
    position: absolute;
    font-size: 22px;
    opacity: 0.5;
    animation: homePhilosophyFloat 5s ease-in-out infinite;
}

.home-philosophy-float--1 { top: 12%; left: 8%; }
.home-philosophy-float--2 { top: 22%; right: 10%; animation-delay: 1s; font-size: 26px; }
.home-philosophy-float--3 { bottom: 28%; left: 6%; animation-delay: 2s; font-size: 28px; }
.home-philosophy-float--4 { top: 55%; right: 6%; animation-delay: 0.5s; }
.home-philosophy-float--5 { bottom: 18%; right: 18%; animation-delay: 1.5s; font-size: 18px; }

@keyframes homePhilosophyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(10deg); }
}

.home-philosophy-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
}

/* Visual — orbit around ear */
.home-philosophy-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.home-philosophy-orbit {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-philosophy-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px dashed;
    animation: homePhilosophySpin 24s linear infinite;
}

.home-philosophy-ring--outer {
    inset: 0;
    border-color: rgba(123, 45, 142, 0.2);
}

.home-philosophy-ring--inner {
    inset: 28px;
    border-color: rgba(74, 144, 226, 0.25);
    animation-direction: reverse;
    animation-duration: 18s;
}

@keyframes homePhilosophySpin {
    to { transform: rotate(360deg); }
}

.home-philosophy-core {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(145deg, #7B2D8E, #E8A838);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    box-shadow:
        0 16px 40px rgba(123, 45, 142, 0.35),
        0 0 0 8px rgba(255, 255, 255, 0.85),
        0 0 0 12px rgba(232, 168, 56, 0.25);
    animation: homePhilosophyPulse 3s ease-in-out infinite;
}

@keyframes homePhilosophyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.home-philosophy-orbit-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(45, 53, 97, 0.12);
    animation: homePhilosophyOrbit 8s ease-in-out infinite;
}

.home-philosophy-orbit-icon--1 { top: 8px; left: 50%; margin-left: -22px; animation-delay: 0s; }
.home-philosophy-orbit-icon--2 { right: 8px; top: 50%; margin-top: -22px; animation-delay: -2s; }
.home-philosophy-orbit-icon--3 { bottom: 8px; left: 50%; margin-left: -22px; animation-delay: -4s; }
.home-philosophy-orbit-icon--4 { left: 8px; top: 50%; margin-top: -22px; animation-delay: -6s; }

@keyframes homePhilosophyOrbit {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15) rotate(8deg); }
}

.home-philosophy-visual-caption {
    margin: 0;
    font-family: 'Fredoka', 'Fredoka One', cursive;
    font-size: 15px;
    font-weight: 600;
    color: #7B2D8E;
    letter-spacing: 0.04em;
}

/* Text card */
.home-philosophy-content {
    background: #fff;
    border-radius: 28px;
    padding: 40px 38px;
    box-shadow:
        0 20px 50px rgba(45, 53, 97, 0.1),
        0 0 0 1px rgba(123, 45, 142, 0.06);
    border-left: 6px solid transparent;
    border-image: linear-gradient(180deg, #7B2D8E, #E8A838, #4A90E2) 1;
    position: relative;
    overflow: hidden;
}

.home-philosophy-content::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.12), transparent 70%);
    pointer-events: none;
}

.home-philosophy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(123, 45, 142, 0.1), rgba(255, 107, 157, 0.12));
    color: #7B2D8E;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.home-philosophy-badge i {
    color: #FF6B8A;
    animation: homePhilosophyHeart 1.5s ease-in-out infinite;
}

@keyframes homePhilosophyHeart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.home-philosophy-content h2 {
    font-family: 'Fredoka', 'Fredoka One', cursive;
    font-size: clamp(26px, 4vw, 36px);
    color: #2D3561;
    line-height: 1.2;
    margin: 0 0 18px;
}

.home-philosophy-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #7B2D8E, #4A90E2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.home-philosophy-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 8px;
    background: linear-gradient(90deg, rgba(232, 168, 56, 0.45), rgba(123, 45, 142, 0.2));
    border-radius: 4px;
    z-index: -1;
}

.home-philosophy-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    margin: 0 0 20px;
}

.home-philosophy-quote {
    margin: 0 0 24px;
    padding: 18px 22px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08), rgba(232, 168, 56, 0.1));
    border-radius: 16px;
    border-left: 4px solid #E8A838;
    font-family: 'Baloo 2', cursive;
    font-size: 18px;
    font-weight: 600;
    color: #2D3561;
    line-height: 1.6;
    font-style: italic;
}

.home-philosophy-quote-mark {
    color: #E8A838;
    font-size: 24px;
    font-style: normal;
    font-family: 'Fredoka One', cursive;
    line-height: 0;
}

.home-philosophy-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-philosophy-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 50px;
    background: #FFF9F0;
    border: 2px solid rgba(123, 45, 142, 0.1);
    font-weight: 700;
    font-size: 14px;
    color: #2D3561;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-philosophy-chip span {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.25s ease;
}

.home-philosophy-chip:hover {
    transform: translateY(-3px);
    border-color: #7B2D8E;
    box-shadow: 0 8px 20px rgba(123, 45, 142, 0.12);
}

.home-philosophy-chip:hover span {
    transform: rotate(-12deg) scale(1.15);
}

.home-philosophy-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.home-philosophy-wave svg {
    width: 100%;
    height: 56px;
    display: block;
}

.home-philosophy.is-visible .home-philosophy-content {
    animation: homePhilosophyCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.home-philosophy.is-visible .home-philosophy-visual {
    animation: homePhilosophyVisualIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s backwards;
}

@keyframes homePhilosophyCardIn {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: none; }
}

@keyframes homePhilosophyVisualIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
    .home-philosophy-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .home-philosophy-content {
        border-left: none;
        border-top: 6px solid transparent;
        border-image: linear-gradient(90deg, #7B2D8E, #E8A838, #4A90E2) 1;
    }

    .home-philosophy-chips {
        justify-content: center;
    }

    .home-philosophy-orbit {
        width: 220px;
        height: 220px;
    }

    .home-philosophy-core {
        width: 90px;
        height: 90px;
        font-size: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-philosophy-float,
    .home-philosophy-ring,
    .home-philosophy-core,
    .home-philosophy-orbit-icon,
    .home-philosophy-badge i {
        animation: none !important;
    }
}

.home-view-all {
    text-align: center;
    margin-top: 32px;
}

.home-view-all .btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #7B2D8E, #E8A838);
    color: #fff;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(123, 45, 142, 0.3);
    transition: transform 0.3s ease;
}

.home-view-all .btn-home:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .home-stat-item strong {
        font-size: 28px;
    }

    .home-section-header h2 {
        font-size: 26px;
    }

    .home-content-block {
        padding: 28px 18px;
        margin: 0 12px;
        border-radius: 20px;
    }

    .home-philosophy {
        padding: 56px 16px 72px;
    }

    .home-philosophy-content {
        padding: 28px 20px;
    }

    .home-play {
        padding: 56px 0;
    }

    .home-play-inner {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .home-stat-item strong {
        font-size: 24px;
    }

    .home-stat-item span {
        font-size: 12px;
    }

    .home-philosophy-content h2 {
        font-size: 22px;
    }

    .home-play-head h2 {
        font-size: 24px;
    }
}

/* ============================================
   HOME PLAY — Activitati & De ce ne alegeti
   ============================================ */
.home-play {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.home-play--activities {
    background: linear-gradient(180deg, #FFF9F0 0%, #fff 50%, #EEF4FF 100%);
}

.home-play--why {
    background: linear-gradient(180deg, #F8F0FF 0%, #FFF9F0 100%);
}

.home-play-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.home-play-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-play-float {
    position: absolute;
    font-size: 28px;
    opacity: 0.4;
    animation: homePlayFloat 5s ease-in-out infinite;
}

.home-play-float--1 { top: 10%; left: 6%; }
.home-play-float--2 { top: 20%; right: 8%; animation-delay: 1s; font-size: 32px; }
.home-play-float--3 { bottom: 15%; left: 10%; animation-delay: 2s; }
.home-play-float--4 { bottom: 25%; right: 5%; animation-delay: 0.5s; font-size: 22px; }

@keyframes homePlayFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(12deg); }
}

.home-play-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.home-play-head-emoji {
    font-size: 48px;
    margin-bottom: 8px;
    display: block;
    animation: homePlayEmoji 3s ease-in-out infinite;
}

@keyframes homePlayEmoji {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(8deg); }
}

.home-play-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 14px;
}

.home-play-label--fun {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.15), rgba(232, 168, 56, 0.25));
    color: #2D3561;
    border: 2px solid rgba(232, 168, 56, 0.3);
}

.home-play-label--trust {
    background: linear-gradient(135deg, rgba(123, 45, 142, 0.12), rgba(255, 107, 157, 0.18));
    color: #7B2D8E;
    border: 2px solid rgba(123, 45, 142, 0.15);
}

.home-play-head h2 {
    font-family: 'Fredoka', 'Fredoka One', cursive;
    font-size: clamp(28px, 4.5vw, 38px);
    color: #2D3561;
    margin: 0 0 12px;
    line-height: 1.15;
}

.home-play-head p {
    margin: 0;
    font-size: 17px;
    color: #666;
    line-height: 1.65;
}

/* Activity cards — playful bubbles */
.home-play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.home-play-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 32px 28px 28px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(45, 53, 97, 0.08);
    border: 2px solid color-mix(in srgb, var(--accent) 12%, transparent);
    transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s ease;
    overflow: hidden;
}

.home-play-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 10%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 55%);
    pointer-events: none;
}

.home-play-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 48px color-mix(in srgb, var(--accent) 25%, transparent);
}

.home-play-card-spark {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 18px;
    opacity: 0.5;
    animation: homePlaySpark 2.5s ease-in-out infinite;
}

@keyframes homePlaySpark {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2) rotate(15deg); }
}

.home-play-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent) 60%, #E8A838));
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 35%, transparent);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.home-play-card:hover .home-play-card-icon {
    transform: scale(1.12) rotate(-8deg);
}

.home-play-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 21px;
    color: #2D3561;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

.home-play-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #666;
    position: relative;
    z-index: 1;
}

/* Trust list — De ce ne alegeti */
.home-trust-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 820px;
    margin: 0 auto;
}

.home-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(45, 53, 97, 0.07);
    border-left: 5px solid var(--accent);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-trust-item--alt {
    flex-direction: row-reverse;
    text-align: right;
    border-left: none;
    border-right: 5px solid var(--accent);
}

.home-trust-item:hover {
    transform: translateX(6px);
    box-shadow: 0 14px 36px color-mix(in srgb, var(--accent) 18%, transparent);
}

.home-trust-item--alt:hover {
    transform: translateX(-6px);
}

.home-trust-icon {
    position: relative;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--accent);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, white), #fff);
    border: 2px solid color-mix(in srgb, var(--accent) 20%, transparent);
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.home-trust-item:hover .home-trust-icon {
    transform: scale(1.1) rotate(-5deg);
}

.home-trust-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.home-trust-body h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 20px;
    color: #2D3561;
    margin: 0 0 8px;
}

.home-trust-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.home-play .reveal-on-scroll.is-visible.home-play-card,
.home-play .reveal-on-scroll.is-visible.home-trust-item {
    transition-delay: var(--stagger, 0s);
}

/* ============================================
   HOME CTA — Programeaza o vizita
   ============================================ */
.home-cta {
    position: relative;
    padding: 72px 24px 88px;
    background: linear-gradient(135deg, #5A7FA5 0%, #7B2D8E 40%, #E8A838 100%);
    background-size: 200% 200%;
    animation: homeCtaGradient 12s ease infinite;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

@keyframes homeCtaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.home-cta-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-cta-balloon {
    position: absolute;
    font-size: 32px;
    opacity: 0.5;
    animation: homeCtaBalloon 6s ease-in-out infinite;
}

.home-cta-balloon--1 { top: 15%; left: 8%; }
.home-cta-balloon--2 { top: 25%; right: 10%; animation-delay: 2s; }
.home-cta-balloon--3 { bottom: 30%; left: 15%; animation-delay: 4s; font-size: 24px; }

@keyframes homeCtaBalloon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.home-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.home-cta-calendar {
    position: relative;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 3px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: homeCtaCalBounce 3s ease-in-out infinite;
}

.home-cta-cal-emoji {
    font-size: 42px;
}

.home-cta-cal-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    animation: homeCtaPulse 2.5s ease-out infinite;
}

@keyframes homeCtaCalBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes homeCtaPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.35); opacity: 0; }
}

.home-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.home-cta-content h2 {
    font-family: 'Fredoka', 'Fredoka One', cursive;
    font-size: clamp(28px, 5vw, 40px);
    margin: 0 0 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.home-cta-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0 0 8px;
    max-width: 520px;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-cta-btn--primary {
    background: #fff;
    color: #7B2D8E;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.home-cta-btn--primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

.home-cta-btn--outline {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
}

.home-cta-btn--outline:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
}

.home-cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.home-cta-wave svg {
    width: 100%;
    height: 48px;
    display: block;
}

@media (max-width: 768px) {
    .home-play {
        padding: 56px 0;
    }

    .home-play-head-emoji {
        font-size: 40px;
    }

    .home-play-grid {
        grid-template-columns: 1fr;
    }

    .home-trust-item,
    .home-trust-item--alt {
        flex-direction: column;
        text-align: center;
        border-left: 5px solid var(--accent);
        border-right: none;
    }

    .home-trust-item--alt:hover,
    .home-trust-item:hover {
        transform: translateY(-4px);
    }

    .home-trust-icon {
        margin: 0 auto;
    }

    .home-cta {
        padding: 56px 20px 72px;
    }

    .home-cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .home-cta-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-cta,
    .home-play-float,
    .home-play-head-emoji,
    .home-play-card-spark,
    .home-cta-balloon,
    .home-cta-calendar,
    .home-cta-cal-pulse {
        animation: none !important;
    }
}

/* ============================================
   HOME — Experience timeline
   ============================================ */
.home-exp {
    position: relative;
    padding: 56px 20px 64px;
    background: linear-gradient(180deg, #FFF9F0 0%, #fff 50%, #F5F0FF 100%);
    overflow: hidden;
}

.home-exp-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.home-exp-float {
    position: absolute;
    font-size: 22px;
    opacity: 0.55;
    animation: homeExpFloat 5s ease-in-out infinite;
}

.home-exp-float--1 { top: 14%; left: 6%; }
.home-exp-float--2 { top: 20%; right: 8%; animation-delay: 1s; font-size: 26px; }
.home-exp-float--3 { bottom: 22%; left: 10%; animation-delay: 2s; }
.home-exp-float--4 { bottom: 18%; right: 12%; animation-delay: 0.5s; font-size: 18px; }

@keyframes homeExpFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(6deg); }
}

.home-exp-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.home-exp-head {
    text-align: center;
    margin-bottom: 44px;
}

.home-exp-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(123, 45, 142, 0.1), rgba(74, 144, 226, 0.1));
    border: 2px solid rgba(123, 45, 142, 0.12);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #7B2D8E;
    margin-bottom: 14px;
}

.home-exp-head h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(26px, 4.5vw, 36px);
    color: #2D3561;
    margin-bottom: 10px;
    font-weight: 400;
    line-height: 1.2;
}

.home-exp-head p {
    color: #6B7280;
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.home-exp-timeline {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
}

.home-exp-track {
    position: absolute;
    top: 50%;
    left: 8%;
    right: 2%;
    height: 8px;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.home-exp-track-line {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #4A90E2, #7B2D8E 35%, #E8A838 70%, #FF6B9D);
    opacity: 0.25;
}

.home-exp-track-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 40%;
    height: 12px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(123, 45, 142, 0.35), transparent);
    animation: homeExpTrackGlow 4s ease-in-out infinite;
}

@keyframes homeExpTrackGlow {
    0% { left: 0; opacity: 0.4; }
    50% { left: 55%; opacity: 0.9; }
    100% { left: 100%; opacity: 0.4; }
}

.home-exp-node {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: homeExpIn 0.6s ease backwards;
    animation-delay: var(--stagger, 0s);
}

.home-exp-node-dot {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent, #4A90E2), color-mix(in srgb, var(--accent, #4A90E2) 65%, #fff));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent, #4A90E2) 35%, transparent);
    border: 3px solid #fff;
}

.home-exp-node-emoji {
    font-size: 24px;
    line-height: 1;
}

.home-exp-node-body strong {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent, #4A90E2);
    margin-bottom: 2px;
}

.home-exp-node-body span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6B7280;
    line-height: 1.35;
    max-width: 110px;
    margin: 0 auto;
}

.home-exp-milestone {
    position: relative;
    z-index: 2;
    animation: homeExpIn 0.65s ease backwards;
    animation-delay: var(--stagger, 0s);
}

@keyframes homeExpIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: none; }
}

.home-exp-milestone-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 28px 22px 24px;
    text-align: center;
    box-shadow: 0 10px 36px rgba(45, 53, 97, 0.1);
    border: 2px solid color-mix(in srgb, var(--accent, #7B2D8E) 15%, transparent);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-exp-milestone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--accent, #7B2D8E), color-mix(in srgb, var(--accent, #7B2D8E) 60%, #E8A838));
}

.home-exp-milestone-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px color-mix(in srgb, var(--accent, #7B2D8E) 22%, transparent);
}

.home-exp-milestone-spark {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 22px;
    opacity: 0.85;
    animation: homeExpSpark 2.5s ease-in-out infinite;
}

@keyframes homeExpSpark {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: scale(1.12) rotate(8deg); opacity: 1; }
}

.home-exp-milestone-num {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.home-exp-milestone-plus {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(48px, 8vw, 64px);
    line-height: 1;
    font-weight: 400;
    color: var(--accent, #7B2D8E);
    text-shadow: 0 4px 0 color-mix(in srgb, var(--accent, #7B2D8E) 15%, transparent);
}

.home-exp-milestone-unit {
    font-family: 'Fredoka One', cursive;
    font-size: 22px;
    color: color-mix(in srgb, var(--accent, #7B2D8E) 70%, #2D3561);
    font-weight: 400;
}

.home-exp-milestone-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: #2D3561;
    margin-bottom: 8px;
    font-weight: 400;
}

.home-exp-milestone-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.55;
    margin: 0;
}

.home-exp-growing {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    animation: homeExpIn 0.7s ease backwards;
    animation-delay: 0.35s;
}

.home-exp-growing-line {
    display: block;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 107, 157, 0.45) 0,
        rgba(255, 107, 157, 0.45) 5px,
        transparent 5px,
        transparent 10px
    );
}

.home-exp-growing-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    opacity: 0.72;
}

.home-exp-growing-seed {
    font-size: 20px;
    line-height: 1;
    animation: homeExpSeedGrow 3.5s ease-in-out infinite;
}

@keyframes homeExpSeedGrow {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.08) translateY(-3px); }
}

.home-exp-growing-text {
    font-size: 11px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.4px;
    color: #9B6FD4;
    white-space: nowrap;
}

.home-exp-foot {
    text-align: center;
    margin: 36px 0 0;
    font-size: 15px;
    font-weight: 700;
    color: #7B2D8E;
}

@media (max-width: 900px) {
    .home-exp-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
    }

    .home-exp-track {
        display: none;
    }

    .home-exp-node {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
        max-width: 320px;
        margin: 0 auto;
    }

    .home-exp-node-dot {
        margin: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }

    .home-exp-node-body span {
        max-width: none;
        margin: 0;
    }

    .home-exp-node--start {
        margin-bottom: 4px;
    }

    .home-exp-node--today {
        margin-top: 4px;
    }

    .home-exp-growing {
        margin: 4px auto 0;
        padding-top: 14px;
        border-top: 2px dashed rgba(255, 107, 157, 0.18);
        max-width: 200px;
    }

    .home-exp-growing-line {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-exp-float,
    .home-exp-track-glow,
    .home-exp-milestone-spark,
    .home-exp-growing-seed {
        animation: none !important;
    }
}
