/* ================================================================
   HOME.CSS  —  Premium SaaS-Level Utility Tools Homepage
   ================================================================ */

/* ── 1. CSS Custom Properties ── */
:root {
    --primary:        #4f46e5;
    --primary-dark:   #3730a3;
    --primary-light:  #eef2ff;
    --accent:         #06b6d4;
    --accent-dark:    #0891b2;
    --success:        #10b981;
    --warning:        #f59e0b;

    --text:           #0f172a;
    --text-soft:      #334155;
    --text-muted:     #64748b;
    --border:         #e2e8f0;
    --bg:             #f8fafc;
    --card-bg:        #ffffff;
    --white:          #ffffff;

    --grad-hero:      linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    --grad-primary:   linear-gradient(135deg, #4f46e5, #3730a3);
    --grad-android:   linear-gradient(135deg, #0c1321 0%, #1a3a5c 100%);

    --radius-sm:      8px;
    --radius:         14px;
    --radius-lg:      20px;
    --radius-xl:      28px;

    --shadow-xs:      0 1px 4px rgba(0,0,0,.06);
    --shadow-sm:      0 2px 10px rgba(0,0,0,.08);
    --shadow-md:      0 8px 30px rgba(79,70,229,.14);
    --shadow-lg:      0 16px 48px rgba(79,70,229,.20);

    --transition:     .24s cubic-bezier(.4,0,.2,1);
}

/* ── 2. Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 0 !important;
}

/* ════════════════════════════════════════════
   STICKY NAVBAR
════════════════════════════════════════════ */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226,232,240,.8);
    box-shadow: 0 1px 14px rgba(0,0,0,.06);
}

.site-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary) !important;
    letter-spacing: -.4px;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 34px; height: 34px;
    background: var(--grad-hero);
    border-radius: 9px;
    display: grid;
    place-items: center;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: block;
    padding: .45rem .9rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: .91rem;
    font-weight: 500;
    color: var(--text-soft);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-cta {
    background: var(--grad-primary) !important;
    color: var(--white) !important;
    border-radius: 99px !important;
    padding: .45rem 1.1rem !important;
    box-shadow: 0 3px 12px rgba(79,70,229,.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79,70,229,.42) !important;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
    border-radius: var(--radius-sm);
    color: var(--text);
    line-height: 1;
}

.nav-hamburger:hover { background: var(--primary-light); }

@media (max-width: 768px) {
    .nav-hamburger { display: flex; align-items: center; }
    .nav-links {
        display: none;
        position: absolute;
        top: 65px; left: 0; right: 0;
        background: rgba(255,255,255,.97);
        backdrop-filter: blur(14px);
        flex-direction: column;
        padding: .75rem 1rem 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
        gap: .1rem;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: .65rem 1rem; font-size: .95rem; }
    .nav-cta { text-align: center; }
}

/* ════════════════════════════════════════════
   SHARED SECTION HELPERS
════════════════════════════════════════════ */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header { text-align: center; margin-bottom: 2.5rem; }

.section-eyebrow {
    display: inline-block;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: var(--primary-light);
    padding: .28rem .9rem;
    border-radius: 99px;
    margin-bottom: .85rem;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: .4rem;
    line-height: 1.25;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: .97rem;
    margin: 0;
    line-height: 1.6;
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero-section {
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding: 5.5rem 1.5rem 5rem;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: .10;
    pointer-events: none;
    background: var(--white);
}

.hero-section::before { width: 580px; height: 580px; top: -220px; right: -150px; }
.hero-section::after  { width: 380px; height: 380px; bottom: -160px; left: -90px; }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-text { flex: 1; max-width: 660px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: .8rem;
    font-weight: 600;
    padding: .35rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.3rem;
    border: 1px solid rgba(255,255,255,.28);
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.13;
    color: var(--white);
    margin-bottom: 1.1rem;
    letter-spacing: -.6px;
}

.hero-highlight {
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 4px;
    background: rgba(255,255,255,.45);
    border-radius: 99px;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    background: var(--white);
    color: var(--primary) !important;
    border: none;
    padding: .82rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    box-shadow: 0 6px 22px rgba(0,0,0,.2);
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,.27);
}

.btn-hero-secondary {
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(8px);
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,.4);
    padding: .8rem 1.8rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,.24);
    border-color: rgba(255,255,255,.7);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2.2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: .08rem;
}

.hero-stat strong {
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--white);
}

.hero-stat span {
    font-size: .73rem;
    color: rgba(255,255,255,.68);
    text-transform: uppercase;
    letter-spacing: .7px;
    font-weight: 600;
}

