/* ==========================================
   Vishv Publishers Stylesheet
   Matching reference screenshot color scheme & assets
   ========================================== */

/* ------------------------------------------
   1. Design System & CSS Variables
   ------------------------------------------ */
:root {
    /* Color Palette matching screenshot */
    --bg-dark: #050c18;             /* Deep Navy Blue */
    --bg-header: #040913;           /* Darker Header Background */
    --bg-card: rgba(8, 20, 39, 0.5);
    --bg-card-hover: rgba(12, 28, 54, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --color-primary: #eab308;       /* Amber Yellow */
    --color-primary-hover: #ca8a04;
    --color-secondary: #0ea5e9;     /* Telegram Blue for Support FAB */
    --color-accent: #10b981;        /* Emerald Green for active states */
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #050c18;
    
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ------------------------------------------
   2. Reset & Global Styles
   ------------------------------------------ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
}

/* ------------------------------------------
   3. Common Layout & Components
   ------------------------------------------ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-bounce);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 179, 8, 0.2);
}

.btn-primary:active {
    transform: translateY(-0.5px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-large {
    padding: 12px 30px;
    font-size: 1rem;
}

.btn-small {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* Lang button */
.btn-lang {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.btn-lang:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Active Writers badge */
.active-writers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 25px;
}

.active-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent);
    animation: activePulse 2s infinite;
}

#activeWritersText {
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
}

/* Italic Gold font styling */
.italic-gold {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-primary);
    font-weight: 400;
}

