/* Override Bootstrap defaults to maintain our design */
.carousel-control-prev, .carousel-control-next {
    opacity: 1 !important
}

.carousel-indicators {
    margin-bottom: 0 !important
}

.carousel-inner {
    border-radius: var(--radius-md)
}

:root {
    --baby-blue: #BFE6FF;
    --baby-blue-2: #D7F0FF;
    --baby-blue-3: #EFF8FF;
    --baby-pink: #FFE5F0;
    --baby-peach: #FFE8DC;
    --soft-gray: #8FA1AF;
    --mid-gray: #6C7A86;
    --deep-gray: #3B4851;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(93, 127, 168, 0.08);
    --shadow: 0 8px 24px rgba(93, 127, 168, 0.12);
    --shadow-lg: 0 16px 48px rgba(93, 127, 168, 0.15);
    --shadow-xl: 0 24px 64px rgba(93, 127, 168, 0.18);
    --glass: rgba(255,255,255,0.7);
    --glass-stroke: rgba(255,255,255,0.6);
    --accent: #75C4FF;
    --accent-2: #3EA7FF;
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

html, body {
    height: 100%;
    overflow-x: hidden;
    width: 100%
}

body {
    margin: 0;
    font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--deep-gray);
    background: radial-gradient(circle at 20% 10%, var(--baby-blue-3) 0%, transparent 50%), radial-gradient(circle at 80% 30%, var(--baby-pink) 0%, transparent 40%), radial-gradient(circle at 40% 90%, var(--baby-peach) 0%, transparent 45%), linear-gradient(180deg, var(--baby-blue-3) 0%, var(--white) 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1200px, 90%);
    margin-inline: auto;
    padding-inline: clamp(16px, 3vw, 24px)
}

/* NAVBAR */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: saturate(1.3) blur(20px);
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.75));
    border-bottom: 1px solid rgba(120,160,200,0.12);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: 16px;
    transition: opacity .3s ease;
    white-space: nowrap
}

    .brand:hover {
        opacity: .8
    }

    .brand span {
        overflow: hidden;
        text-overflow: ellipsis
    }

.brand-mark {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(120,160,200,0.2);
    box-shadow: var(--shadow);
    transition: transform .3s ease, box-shadow .3s ease;
}

.brand:hover .brand-mark {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg)
}

.brand-mark:before {
    content: none !important;
}

.brand-mark:before {
    content: "";
    position: absolute;
    inset: -20% -20% auto auto;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(100% 100% at 50% 50%, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.05) 100%);
    transform: rotate(20deg);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    padding: 14px 24px;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
    word-wrap: break-word;
    max-width: 100%;
}

    .btn:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.3), transparent);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .btn:hover:before {
        opacity: 1
    }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: white;
    box-shadow: var(--shadow), 0 4px 12px rgba(62,167,255,.25);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg), 0 8px 24px rgba(62,167,255,.35)
    }

    .btn-primary:active {
        transform: translateY(0);
        box-shadow: var(--shadow)
    }

.btn-ghost {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(120,160,200,0.2);
    backdrop-filter: blur(10px)
}

    .btn-ghost:hover {
        background: rgba(255,255,255,0.95);
        border-color: rgba(120,160,200,0.3);
        box-shadow: var(--shadow-sm)
    }

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 8vw, 120px) 0 clamp(60px, 6vw, 80px)
}

.bg-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(1000px 600px at -5% -5%, rgba(191,230,255,0.5), transparent 55%), radial-gradient(800px 600px at 105% 5%, rgba(255,229,240,0.6), transparent 58%), radial-gradient(1000px 700px at 50% 110%, rgba(255,232,220,0.4), transparent 60%);
    animation: blobFloat 20s ease-in-out infinite;
}

@keyframes blobFloat {
    0%,100% {
        transform: translate(0,0) scale(1)
    }

    50% {
        transform: translate(20px,-20px) scale(1.05)
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center
}

@media (min-width: 980px) {
    .hero-grid {
        grid-template-columns: 1.1fr .9fr;
        gap: 60px
    }
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1.15;
    margin: 0 0 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-gray) 0%, var(--mid-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--mid-gray);
    margin: 0 0 28px;
    line-height: 1.6;
    max-width: 600px;
    word-wrap: break-word
}