/* Hero Visual — floating cards */
.hero-visual { flex: 0 0 auto; position: relative; }

.hero-cards-cluster {
    position: relative;
    width: 280px;
    height: 300px;
}

.hc-card {
    position: absolute;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--radius-lg);
    padding: .85rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    animation: cardFloat var(--dur, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.hc-icon  { font-size: 1.35rem; flex-shrink: 0; }
.hc-name  { font-size: .84rem; font-weight: 700; display: block; }
.hc-tag   { font-size: .68rem; opacity: .72; font-weight: 500; display: block; }

.hc-card:nth-child(1) { top: 0;    left: 20px;  --dur: 3.2s; --delay: 0s; }
.hc-card:nth-child(2) { top: 95px; left: 0;     --dur: 3.8s; --delay: .5s; }
.hc-card:nth-child(3) { top: 185px;left: 30px;  --dur: 3.4s; --delay: .9s; }
.hc-card:nth-child(4) { top: 252px;left: 90px;  --dur: 3.0s; --delay: .3s; }

@keyframes cardFloat {
    0%,100% { transform: translateY(0) rotate(0deg); }
    50%      { transform: translateY(-9px) rotate(.5deg); }
}

/* ════════════════════════════════════════════
   FEATURED / SPONSOR SECTION
════════════════════════════════════════════ */
.featured-section {
    background: var(--white);
    padding: 5.5rem 0;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

@media (max-width: 720px) { .sponsor-grid { grid-template-columns: 1fr; } }

/* Premium Sponsor Card */
.sponsor-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-7px) scale(1.005);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79,70,229,.22);
}

.sponsor-card-banner {
    height: 175px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.sponsor-card-banner img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.sponsor-card:hover .sponsor-card-banner img { transform: scale(1.05); }

.sponsor-banner-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.banner-portfolio {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 45%, #4f46e5 100%);
}

.banner-tasbih {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #10b981 100%);
}

.sponsor-badge {
    position: absolute;
    top: 3px; left: 14px;
    background: rgba(245,158,11,.95);
    color: var(--white);
    font-size: .67rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .9px;
    padding: .25rem .65rem;
    border-radius: 6px;
}

.sponsor-body {
    padding: 1.65rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sponsor-category {
    font-size: .71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .9px;
    color: var(--primary);
    margin-bottom: .5rem;
}

.sponsor-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: .7rem;
    line-height: 1.3;
}

.sponsor-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.68;
    flex: 1;
    margin-bottom: 1.6rem;
}

.btn-sponsor {
    align-self: flex-start;
    background: var(--grad-primary);
    color: var(--white) !important;
    border: none;
    padding: .62rem 1.45rem;
    border-radius: 99px;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    box-shadow: 0 4px 14px rgba(79,70,229,.3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-sponsor:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79,70,229,.45);
}

/* ════════════════════════════════════════════
   ANDROID SECTION
════════════════════════════════════════════ */
.android-section {
    background: var(--grad-android);
    padding: 5.5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.android-section::before {
    content: '';
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: rgba(79,70,229,.12);
    top: -210px; right: -110px;
    pointer-events: none;
}

.android-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4.5rem;
    position: relative;
    z-index: 1;
}

.android-text { flex: 1; }

.android-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(16,185,129,.18);
    color: #34d399;
    border: 1px solid rgba(52,211,153,.28);
    font-size: .76rem;
    font-weight: 700;
    padding: .3rem .9rem;
    border-radius: 99px;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.android-title {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: .85rem;
    line-height: 1.2;
}

.android-desc {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 1.6rem;
}

.android-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.2rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.android-features li {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #cbd5e1;
    font-size: .94rem;
}

.android-features li::before {
    content: '';
    width: 20px; height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(16,185,129,.22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%2334d399' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 10px;
    border: 1px solid rgba(52,211,153,.35);
}

.btn-android {
    background: #10b981;
    color: var(--white) !important;
    border: none;
    padding: .9rem 2.1rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    box-shadow: 0 6px 22px rgba(16,185,129,.45);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-android:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(16,185,129,.55);
}

/* Phone Mockup */
.android-visual { flex: 0 0 auto; }

.phone-mockup {
    width: 215px; height: 390px;
    background: #1e293b;
    border-radius: 40px;
    border: 8px solid #334155;
    box-shadow: 0 28px 70px rgba(0,0,0,.65), inset 0 1px 0 rgba(255,255,255,.05);
    overflow: hidden;
    position: relative;
}

.phone-notch {
    display: flex;
    justify-content: center;
    padding-top: 12px;
    margin-bottom: 6px;
}

.phone-notch::after {
    content: '';
    width: 64px; height: 6px;
    background: #334155;
    border-radius: 99px;
    display: block;
}

.phone-screen {
    background: #0f172a;
    margin: 0 6px 6px;
    border-radius: 28px;
    height: calc(100% - 42px);
    padding: 1rem .9rem;
    overflow: hidden;
}

.phone-app-title {
    font-size: .6rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: .75rem;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.phone-app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
}

.phone-app-icon {
    background: #1e293b;
    border-radius: 13px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    border: 1px solid #1e3a5f;
}

/* ════════════════════════════════════════════
   TOOLS SECTION
════════════════════════════════════════════ */
.tools-wrapper {
    background: var(--bg);
    padding-top: 1rem;
}

.category-section {
    padding: 3.5rem 0 0;
}

.category-section:last-of-type { padding-bottom: 4rem; }

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .75rem;
}

