/* ==========================================================================
   24HrWork App - Apple Light Grid (MyTypingAI Replicant) CSS
   ========================================================================== */

:root {
    /* Color System: Warm Apple Off-White & Vibrant Accents */
    --bg-base: hsl(38, 20%, 98%);          /* Off-White Backdrop */
    --bg-surface: hsl(0, 0%, 100%);        /* Pure White Card Base */
    --bg-card: hsl(0, 0%, 100%);
    --bg-glass: hsla(0, 0%, 100%, 0.85);
    
    /* Fine borders */
    --border-glass: hsla(0, 0%, 0%, 0.05);
    --border-glow: hsla(239, 84%, 67%, 0.25);

    /* Brand Accents */
    --primary: hsl(340, 82%, 52%);         /* Crimson Pink (#e11d48) */
    --primary-glow: hsla(340, 82%, 52%, 0.25);
    
    --secondary: hsl(255, 100%, 60%);      /* Electric Purple */
    --secondary-glow: hsla(255, 100%, 60%, 0.18);

    --success: hsl(142, 70%, 35%);         /* Safe Green */
    --success-glow: hsla(142, 70%, 35%, 0.2);
    --warning: hsl(38, 92%, 48%);          /* Amber Gold */
    --danger: hsl(354, 85%, 52%);          /* Crimson */

    /* Typography Text Colors */
    --text-primary: hsl(240, 10%, 4%);     /* Charcoal Black for Headings */
    --text-secondary: hsl(240, 6%, 28%);   /* Darker Slate for Body Contrast Compliance */
    --text-muted: hsl(240, 5%, 43%);       /* Darker Muted Gray for Contrast Compliance */

    /* Shadows & Border Radii */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.01);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.01);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

/* Global Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
    background-color: var(--bg-base);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

/* Background Grid Overlay Pattern */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.018) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.018) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: -1;
}

/* Soft Shifting Radial Gradients behind layout */
.ambient-glow {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: var(--radius-full);
    pointer-events: none;
    z-index: -2;
    filter: blur(130px);
    opacity: 0.65;
}

.glow-top-left {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, hsla(340, 100%, 95%, 0.8) 0%, transparent 70%);
}

.glow-bottom-right {
    bottom: 5%;
    right: -10%;
    background: radial-gradient(circle, hsla(180, 100%, 95%, 0.8) 0%, transparent 70%);
}

/* Sticky Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 14px 0;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.nav-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-cta:hover {
    transform: translateY(-1px);
    background: hsl(340, 82%, 46%);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

/* ==========================================================================
   Hero Split Grid Section
   ========================================================================== */
