/* ================================
   THE BEST KIDS APPS - STYLES
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A56DB;
    --primary-light: #EBF0FF;
    --orange: #1A56DB;
    --orange-light: #EBF0FF;
    --yellow: #F5A623;
    --yellow-light: #FFF8E8;
    --green: #16A34A;
    --green-light: #ECFDF5;
    --pink: #E91E63;
    --pink-light: #FCE4EC;
    --purple: #7C3AED;
    --purple-light: #F3E8FF;
    --red: #EF4444;
    --red-light: #FEF2F2;
    --blue: #1A56DB;
    --blue-light: #EBF0FF;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --font-main: 'Nunito', sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    bottom: -80px;
    left: 0;
    width: 100%;
    aspect-ratio: 1536 / 526;
    background: url("images/Rainbow.png") center bottom / 100% auto no-repeat;
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    line-height: 1.2;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-main);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    text-decoration: none;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.nav-cta {
    background: var(--orange);
    color: #fff !important;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: 0.3s;
}

/* ================================
   HERO
   ================================ */

.hero {
    padding: 0;
    background: #fff;
    overflow: hidden;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 0;
}

.hero-content {
    flex: 0 0 auto;
    width: 42%;
    max-width: 520px;
    text-align: left;
    padding: 60px 0 60px 24px;
    margin-left: max(24px, calc((100vw - 1200px) / 2));
}

.hero-banner {
    flex: 1;
    min-width: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-light);
    border: 2px solid var(--yellow);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.badge-emoji {
    font-size: 1.2rem;
}

.badge-count {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 1rem;
    color: var(--orange);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.highlight {
    color: var(--orange);
}

.highlight-red {
    color: #EF4444;
}

.hero-emoji {
    font-size: 2.4rem;
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 1.7;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 1.05rem;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

.btn-arrow {
    font-size: 1.2rem;
}

/* Hero Image Cards */
.hero-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    max-width: 480px;
}

.hero-card {
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-4px);
}

.card-emoji {
    font-size: 2.8rem;
}

.hero-card span {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gray-800);
}