.hero-card {
    background: var(--glass);
    border: 1px solid var(--glass-stroke);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    backdrop-filter: blur(20px) saturate(1.2);
    transition: transform .4s ease, box-shadow .4s ease;
}

    .hero-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl)
    }

.video-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #EAF6FF 0%, #E5F0FF 100%);
    box-shadow: inset 0 2px 8px rgba(93,127,168,.1);
}

    .video-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0
    }

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0
}

.badge {
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #6C7A86, #8FA1AF);
    border: 1px solid rgba(60,70,80,.2);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}

    .badge:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg)
    }

/* QUALITIES */
.section {
    padding: clamp(60px, 8vw, 110px) 0
}

.section-qualities {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(245,247,249,0.6) 0%, rgba(240,244,248,0.8) 100%);
    border-top: 1px solid rgba(120,160,200,0.12);
    border-bottom: 1px solid rgba(120,160,200,0.12);
}

.section-title {
    font-size: clamp(28px, 4.2vw, 42px);
    margin: 0 0 16px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--deep-gray) 0%, var(--mid-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: var(--mid-gray);
    margin: 0 0 40px;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6
}

.qualities {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px
}

@media (min-width: 780px) {
    .qualities {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }
}

@media (min-width: 1100px) {
    .qualities {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px
    }
}

.card {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,247,249,0.9) 100%);
    border: 1px solid rgba(120,160,200,0.15);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1), opacity .6s ease, box-shadow .3s ease;
    backdrop-filter: blur(10px);
}

    .card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--baby-blue) 0%, var(--baby-pink) 50%, var(--baby-peach) 100%);
        opacity: 0;
        transition: opacity .3s ease;
    }

    .card:hover:before {
        opacity: 1
    }

    .card.in {
        transform: translateY(0);
        opacity: 1
    }

    .card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg)
    }

    .card h3 {
        margin: 16px 0 12px;
        font-size: 20px;
        font-weight: 700;
        color: var(--deep-gray)
    }

    .card p {
        color: var(--mid-gray);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px
    }

    .card li {
        color: var(--mid-gray);
        font-size: 14.5px;
        line-height: 1.7;
        margin-bottom: 6px
    }

    .card ul {
        margin: 12px 0 0 20px;
        padding: 0
    }

    .card .icon {
        width: 56px;
        height: 56px;
        display: grid;
        place-items: center;
        border-radius: var(--radius-sm);
        font-size: 28px;
        background: linear-gradient(135deg, var(--baby-blue-2) 0%, rgba(191,230,255,0.4) 100%);
        border: 1px solid rgba(120,160,200,0.15);
        box-shadow: var(--shadow-sm);
        transition: transform .3s ease;
    }

    .card:hover .icon {
        transform: scale(1.1) rotate(5deg)
    }

/* SUCCESS STORIES CAROUSEL */
.success-stories {
    background: linear-gradient(180deg, var(--white) 0%, rgba(239,248,255,0.5) 100%);
    position: relative;
    overflow: hidden;
}

.success-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px
}

.success-carousel {
    border-radius: var(--radius-lg);
    background: var(--glass);
    border: 1px solid var(--glass-stroke);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

    .success-carousel .carousel-inner {
        border-radius: var(--radius-md)
    }

.carousel-video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #EAF6FF 0%, #E5F0FF 100%);
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(93,127,168,.1)
}

    .carousel-video-wrapper iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0
    }

.carousel-caption-custom {
    padding: 24px;
    text-align: center;
    position: relative;
    background: transparent
}

    .carousel-caption-custom h3 {
        margin: 0 0 8px;
        font-size: 20px;
        font-weight: 700;
        color: var(--deep-gray)
    }

    .carousel-caption-custom p {
        margin: 0;
        color: var(--mid-gray);
        font-size: 15px;
        line-height: 1.6
    }

/* Custom carousel controls */
.success-carousel .carousel-control-prev,
.success-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.75));
    border: 1px solid rgba(120,160,200,0.2);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    opacity: 1;
    top: 45%;
    transform: translateY(-50%);
    transition: all .3s ease;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-carousel .carousel-control-prev {
    left: 10px
}