.hero {
    padding: 160px 0 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225, 29, 72, 0.04);
    border: 1px solid rgba(225, 29, 72, 0.12);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -2.2px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-title span.glow-text-1 {
    background: linear-gradient(135deg, var(--secondary) 0%, hsl(340, 82%, 60%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    min-width: 15ch;
    text-align: left;
}

.hero-title span.glow-text-2 {
    background: linear-gradient(135deg, var(--secondary) 0%, hsl(210, 100%, 50%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typing-cursor {
    color: var(--primary);
    font-weight: 400;
    animation: blink-cursor 1s infinite;
    display: inline-block;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

/* Download APK Buttons Card */
.download-actions-wrapper {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin-bottom: 28px;
}

.btn-capsule {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 800;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary-capsule {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
}

.btn-primary-capsule:hover {
    transform: translateY(-2px);
    background: hsl(340, 82%, 46%);
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35);
}

.btn-primary-capsule svg {
    transition: transform 0.3s ease;
}

.btn-primary-capsule:hover svg {
    transform: translateX(4px);
}

.btn-secondary-capsule {
    background: #fff;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow-sm);
}

.btn-secondary-capsule:hover {
    transform: translateY(-2px);
    background: hsl(38, 20%, 95%);
    box-shadow: var(--shadow-md);
}

/* Trust checkmarks row under buttons */
.trust-indicators-row {
    display: flex;
    gap: 20px;
}

.indicator-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: var(--text-secondary);
    font-weight: 700;
}

.indicator-check-icon {
    color: var(--success);
    background: rgba(16, 185, 129, 0.08);
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 11px;
}

/* ==========================================================================
   Interactive Captcha Simulator Card Widget (Replicated right side)
   ========================================================================== */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-capsules {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 440px;
    justify-content: center;
}

.stat-pill {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--text-secondary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-pill strong {
    color: var(--text-primary);
}

/* Simulator Card Container */
.simulator-card {
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 440px;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    transition: var(--transition-smooth);
}

.simulator-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Float tag inside Card */
.verified-floating-badge {
    position: absolute;
    top: 20px;
    left: 24px;
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(16, 185, 129, 0.15);
    z-index: 10;
}

.simulator-header {
    text-align: right;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.live-beacon-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--success);
    border-radius: var(--radius-full);
    animation: live-dot-beacon 1.4s infinite ease-in-out;
}

@keyframes live-dot-beacon {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(0.95); opacity: 1; }
}

/* Simulator progress stages bar */
.simulator-stages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.stage-tab {
    text-align: center;
}

.stage-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.stage-bar {
    height: 4px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.stage-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.4s ease;
}

.stage-tab.active .stage-bar-fill {
    width: 100%;
}

.stage-tab.complete .stage-bar-fill {
    width: 100%;
    background: var(--success);
}

/* Inner Captcha Typing Box Panel */
.simulator-typing-panel {
    padding: 24px;
    background: rgba(225, 29, 72, 0.01);
}

.captcha-simulator-box {
    background: #fffdfb;
    border: 1px dashed rgba(225, 29, 72, 0.2);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.01);
}

.captcha-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.captcha-tag-pill {
    background: #ffe4e6;
    color: #be123c;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.captcha-payout-rate {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--primary);
}

.captcha-input-container {
    position: relative;
    margin-bottom: 12px;
}

.captcha-input-field {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.captcha-input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-glow);
}

.captcha-typing-cursor {
    animation: blink-cursor 0.8s infinite;
    font-weight: 300;
}

.captcha-verification-row {
    height: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--success);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.captcha-verification-row.show {
    opacity: 1;
}

/* Rate Sheet Table inside Simulator */
.simulator-rate-sheet {
    padding: 0 24px 24px 24px;
}

.rate-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 13.5px;
}

.rate-row:last-child {
    border-bottom: none;
}

.rate-name {
    color: var(--text-secondary);
}

.rate-value {
    font-weight: 700;
    color: var(--text-primary);
}

/* Bottom Withdrawal bar */
.simulator-withdrawal-bar {
    background: var(--secondary);
    color: #fff;
    padding: 14px 24px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   "4 Ways to Earn" Grid Section
   ========================================================================== */
.earning-methods {
    padding: 100px 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.method-card {
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 36px 28px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(225, 29, 72, 0.15);
}

.method-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(225, 29, 72, 0.04);
    border: 1px solid rgba(225, 29, 72, 0.15);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.method-card-badge.hot {
    background: rgba(255, 69, 58, 0.04);
    border-color: rgba(255, 69, 58, 0.15);
    color: var(--danger);
}

.method-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.method-card:hover .method-icon-box {
    background: var(--primary);
    color: #fff;
    border-color: transparent;
}

.method-title {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.method-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* ==========================================================================
   Security Scan & Privacy Checklist Section
   ========================================================================== */
.security-panel {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

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

.security-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-header {
    margin-bottom: 28px;
}

.security-badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    margin-top: 12px;
    font-weight: 700;
    color: var(--success);
    font-size: 14.5px;
}

.security-badge-shield {
    font-size: 24px;
    animation: shield-glow 2.5s infinite ease-in-out;
}

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

.security-right-card {
    background: var(--bg-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 12px;
    font-size: 13.5px;
}

.security-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.security-row-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.security-row-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
}

.security-row-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.security-row-status {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
}

.security-row-status.cross {
    color: var(--danger);
    background: rgba(255, 69, 58, 0.05);
    border: 1px solid rgba(255, 69, 58, 0.15);
}

.security-row-status.check {
    color: var(--success);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* User Reviews section */
.reviews {
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.review-card {
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: rgba(225, 29, 72, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    color: var(--text-primary);
}

.reviewer-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--text-primary);
}

.review-date {
    font-size: 11px;
    color: var(--text-muted);
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--warning);
    font-size: 15px;
}

.review-body {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 70px;
    line-height: 1.65;
}

.review-footer {
    font-size: 12px;
    color: var(--text-muted);
}

.review-footer span {
    color: var(--text-secondary);
    font-weight: 700;
}

/* FAQ Accordion Section */
.faqs {
    padding: 100px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    user-select: none;
    color: var(--text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-secondary);
    font-size: 15px;
    padding: 0 28px;
    border-top: 0 solid rgba(0, 0, 0, 0.04);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    padding: 24px 28px;
    border-top-width: 1px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--text-primary);
}

/* Call To Action Banner */
.cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-card {
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, hsla(340, 100%, 95%, 0.5) 0%, transparent 70%);
    top: -140px;
    left: -140px;
    pointer-events: none;
}

.cta-banner-card::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, hsla(180, 100%, 95%, 0.5) 0%, transparent 70%);
    bottom: -140px;
    right: -140px;
    pointer-events: none;
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

.cta-desc {
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 36px auto;
    font-size: 17px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-capsule {
    flex: initial;
    width: 100%;
    max-width: 320px;
}

/* Footer Section */
.footer {
    background: hsl(38, 20%, 96%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 80px 0 130px 0; /* Space for mobile floating CTA */
    color: var(--text-secondary);
    font-size: 14.5px;
    position: relative;
    z-index: 3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 56px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
}

.footer-desc {
    max-width: 340px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-header {
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 24px;
    font-size: 16px;
    letter-spacing: -0.3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 13px;
}

.footer-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 700;
    font-size: 13.5px;
}

.footer-security-note svg {
    color: var(--success);
    filter: drop-shadow(0 0 2px var(--success-glow));
}

/* Floating Bottom Mobile Download Pill */
.floating-cta {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: hsla(0, 0%, 100%, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-full);
    padding: 12px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 0, 0, 0.02);
    z-index: 999;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
    will-change: transform, opacity;
}

.floating-cta.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.floating-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-info-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.floating-text-title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    color: var(--text-primary);
}

.floating-text-sub {
    font-size: 11.5px;
    color: var(--success);
    font-weight: 700;
}

.floating-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 13.5px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.15);
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    transform: scale(1.03);
    background: hsl(340, 82%, 46%);
}