.hero-card-1 { background: #EBF0FF; grid-row: 1; }
.hero-card-2 { background: #ECFDF5; grid-row: 1; }
.hero-card-3 { background: #FFF8E8; grid-row: 1; }
.hero-card-4 { background: #F3E8FF; grid-row: 2; grid-column: 1 / 2; }
.hero-card-5 { background: #EBF0FF; grid-row: 2; grid-column: 2 / 4; }

/* ================================
   FEATURES
   ================================ */

.features {
    padding: 80px 0;
}

.features h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: transform 0.3s;
    cursor: pointer;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-green { background: #EBF0FF; }
.feature-yellow { background: #FFF8E8; }
.feature-pink { background: #F3F4F6; }

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.feature-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* ================================
   TRUSTED BY
   ================================ */

.trusted {
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    font-family: var(--font-main);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 0.5px;
}

/* ================================
   HERO BUTTONS
   ================================ */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

/* ================================
   AGE GROUP CARDS
   ================================ */

.age-groups {
    padding: 60px 0 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.age-groups h2 {
    font-size: 3rem;
    text-align: center;
    color: var(--gray-900);
    margin-bottom: 12px;
}


.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.age-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.age-card {
    border-radius: var(--radius-xl);
    padding: 12px 16px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 0;
}

.age-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.age-card-peach { background: #fff; border: 1.5px solid #E5E7EB; }
.age-card-green { background: #fff; border: 1.5px solid #E5E7EB; }
.age-card-blue { background: #fff; border: 1.5px solid #E5E7EB; }
.age-card-purple { background: #fff; border: 1.5px solid #E5E7EB; }

.age-emoji {
    font-size: 7rem;
    line-height: 1;
}

.age-card-img {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.age-card h3 {
    font-size: 1.2rem;
    color: var(--gray-900);
}

.age-range {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--orange);
}

.age-count {
    display: inline-block;
    background: rgba(255,255,255,0.6);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-700);
    margin-top: 4px;
}

/* ================================
   TOP 20 LISTS
   ================================ */

.top-list {
    padding: 40px 0 20px;
    position: relative;
    z-index: 2;
}

.top-list:nth-child(even) {
    background: transparent;
}

.list-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    padding: 12px 32px;
    border-radius: var(--radius-xl);
}

.list-header-peach { background: transparent; }
.list-header-green { background: transparent; }
.list-header-blue { background: transparent; }
.list-header-purple { background: transparent; }

.list-emoji {
    font-size: 2.4rem;
}

.list-header h2 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.list-header h2 span {
    color: var(--orange);
}

.list-ages {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* App List Rows */
.app-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 36px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.app-rank {
    font-family: var(--font-main);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--gray-300);
    min-width: 48px;
    text-align: center;
    line-height: 1;
    padding-top: 8px;
}

.app-row:nth-child(1) .app-rank { color: #FF6B6B; }
.app-row:nth-child(2) .app-rank { color: #4ECDC4; }
.app-row:nth-child(3) .app-rank { color: #FFB347; }
.app-row:nth-child(4) .app-rank { color: #7C83FD; }
.app-row:nth-child(5) .app-rank { color: #2ECC71; }
.app-row:nth-child(6) .app-rank { color: #E056A0; }
.app-row:nth-child(7) .app-rank { color: #00B4D8; }
.app-row:nth-child(8) .app-rank { color: #F4845F; }
.app-row:nth-child(9) .app-rank { color: #9B59B6; }
.app-row:nth-child(10) .app-rank { color: #1ABC9C; }

.app-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.app-icon {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.get-it-btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.get-it-btn:hover {
    opacity: 0.85;
}

.app-details {
    flex: 1;
    min-width: 0;
}

.app-details h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0;
}

.app-details p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 8px;
}

.app-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}

.app-price {
    display: inline-block;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    white-space: nowrap;
}

.price-free { background: var(--green-light); color: var(--green); }
.price-paid { background: var(--gray-100); color: var(--gray-600); }
.price-sub { background: var(--purple-light); color: var(--purple); }
.price-iap { background: var(--yellow-light); color: #B8860B; }

.app-review {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.app-pros h5,
.app-cons h5 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.app-pros h5 { color: var(--green); }
.app-cons h5 { color: var(--gray-400); }

.app-pros ul,
.app-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-pros li,
.app-cons li {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.app-pros li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
    font-size: 0.75rem;
}

.app-cons li::before {
    content: "\2022";
    position: absolute;
    left: 2px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.app-tags {
    display: none;
}

.tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tag-edu { background: var(--blue-light); color: var(--blue); }
.tag-creative { background: var(--purple-light); color: var(--purple); }
.tag-music { background: var(--green-light); color: var(--green); }
.tag-game { background: var(--yellow-light); color: #E6A800; }
.tag-story { background: var(--pink-light); color: var(--pink); }
.tag-puzzle { background: #FFF8E8; color: var(--yellow); }
.tag-free { background: var(--green-light); color: var(--green); }
.tag-paid { background: var(--gray-100); color: var(--gray-600); }

.app-rating-col {
    display: none;
}


/* ================================
   WHY CHOOSE US
   ================================ */

.why-us {
    padding: 80px 0;
    background: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    max-width: 420px;
    background: linear-gradient(135deg, #EBF0FF, #DBEAFE, #E0E7FF);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.why-us-content h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--gray-900);
}


/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
    text-align: left;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: var(--gray-50);
}

.accordion-icon {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gray-500);
    flex-shrink: 0;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 20px 18px;
}

.accordion-body p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.accordion-item.active {
    border-color: var(--orange);
    background: var(--orange-light);
}

.accordion-item.active .accordion-header {
    color: var(--orange);
}

/* ================================
   REVIEWS
   ================================ */

.reviews {
    padding: 80px 0;
}

.reviews h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--gray-900);
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 32px 28px;
    border-radius: var(--radius-xl);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-green { background: #F3F4F6; }
.review-purple { background: #EBF0FF; }
.review-orange { background: #FFF8E8; }

.review-stars {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: #2d2d2d;
    color: var(--gray-400);
    padding: 60px 0 0;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-brand .logo {
    color: #fff;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .hero h1 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        gap: 16px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-container {
        flex-direction: column;
        gap: 0;
    }
    .hero-banner {
        order: -1;
        width: 100%;
    }
    .hero-banner-img { max-height: 350px; object-fit: contain; }
    .hero-content {
        flex: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding: 24px 24px 40px;
        text-align: center;
    }
    .hero-subtitle { margin: 0 auto 24px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { justify-content: center; }

    .features-grid { grid-template-columns: 1fr; }

    .list-header { flex-direction: column; text-align: center; }

    .app-row { flex-wrap: wrap; }
    .app-details { min-width: 200px; }
    .app-review { grid-template-columns: 1fr; }

    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-image { order: -1; }
    .why-us-img-placeholder { max-width: 320px; }

    .reviews-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .features h2,
    .age-groups h2,
    .reviews h2 { font-size: 1.8rem; }

    .age-groups,
    .top-list,
    .features,
    .reviews,
    .why-us { padding-top: 40px; padding-bottom: 40px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-images { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons a { text-align: center; }
    .app-rank { min-width: 32px; font-size: 2rem; }
    .app-icon { width: 80px; height: 80px; }
    .get-it-btn { font-size: 0.7rem; padding: 5px 10px; }
    .app-row { padding: 20px 16px; gap: 12px; }
    .app-details h4 { font-size: 1.3rem; }
    .footer-grid { grid-template-columns: 1fr; }

    .age-groups,
    .top-list,
    .features,
    .reviews,
    .why-us { padding-top: 24px; padding-bottom: 24px; }
    .trusted-logos { gap: 24px; }
    .trusted-logo { font-size: 0.95rem; }
}