/* Step guide helper link */
.step-guide-link {
    margin-top: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.step-guide-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.step-guide-link a:hover {
    color: #ffffff;
}

.warning-icon {
    font-size: 0.95rem;
}

/* Header Sections info */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ------------------------------------------
   4. Navigation Layout
   ------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
    background: rgba(5, 12, 24, 0.85);
    backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(5, 12, 24, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo variables matching reference */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-title {
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.logo-subtitle {
    color: var(--color-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 8px 18px;
    font-size: 0.9rem;
    border-radius: 20px;
}

/* Hamburger mobile button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 102;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #060f20;
    border-left: 1px solid var(--border-color);
    padding: 100px 24px 40px 24px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.4);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 10px;
}

.mobile-link:hover {
    color: #ffffff;
    border-color: var(--color-primary);
}

.mobile-cta {
    margin-top: auto;
}

/* ------------------------------------------
   5. Hero Section
   ------------------------------------------ */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 90px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.04) 0%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Graphic container layout matching reference screenshot */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hero-main-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating status card */
.floating-payout-card {
    position: absolute;
    bottom: 24px;
    left: -20px;
    background-color: #ffffff;
    color: #0f172a;
    padding: 10px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
    animation: floatPayout 5s ease-in-out infinite;
}

.payout-check-circle {
    width: 24px;
    height: 24px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payout-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.payout-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.payout-amount {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

/* ------------------------------------------
   6. Project Plans Section
   ------------------------------------------ */
.jobs-section {
    padding: 90px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    background: linear-gradient(180deg, rgba(5,12,24,0.5) 0%, rgba(8,18,36,0.3) 100%);
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-bounce);
}

.job-card:hover {
    border-color: rgba(234, 179, 8, 0.25);
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.04);
    transform: translateY(-4px);
}

.job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(234, 179, 8, 0.12);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.job-badge.bg-cyan {
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--color-secondary);
}

.job-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pdf-icon-wrapper {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.resume-icon-wrapper {
    background: rgba(14, 165, 233, 0.1);
    color: var(--color-secondary);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.job-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.job-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.job-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.job-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.check-icon {
    width: 15px;
    height: 15px;
    color: var(--color-accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.job-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.job-payout {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.job-payout strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.job-link {
    font-weight: 600;
    color: var(--color-primary);
}

.job-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* ------------------------------------------
   7. Interactive Simulator
   ------------------------------------------ */
.simulator-section {
    padding: 90px 0;
    position: relative;
    background: #040913;
    overflow: hidden;
}

.simulator-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(234, 179, 8, 0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.simulator-widget {
    position: relative;
    background: rgba(8, 20, 39, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    overflow: hidden;
    z-index: 2;
}

.simulator-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(4, 9, 19, 0.6);
    border-bottom: 1px solid var(--border-color);
}

.tab-btn {
    padding: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.tab-btn:hover {
    color: #ffffff;
}

.tab-btn.active {
    color: #ffffff;
    background: rgba(8, 20, 39, 0.3);
    border-bottom-color: var(--color-primary);
}

.simulator-body {
    padding: 24px;
}

.demo-screen {
    display: none;
}

.demo-screen.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.demo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.panel-left, .panel-right {
    display: flex;
    flex-direction: column;
}

.panel-header {
    margin-bottom: 12px;
}

.panel-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.panel-tag.tag-app {
    color: var(--color-primary);
}

/* Scanned Doc mockup */
.scanned-doc {
    background: #fcfcfc;
    color: #1e293b;
    padding: 24px;
    border-radius: var(--radius-sm);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.06), 0 5px 15px rgba(0,0,0,0.25);
    position: relative;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Courier New', Courier, monospace;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(234, 179, 8, 0.06);
    pointer-events: none;
    letter-spacing: 0.1em;
    border: 4px double rgba(234, 179, 8, 0.06);
    padding: 6px 12px;
    white-space: nowrap;
}

.doc-line {
    margin-bottom: 10px;
    font-size: 0.95rem;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 4px;
}

.font-handwritten {
    font-family: 'Segoe Print', 'Comic Sans MS', cursive;
    color: #0f172a;
}

.highlight-error {
    background-color: rgba(253, 224, 71, 0.55);
    padding: 0 4px;
    border-radius: 2px;
}

.doc-instruction-bubble {
    margin-top: 20px;
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.doc-instruction-bubble svg {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Raw detail sheet */
.raw-details-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--radius-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-detail-row {
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: #cbd5e1;
}

.client-detail-row strong {
    color: var(--color-primary);
    display: inline-block;
    width: 100px;
}

.click-to-copy-tip {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

/* App mock forms */
.app-mock-form {
    background: #081121;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.mock-input {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.mock-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.15);
}

.field-error-msg {
    font-size: 0.75rem;
    color: #f87171;
    font-weight: 500;
}

.field-ok-msg {
    font-size: 0.75rem;
    color: #4ade80;
    font-weight: 500;
}

/* Success Overlay */
.simulator-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 12, 24, 0.96);
    backdrop-filter: blur(12px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.simulator-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    max-width: 440px;
    text-align: center;
}

.success-icon-badge {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 8px;
}

.success-earnings-alert {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.glow-text-yellow {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(234, 179, 8, 0.3);
}

.success-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ------------------------------------------
   8. How It Works
   ------------------------------------------ */
.how-it-works-section {
    padding: 90px 0;
    border-top: 1px solid var(--border-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: rgba(8,20,39,0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: rgba(234, 179, 8, 0.15);
    background: rgba(8,20,39,0.5);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.9;
}

.step-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ------------------------------------------
   9. Features Grid
   ------------------------------------------ */
.features-section {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #040913 100%);
    border-top: 1px solid var(--border-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    border: 1px solid rgba(234, 179, 8, 0.15);
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ------------------------------------------
   10. FAQ Accordions
   ------------------------------------------ */
.faq-section {
    padding: 90px 0;
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 760px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(8,20,39,0.3);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.12);
}

.faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-arrow {
    flex-shrink: 0;
    transition: var(--transition-smooth);
    color: var(--text-muted);
}

.faq-item.active {
    background: rgba(8,20,39,0.5);
    border-color: rgba(234, 179, 8, 0.2);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 24px 18px 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ------------------------------------------
   11. Bottom Download Card
   ------------------------------------------ */
.download-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.download-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(234, 179, 8, 0.03) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.download-card {
    background: linear-gradient(135deg, rgba(8,20,39,0.6) 0%, rgba(4,9,19,0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 45px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 35px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.download-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 500px;
}

.download-specs {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-val {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.spec-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.spec-divider {
    height: 24px;
    width: 1px;
    background-color: var(--border-color);
}

.download-card-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 500;
}

/* APK visual box logo shape */
.download-card-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.apk-box-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
}

.apk-icon-box {
    width: 100%;
    height: 100%;
    background: rgba(8,20,39,0.8);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    animation: goldPulseGlow 4s infinite alternate;
}

.apk-v {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
}

.apk-badge {
    background: var(--color-primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

/* ------------------------------------------
   12. Footer
   ------------------------------------------ */
.footer {
    background: #03070f;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 24px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links-group {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.footer-col a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 24px;
}

.footer-bottom-container {
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
}

/* ------------------------------------------
   13. Floating Action Button (FAB)
   ------------------------------------------ */
.support-fab {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 54px;
    height: 54px;
    background-color: #0ea5e9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    z-index: 99;
    transition: var(--transition-bounce);
}

.support-fab:hover {
    transform: scale(1.08);
    background-color: #0284c7;
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.4);
}

.support-fab svg {
    transform: translate(0, 0);
}

/* ------------------------------------------
   14. Animations
   ------------------------------------------ */
@keyframes floatPayout {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes activePulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes goldPulseGlow {
    0% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    100% {
        border-color: rgba(234, 179, 8, 0.3);
        box-shadow: 0 15px 30px rgba(234, 179, 8, 0.1);
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ------------------------------------------
   14. Reviews Section
   ------------------------------------------ */
.reviews-section {
    padding: 100px 0;
    background: #f8fafc;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    position: relative;
}

.reviews-section .section-title {
    color: #0c192c;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 0;
}

.title-gold-line {
    width: 44px;
    height: 3px;
    background-color: #fbbf24;
    margin: 18px auto 0 auto;
    border-radius: var(--radius-full);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 24px;
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #e8ecf2;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--font-body);
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0c192c;
    line-height: 1.2;
}

.user-location {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.12em;
    line-height: 1;
}

.review-rating {
    margin-top: 12px;
    margin-bottom: 18px;
    display: flex;
    gap: 4px;
}

.star {
    color: #fbbf24;
    font-size: 1.15rem;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 0;
    font-style: italic;
    flex-grow: 1;
}

.reviews-cta-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.reviews-cta-btn {
    background: #0c192c;
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(12, 25, 44, 0.15);
}

.reviews-cta-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(12, 25, 44, 0.25);
}

/* ------------------------------------------
   14. Calculator, Payout Ticker, & Security Modal Styling
   ------------------------------------------ */
/* Calculator */
.calculator-section {
    padding: 90px 0;
    position: relative;
    background: #040913;
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.calculator-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(234, 179, 8, 0.02) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.calculator-card {
    position: relative;
    z-index: 2;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.calc-project-tabs {
    display: flex;
    gap: 12px;
}

.calc-tab-btn {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.calc-tab-btn:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.calc-tab-btn.active {
    background: rgba(234, 179, 8, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.calc-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calc-hours-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.5);
    transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.calc-outputs {
    background: rgba(4, 9, 19, 0.6);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.calc-output-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calc-output-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.calc-output-val {
    font-size: 2.2rem;
    font-weight: 800;
}

.glow-text-yellow {
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(234, 179, 8, 0.3);
}

.calc-output-divider {
    height: 1px;
    background: var(--border-color);
}

/* Payout Ticker Banner */
.payout-ticker-banner {
    position: fixed;
    bottom: 84px;
    left: 24px;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 95;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    max-width: 320px;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.payout-ticker-banner.active {
    transform: translateY(0);
    opacity: 1;
}

.ticker-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fef08a;
    color: #a16207;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ticker-body {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.ticker-text {
    font-size: 0.85rem;
    color: #0f172a;
    font-weight: 700;
}

.ticker-sub {
    font-size: 0.78rem;
    color: #64748b;
}

.time-ago {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Security Download Modal */
.security-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 12, 24, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.security-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.security-modal-card {
    background: #081427;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.security-modal-overlay.active .security-modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-security-header {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.security-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.security-subtitle-modal {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.security-checks-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.security-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.check-status {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-status.icon-spin {
    animation: spin 1s linear infinite;
    color: var(--color-primary);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.progress-bar-wrapper {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 3px;
    transition: width 0.1s linear;
}

.progress-percent {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.modal-instruction-text {
    animation: fadeIn 0.4s ease forwards;
}

.success-text {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.install-tip {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.install-tip strong {
    color: #ffffff;
}

/* ------------------------------------------
   14.5. Conversion Rate Optimization (CRO) Styling
   ------------------------------------------ */
/* Badges flex container */
.hero-header-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-header-badges .active-writers-badge {
    margin-bottom: 0;
}

/* Slots warning badge */
.slots-warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ef4444;
}

.pulse-warn-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
    animation: warnPulse 1.5s infinite;
}

@keyframes warnPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Hero trust badges */
.hero-trust-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #e2e8f0;
}

.trust-badge-item svg {
    color: var(--color-accent);
}

/* Primary CTA Highlight Pulse */
.hero-primary-cta {
    position: relative;
    overflow: hidden;
    animation: ctaPulse 3s infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
    50% { box-shadow: 0 0 20px 6px rgba(234, 179, 8, 0.2); }
}

/* Visual Install Support Guide */
.install-helper-container {
    margin-top: 60px;
    background: rgba(8, 20, 39, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
}

.install-helper-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
    color: #ffffff;
}

.install-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.install-step-item {
    display: flex;
    gap: 16px;
}

.install-icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(234, 179, 8, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.install-step-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.install-step-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.install-step-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.install-step-info strong {
    color: #ffffff;
}

/* Sticky Bottom Mobile CTA */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(4, 9, 19, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-color);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 90;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.sticky-bottom-cta.active {
    transform: translateY(0);
}

.sticky-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.sticky-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.sticky-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sticky-btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.2);
    height: 48px;
    display: flex;
    align-items: center;
}

/* ------------------------------------------
   15. Responsive Styling Rules
   ------------------------------------------ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .jobs-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-image-wrapper {
        margin-top: 30px;
    }
    .floating-payout-card {
        left: 20px;
    }
    
    /* Horizontal Slider for Project Plans in Mobile View */
    .jobs-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        margin-left: -24px;
        margin-right: -24px;
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 20px;
        scrollbar-width: none;
        max-width: none;
    }

    .jobs-grid::-webkit-scrollbar {
        display: none;
    }

    .jobs-grid .job-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        padding: 24px;
    }
    
    .demo-split {
        grid-template-columns: 1fr;
    }
    .panel-left {
        order: 2;
    }
    .panel-right {
        order: 1;
    }
    
    .steps-container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .calculator-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
    }

    .install-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .install-helper-container {
        padding: 24px;
    }
    
    .download-card {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }
    .download-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .download-specs {
        justify-content: center;
    }
    .download-card-actions {
        justify-content: center;
        flex-direction: column;
    }
    .download-card-graphic {
        margin-top: 20px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-ctas {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .steps-container {
        grid-template-columns: 1fr;
    }
    .simulator-body {
        padding: 12px;
    }
    .app-mock-form, .scanned-doc, .raw-details-card {
        padding: 16px;
    }
    .watermark {
        font-size: 1.4rem;
    }
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .verified-badge {
        margin-left: 0;
    }
    .calc-project-tabs {
        flex-direction: column;
        gap: 8px;
    }
    .calc-outputs {
        padding: 20px;
    }
    .calc-output-val {
        font-size: 1.8rem;
    }
    .security-modal-card {
        padding: 24px;
    }
    .hero-header-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hero-trust-badges {
        justify-content: center;
        gap: 12px 20px;
    }
    .sticky-bottom-cta {
        padding: 10px 16px;
    }
    .sticky-text {
        font-size: 0.85rem;
    }
    .sticky-sub {
        font-size: 0.7rem;
    }
    .sticky-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}