/* Reveal Animations on Scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }
    .hero-left {
        align-items: center;
    }
    .hero-title {
        font-size: 52px;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .download-actions-wrapper, .stats-capsules {
        justify-content: center;
    }
    .trust-indicators-row {
        justify-content: center;
    }
    .security-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .security-left {
        align-items: center;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .footer-grid div:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 38px;
        letter-spacing: -1.2px;
    }
    .download-actions-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .btn-capsule {
        width: 100%;
        max-width: 100%;
    }
    .stats-capsules {
        flex-wrap: wrap;
        gap: 8px;
    }
    .stat-pill {
        padding: 5px 12px;
        font-size: 10.5px;
    }
    .simulator-stages {
        padding: 12px 16px;
    }
    .captcha-simulator-box {
        padding: 16px;
    }
    .trust-indicators-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-grid div:first-child {
        grid-column: span 1;
    }
    .cta-banner-card {
        padding: 48px 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .floating-cta {
        padding: 10px 20px;
        bottom: 16px;
        left: 16px;
        right: 16px;
    }
    .floating-info-logo {
        width: 34px;
        height: 34px;
    }
    .floating-text-title {
        font-size: 13.5px;
    }
    .floating-btn {
        padding: 8px 16px;
        font-size: 12.5px;
    }
}