.success-carousel .carousel-control-next {
    right: 10px
}

    .success-carousel .carousel-control-prev:hover,
    .success-carousel .carousel-control-next:hover {
        background: linear-gradient(135deg, var(--baby-blue-2), rgba(191,230,255,0.6));
        box-shadow: var(--shadow);
        transform: translateY(-50%) scale(1.05);
    }

.success-carousel .carousel-control-prev-icon,
.success-carousel .carousel-control-next-icon {
    width: auto;
    height: auto;
    background-image: none !important;
    color: var(--deep-gray);
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

    .success-carousel .carousel-control-prev-icon:before {
        content: '‹';
        display: block
    }

    .success-carousel .carousel-control-next-icon:before {
        content: '›';
        display: block
    }

/* Custom indicators */
.success-carousel .carousel-indicators {
    position: relative;
    margin: 24px 0 0;
    bottom: auto;
}

    .success-carousel .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 2px solid var(--soft-gray);
        background: transparent;
        opacity: 1;
        transition: all .3s ease;
        margin: 0 4px;
    }

    .success-carousel .carousel-indicators .active {
        background: var(--accent-2);
        border-color: var(--accent-2);
        transform: scale(1.2);
    }

/* CTA band */
.cta-band {
    margin-top: 40px;
    padding: 32px 36px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(191,230,255,0.5) 0%, rgba(255,229,240,0.4) 100%);
    border: 1px solid rgba(120,160,200,0.15);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    transition: all .3s ease;
}

    .cta-band:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px)
    }

    .cta-band p {
        margin: 0;
        color: var(--deep-gray);
        font-weight: 600;
        font-size: 17px
    }

/* FOOTER */
footer {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, transparent 0%, rgba(191,230,255,0.15) 100%);
    border-top: 1px solid rgba(120,160,200,0.15);
}

.foot {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--deep-gray)
}

    .footer-logo img {
        width: 56px;
        height: 56px;
        border-radius: var(--radius-sm);
        object-fit: cover;
        border: 1px solid rgba(120,160,200,0.2);
        box-shadow: var(--shadow-sm);
    }

.footer-tagline {
    color: var(--mid-gray);
    font-size: 14px;
    max-width: 400px;
    line-height: 1.6
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.75));
    border: 1px solid rgba(120,160,200,0.2);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    transition: all .3s ease;
    text-decoration: none;
}

    .social-link:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow);
        background: linear-gradient(135deg, var(--baby-blue-2), rgba(191,230,255,0.6));
    }

    .social-link svg {
        transition: transform .3s ease
    }

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

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px
}

    .footer-links a {
        color: var(--mid-gray);
        font-weight: 500;
        transition: color .3s ease;
        padding: 8px 12px;
        border-radius: 8px;
    }

        .footer-links a:hover {
            color: var(--accent-2);
            background: rgba(191,230,255,0.2)
        }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(120,160,200,0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--soft-gray);
}

    .footer-bottom small {
        opacity: .85
    }

/* Floating CTA (mobile) */
.cta-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 600;
    animation: fabPulse 3s ease-in-out infinite
}

    .cta-fab .btn-primary {
        padding: 16px 20px;
        border-radius: var(--radius-sm);
        font-size: 14px
    }

@keyframes fabPulse {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

/* Subtle float anim */
@keyframes floaty {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }

    100% {
        transform: translateY(0)
    }
}

.floaty {
    animation: floaty 6s ease-in-out infinite
}

/* Decorative SVG animations */
.floating-toys {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0
}

.toy {
    position: absolute;
    opacity: 0.15;
    animation: toyFloat 20s ease-in-out infinite
}

.toy-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 40px
}

.toy-2 {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
    font-size: 35px
}

.toy-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
    font-size: 45px
}

.toy-4 {
    top: 60%;
    right: 5%;
    animation-delay: 6s;
    font-size: 38px
}

.toy-5 {
    top: 40%;
    left: 3%;
    animation-delay: 8s;
    font-size: 42px
}

.toy-6 {
    bottom: 30%;
    right: 12%;
    animation-delay: 10s;
    font-size: 36px
}