.category-icon-wrap {
    width: 46px; height: 46px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.category-meta { flex: 1; }

.category-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 .1rem;
}

.category-count {
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.category-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border) 0%, transparent 80%);
    margin-bottom: 1.6rem;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 1100px) { .tools-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .tools-grid { grid-template-columns: 1fr; } }

/* Tool Card */
.tool-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(79,70,229,.3);
}

.tool-card-link {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.3rem 1.25rem;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.tool-card-icon {
    font-size: 2rem;
    margin-bottom: .75rem;
    line-height: 1;
}

.tool-card-title {
    font-size: .97rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .45rem;
    line-height: 1.3;
}

.tool-card-desc {
    font-size: .83rem;
    color: var(--text-muted);
    flex: 1;
    line-height: 1.58;
    margin-bottom: 1rem;
}

.tool-card-cta {
    font-size: .82rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: gap var(--transition);
}

.tool-card:hover .tool-card-cta { gap: .55rem; }

/* ════════════════════════════════════════════
   MID-PAGE AD BANNER
════════════════════════════════════════════ */
.ad-banner { margin: 3rem 0; }

.ad-inner {
    background: linear-gradient(135deg, var(--primary-light) 0%, #e0f7ff 100%);
    border: 1px solid rgba(79,70,229,.14);
    border-radius: var(--radius-xl);
    padding: 1.6rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ad-label {
    font-size: .64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: var(--white);
    padding: .2rem .55rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ad-text {
    flex: 1;
    margin: 0;
    font-size: .95rem;
    color: var(--text-soft);
    font-weight: 500;
    min-width: 180px;
}

.btn-ad {
    background: var(--primary);
    color: var(--white) !important;
    border: none;
    padding: .55rem 1.35rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}

.btn-ad:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
    background: #0c1321;
    color: #94a3b8;
    padding: 4rem 1.5rem 0;
    margin-top: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #1e2d3f;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--white) !important;
    text-decoration: none;
    margin-bottom: .9rem;
}

.footer-logo-icon {
    width: 32px; height: 32px;
    background: var(--grad-hero);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-size: .92rem;
    flex-shrink: 0;
}

.footer-brand-desc {
    font-size: .88rem;
    line-height: 1.72;
    color: #4e6281;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: .5rem;
}

.footer-social a {
    width: 34px; height: 34px;
    background: #1a2535;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #4e6281;
    text-decoration: none;
    font-size: .88rem;
    border: 1px solid #1e2d3f;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.footer-col-title {
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c8d6e8;
    margin-bottom: 1.1rem;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links a {
    color: #4e6281;
    text-decoration: none;
    font-size: .88rem;
    transition: color var(--transition), padding-left var(--transition);
    display: inline-block;
}

.footer-col-links a:hover {
    color: #c8d6e8;
    padding-left: .35rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .82rem;
    color: #2e4060;
}

.footer-bottom a {
    color: #2e4060;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom a:hover { color: #94a3b8; }

/* ════════════════════════════════════════════
   SCROLL-TO-TOP BUTTON
════════════════════════════════════════════ */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px; height: 46px;
    background: var(--grad-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(79,70,229,.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--transition), visibility var(--transition),
                transform var(--transition), box-shadow var(--transition);
    z-index: 9999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    box-shadow: 0 8px 26px rgba(79,70,229,.65);
    transform: translateY(-3px);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand-col { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }

    .android-inner { flex-direction: column; text-align: center; gap: 2.5rem; }
    .android-features { align-items: center; }
    .android-visual { display: none; }
}

@media (max-width: 700px) {
    .hero-section { padding: 3.5rem 1.25rem 3rem; }
    .featured-section { padding: 3.5rem 0; }
    .ad-inner { flex-direction: column; text-align: center; gap: 1rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.4rem; }
    .hero-title { letter-spacing: -.3px; }
}