@keyframes toyFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg)
    }

    25% {
        transform: translateY(-20px) rotate(5deg)
    }

    50% {
        transform: translateY(-10px) rotate(-5deg)
    }

    75% {
        transform: translateY(-30px) rotate(3deg)
    }
}

/* Bouncing balls decoration */
.bouncing-balls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0
}

.ball {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: bounce 3s ease-in-out infinite
}

.ball-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--baby-blue), var(--baby-blue-2));
    top: 15%;
    left: 15%;
    animation-delay: 0s
}

.ball-2 {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--baby-pink), #FFD0E5);
    top: 25%;
    right: 20%;
    animation-delay: 1s
}

.ball-3 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--baby-peach), #FFE0CC);
    bottom: 20%;
    left: 25%;
    animation-delay: 2s
}

.ball-4 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--baby-blue-2), var(--baby-blue-3));
    top: 50%;
    right: 15%;
    animation-delay: 1.5s
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-25px) scale(1.05)
    }
}

/* Stars decoration */
.stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0
}

.star {
    position: absolute;
    animation: twinkle 3s ease-in-out infinite
}

.star-1 {
    top: 12%;
    left: 18%;
    font-size: 24px;
    animation-delay: 0s
}

.star-2 {
    top: 35%;
    right: 22%;
    font-size: 20px;
    animation-delay: 1s
}

.star-3 {
    bottom: 25%;
    left: 15%;
    font-size: 22px;
    animation-delay: 2s
}

.star-4 {
    top: 55%;
    left: 8%;
    font-size: 18px;
    animation-delay: 1.5s
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg)
    }

    50% {
        opacity: 0.6;
        transform: scale(1.2) rotate(180deg)
    }
}

/* Section reveals */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s cubic-bezier(0.4, 0, 0.2, 1), transform .8s cubic-bezier(0.4, 0, 0.2, 1)
}

    .reveal.in {
        opacity: 1;
        transform: none
    }

/* Link as button */
.link-btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(120,160,200,0.2);
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}

    .link-btn:hover {
        background: rgba(255,255,255,0.95);
        transform: translateY(-2px);
        box-shadow: var(--shadow-sm)
    }

/* Responsive adjustments */
@media (max-width: 980px) {
    .container {
        width: 100%;
        padding-inline: 20px
    }

    /* Navbar mobile */
    .nav-inner {
        padding: 14px 0;
        gap: 12px
    }

    .brand {
        font-size: 11px;
        gap: 10px;
        flex: 1;
        min-width: 0
    }

        .brand span {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap
        }

    .brand-mark {
        width: 44px;
        height: 44px;
        flex-shrink: 0
    }

    .nav-actions {
        gap: 8px;
        flex-shrink: 0
    }

        .nav-actions .btn-ghost {
            display: none
        }

        .nav-actions .btn-primary {
            font-size: 13px;
            padding: 11px 16px;
            white-space: nowrap
        }

    /* Hero mobile */
    .hero {
        padding: clamp(40px, 8vw, 60px) 0 clamp(40px, 6vw, 50px)
    }

    .hero-grid {
        gap: 24px
    }

    .hero-copy {
        display: contents
    }

    .hero-title {
        text-align: center;
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 16px;
        order: 1
    }

    .hero-sub {
        text-align: center;
        margin-inline: auto;
        font-size: clamp(15px, 4vw, 17px);
        order: 2
    }

    .hero-card {
        padding: 16px;
        order: 3
    }

    .badges {
        justify-content: center;
        order: 4
    }

    .hero-copy .reveal:nth-child(4) {
        text-align: center;
        order: 5
    }

    .hero-copy .btn-primary {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 20px
    }

    /* Reduce decorations on mobile */
    .toy {
        font-size: 28px;
        opacity: 0.1
    }

    .ball {
        transform: scale(0.7)
    }

    .star {
        font-size: 16px
    }

    /* Sections mobile */
    .section {
        padding: clamp(40px, 8vw, 60px) 0
    }

    .section-title {
        text-align: center;
        font-size: clamp(26px, 6vw, 34px)
    }

    .section-sub {
        text-align: center;
        font-size: clamp(14px, 4vw, 16px);
        margin-inline: auto
    }

    /* Cards mobile */
    .qualities {
        gap: 16px
    }

    .card {
        padding: 24px
    }

        .card h3 {
            font-size: 19px
        }

        .card p {
            font-size: 14px
        }

        .card li {
            font-size: 14px
        }

        .card .icon {
            width: 52px;
            height: 52px;
            font-size: 26px
        }

    /* Carousel mobile */
    .success-carousel-wrapper {
        padding: 0 20px
    }

    .success-carousel {
        border-radius: var(--radius-md)
    }

    .carousel-caption-custom {
        padding: 20px
    }

        .carousel-caption-custom h3 {
            font-size: 18px
        }

        .carousel-caption-custom p {
            font-size: 14px
        }

    .success-carousel .carousel-control-prev,
    .success-carousel .carousel-control-next {
        width: 44px;
        height: 44px;
        top: 42%
    }

    .success-carousel .carousel-control-prev-icon,
    .success-carousel .carousel-control-next-icon {
        font-size: 28px
    }

    .success-carousel .carousel-control-prev {
        left: 8px
    }

    .success-carousel .carousel-control-next {
        right: 8px
    }

    .success-carousel .carousel-indicators {
        margin: 20px 0 0
    }

    /* CTA band mobile */
    .cta-band {
        padding: 24px 20px;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        gap: 16px
    }

        .cta-band p {
            font-size: 16px
        }

        .cta-band .btn-primary {
            width: 100%
        }

    /* Footer mobile */
    footer {
        padding: 40px 0 100px
    }

    .foot {
        gap: 28px
    }

    .footer-logo {
        font-size: 16px
    }

        .footer-logo img {
            width: 52px;
            height: 52px
        }

    .footer-tagline {
        font-size: 13px;
        padding: 0 20px
    }

    .footer-social {
        gap: 10px
    }

    .social-link {
        width: 46px;
        height: 46px;
        font-size: 19px
    }

    .footer-links {
        gap: 16px;
        font-size: 13px
    }

    .footer-bottom {
        font-size: 12px
    }

    /* FAB mobile - add more space from bottom */
    .cta-fab {
        right: 16px;
        bottom: 16px
    }

        .cta-fab .btn-primary {
            font-size: 13px;
            padding: 14px 16px
        }
}

@media (max-width: 480px) {
    .container {
        padding-inline: 16px
    }

    /* Navbar extra small screens */
    .brand {
        font-size: 10px;
        gap: 8px
    }

        .brand span {
            max-width: 180px
        }

    .brand-mark {
        width: 40px;
        height: 40px
    }

    .nav-actions {
        gap: 6px
    }

        .nav-actions .btn-primary {
            font-size: 12px;
            padding: 10px 12px
        }

    /* Hero extra small */
    .hero-grid {
        gap: 24px
    }

    .hero-title {
        font-size: 24px !important;
        line-height: 1.25
    }

    .hero-sub {
        font-size: 14px
    }

    .hero-card {
        padding: 12px
    }

    .hero-copy .btn-primary {
        font-size: 13px;
        padding: 12px 16px
    }

    /* Sections extra small */
    .section-title {
        font-size: 22px
    }

    .section-sub {
        font-size: 14px
    }

    /* Cards extra small */
    .card {
        padding: 20px
    }

        .card h3 {
            font-size: 18px
        }

        .card .icon {
            width: 48px;
            height: 48px;
            font-size: 24px
        }

    /* Badge smaller */
    .badge {
        padding: 8px 14px;
        font-size: 12px
    }

    /* Carousel extra small */
    .success-carousel-wrapper {
        padding: 0 16px
    }

    .carousel-caption-custom {
        padding: 16px
    }

        .carousel-caption-custom h3 {
            font-size: 17px
        }

        .carousel-caption-custom p {
            font-size: 13px
        }

    .success-carousel .carousel-control-prev,
    .success-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        top: 40%
    }

    .success-carousel .carousel-control-prev-icon,
    .success-carousel .carousel-control-next-icon {
        font-size: 24px
    }

    .success-carousel .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px
    }

    /* CTA band smaller */
    .cta-band {
        padding: 20px 16px
    }

        .cta-band p {
            font-size: 15px
        }
}

