/* 
   Client Cascade Earlybird Landing Page Stylesheet
   Premium, Dark Mode, Glassmorphic Aesthetic for Contractors
   Linear High-Converting Layout
*/

/* --- CUSTOM VARIABLES & DESIGN TOKENS --- */
:root {
    /* Color Palette - Premium light theme for contractors */
    --bg-dark: #f8fafc;
    --bg-darker: #f1f5f9;
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-border: rgba(15, 23, 42, 0.08);
    --card-border-glow: rgba(16, 185, 129, 0.15);
    
    /* Primary Accents (Growth Emerald Green - Money/Success) */
    --primary: #10b981;
    --primary-light: #059669;
    --primary-dark: #065f46;
    --primary-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --primary-glow: rgba(16, 185, 129, 0.15);
    
    /* Secondary & Accent Colors (Rugged Field Orange / Amber) */
    --accent: #f97316; /* Construction Orange */
    --accent-light: #ea580c;
    --accent-dark: #9a3412;
    --accent-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --accent-glow: rgba(249, 115, 22, 0.15);
    
    /* Bonus Colors (Gold/Amber - Premium Quality) */
    --bonus: #d97706;
    --bonus-light: #b45309;
    --bonus-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --bonus-glow: rgba(217, 119, 6, 0.1);

    /* Text Colors - High contrast for light theme */
    --text-primary: #0f172a;
    --text-secondary: #334155; /* Darker Slate 700 for significantly improved legibility */
    --text-muted: #475569; /* Slate 600 for better contrast on secondary labels */
    --text-emerald: #047857;

    /* Fonts - Industrial Montserrat combined with sleek Plus Jakarta Sans */
    --font-heading: 'Montserrat', 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 18px; /* Bumps base typography across the board on desktop */
    background-color: var(--bg-darker);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- BACKGROUND EFFECTS --- */
.bg-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

.bg-glow-2 {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 55%;
    height: 55%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

.bg-glow-3 {
    position: absolute;
    top: 65%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

.bg-glow-4 {
    position: absolute;
    bottom: 0%;
    right: -5%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.02) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

/* Subtle grid overlay - light gray blueprint dots */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(15, 23, 42, 0.012) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.012) 1px, transparent 1px);
    z-index: -1;
}

/* --- TYPOGRAPHY & TITLES --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    font-size: 1.05rem; /* Crisp, readable copy size */
    font-weight: 400;
    line-height: 1.65;
}

.gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- COMMON COMPONENTS --- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Glassmorphic Panel Base */
.glass-panel {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.glass-panel:hover {
    border-color: rgba(15, 23, 42, 0.15);
    box-shadow: 0 20px 40px -5px rgba(15, 23, 42, 0.1), 0 8px 16px -2px rgba(15, 23, 42, 0.04);
}

/* Buttons & Inputs */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 var(--primary-glow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover::after {
    left: 100%;
    transition: all 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px 0 var(--primary-glow);
    filter: brightness(1.1);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.05);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.85rem 2.0rem;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

.input-field {
    width: 100% !important;
    background: #ffffff !important;
    border: 2px solid #1e293b !important; /* Thick, crisp Slate 800 border for ultra-high contrast */
    border-radius: 12px !important;
    padding: 0.9rem 1.2rem !important;
    color: #0f172a !important; /* Rich, dark, highly legible input text */
    font-family: var(--font-body) !important;
    font-size: 1.05rem !important; /* Increased font-size for better readability */
    font-weight: 600 !important; /* Bolder font-weight for clear legibility */
    box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.1) !important; /* Stronger inner shadow */
    transition: all 0.2s ease !important;
}

.input-field:focus {
    outline: none !important;
    border-color: var(--primary) !important; /* Solid Emerald outline on focus */
    border-width: 2px !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25), inset 0 2px 4px rgba(15, 23, 42, 0.1) !important;
    background: #ffffff !important;
}

.input-field.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.25) !important;
}

/* Ensure placeholder contrast across all engine renderings (WebKit, Moz, MS) */
.input-field::-webkit-input-placeholder {
    color: #334155 !important; /* Dark Slate 700 for high readability placeholder */
    opacity: 1 !important;
    font-weight: 500 !important;
}
.input-field::-moz-placeholder {
    color: #334155 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}
.input-field:-ms-input-placeholder {
    color: #334155 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}
.input-field::placeholder {
    color: #334155 !important;
    opacity: 1 !important;
    font-weight: 500 !important;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--text-emerald);
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    font-size: 0.9rem; /* Increased for better legibility */
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-gold {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--bonus-light);
}

/* Header (Logo Only for Quarantine) */
.header-quarantine {
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.header-quarantine img {
    height: 40px;
    pointer-events: none;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 5rem 0;
    position: relative;
}

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

.hero-content {
    max-width: 650px;
}

.hero-header {
    margin-bottom: 3.5rem;
}

.hero-header .badge {
    margin-bottom: 1.5rem;
}

.hero-header h1 {
    font-size: 3.6rem; /* High-impact heading spanning full width */
    line-height: 1.15;
    margin-bottom: 0;
    max-width: 1100px;
}

.hero-content {
    max-width: 650px;
}

.hero-content p {
    font-size: 1.25rem; /* Larger, readable intro subhead */
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-form-box {
    margin-top: 2rem;
    max-width: 550px; /* Wider CTA box for premium spacing and readability */
    border-radius: 20px;
    background: #ffffff !important; /* Force solid white background for high visibility */
    border: 2px solid #1e293b !important; /* Thick, solid Slate 800 outline for premium separation */
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.05) !important;
}

.hero-inline-form {
    display: flex;
    flex-direction: column; /* Stacked layout for roomy input & bold button */
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.hero-inline-form .input-field {
    width: 100%;
}

.hero-form-note {
    font-size: 0.85rem; /* Increased size for text legibility */
    color: #1e293b; /* Dark Slate 800 for high text readability */
    font-weight: 500;
    display: flex;
    gap: 1.25rem;
    justify-content: center; /* Centered on desktop */
    padding-left: 0;
}

.hero-form-note span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Hero Graphical Mockup Panel */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-logo-container {
    margin-bottom: 2rem;
    width: 100%;
}

.hero-logo {
    height: 80px; /* Twice as large as header logo (40px) */
    width: auto;
    display: block;
}

/* CRM Console Mockup Container */
.crm-console {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    background: #f8fafc;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
}

/* Header bar */
.crm-header {
    height: 44px;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    justify-content: space-between;
}

.crm-dots {
    display: flex;
    gap: 6px;
}

.crm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.crm-dot-red { background: #ef4444; }
.crm-dot-yellow { background: #f59e0b; }
.crm-dot-green { background: #10b981; }

.crm-title {
    font-size: 0.85rem; /* Increased from 0.75rem */
    color: var(--text-muted);
    font-weight: 600;
    font-family: var(--font-heading);
}

.crm-user {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

/* Main inner grid */
.crm-body {
    flex: 1;
    display: grid;
    grid-template-columns: 75px 1fr;
    height: calc(100% - 44px);
}

/* Sidebar navigation icon strip */
.crm-sidebar {
    background: #0f172a;
    border-right: 1px solid rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1.5rem;
}

.crm-side-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.crm-side-icon.active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

/* Dashboard Content Grid */
.crm-content {
    padding: 1.25rem;
    overflow: hidden;
    position: relative;
}

.crm-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.crm-stat-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.crm-stat-label {
    font-size: 0.75rem; /* Increased from 0.65rem */
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.crm-stat-val {
    font-size: 1.25rem; /* Increased from 1.1rem */
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-top: 0.15rem;
}

.crm-stat-val.positive {
    color: var(--text-emerald);
}

.crm-chart-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 1rem;
    height: 120px;
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    justify-content: space-around;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.crm-chart-bar {
    width: 24px;
    background: linear-gradient(to top, var(--primary-dark), var(--primary));
    border-radius: 4px 4px 0 0;
    height: 80%;
}

.crm-chart-glow-accent {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
}

/* Floating overlay details to look complex */
.floating-overlay-card {
    position: absolute;
    bottom: 20px;
    right: -20px;
    width: 200px;
    padding: 0.85rem;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    border-radius: 12px;
    animation: floating-bounce 3s ease-in-out infinite alternate;
}

@keyframes floating-bounce {
    0% { transform: translateY(0px) rotate(2deg); }
    100% { transform: translateY(-10px) rotate(-1deg); }
}

.overlay-lead-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.overlay-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

.overlay-info {
    flex: 1;
}

.overlay-name {
    font-size: 0.8rem; /* Increased from 0.7rem */
    font-weight: 600;
    color: var(--text-primary);
}

.overlay-desc {
    font-size: 0.7rem; /* Increased from 0.6rem */
    color: var(--text-muted);
}

.overlay-status {
    font-size: 0.75rem; /* Increased from 0.6rem */
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    background: rgba(16, 185, 129, 0.15);
    color: var(--text-emerald);
    border-radius: 4px;
}

/* --- "WHY" INTRO SECTION --- */
.why-section {
    padding: 5rem 0;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    background: #f1f5f9;
}

.why-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.why-container .badge {
    margin-bottom: 1.5rem;
}

.why-container h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.why-container p {
    font-size: 1.35rem; /* Bumper value description */
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- LINEAR FEATURE SECTIONS --- */
.feature-detail-section {
    padding: 6.5rem 0;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.feature-detail-section.alt-bg {
    background: #f1f5f9;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.feature-row.reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.feature-row.reverse .feature-content {
    grid-column: 2;
}

.feature-row.reverse .feature-visual {
    grid-column: 1;
    grid-row: 1;
}

.feature-content h2 {
    font-size: 2.7rem; /* Bounded header readability */
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.25rem;
}

.feature-bullet-list li {
    position: relative;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.feature-bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: bold;
}

.feature-bullet-list strong {
    color: var(--text-primary);
    font-size: 1.15rem; /* Larger, bold titles for features */
    font-weight: 700;
}

.feature-bullet-list li span {
    font-size: 1.05rem; /* Highly legible body/description copy */
    color: var(--text-secondary);
}

/* Mockups Styling in Grid Rows */
.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.feature-mockup {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
    padding: 1.25rem;
    box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.1);
    font-size: 0.85rem; /* Increased from 0.75rem */
}

.mockup-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.mockup-item:last-child {
    margin-bottom: 0;
}

.mockup-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.mockup-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem; /* Increased from 0.6rem */
    font-weight: 700;
    text-transform: uppercase;
}

.mockup-pill-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--text-emerald);
}

.mockup-pill-orange {
    background: rgba(249, 115, 22, 0.15);
    color: #fd974f;
}

.mockup-pill-gold {
    background: rgba(245, 158, 11, 0.15);
    color: var(--bonus-light);
}

.mockup-progress-bar {
    height: 6px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.mockup-progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 3px;
    width: 100%;
}

/* Calendar styling inside Mockups */
.mockup-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
    margin-top: 0.5rem;
}

.mockup-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-muted);
}

.mockup-calendar-day.filled {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.mockup-calendar-day.filled-green {
    background: rgba(16, 185, 129, 0.15);
    color: var(--text-emerald);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mockup-dispatch-cricle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

.mockup-dispatch-cricle.pulse {
    animation: pulse-ring-mock 1.5s infinite alternate;
}

@keyframes pulse-ring-mock {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    100% { transform: scale(1.1); box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

/* Audio waves mockups */
.mockup-audio-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
    margin-top: 0.5rem;
}

.mockup-wave-bar {
    flex: 1;
    background: var(--text-muted);
    border-radius: 1px;
    height: 40%;
}

.mockup-wave-bar.active {
    background: var(--primary-light);
}

/* --- BONUS SECTION --- */
.bonuses-section {
    padding: 6.5rem 0;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.section-header .badge {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bonus-card {
    position: relative;
    padding: 3rem 2rem 2.5rem 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    background: #ffffff;
    height: 100%;
}

.bonus-card:hover {
    border-color: rgba(234, 179, 8, 0.45);
    box-shadow: 0 15px 35px -5px rgba(234, 179, 8, 0.12), 0 5px 15px -2px rgba(234, 179, 8, 0.04);
}

.bonus-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.65rem;
    font-weight: 800;
    background: var(--bonus-gradient);
    color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bonus);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.bonus-card h3 {
    font-size: 1.6rem; /* Substantial title font */
    margin-bottom: 0.75rem;
}

.bonus-card p {
    font-size: 1.05rem; /* Larger copy size */
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bonus-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem; /* Bolder value badge */
    color: var(--bonus-light);
    margin-top: auto;
    padding: 0.4rem 1.1rem;
    background: rgba(234, 179, 8, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(234, 179, 8, 0.15);
    letter-spacing: 0.02em;
}

/* --- BOTTOM WAITLIST SECTION --- */
.waitlist-section {
    padding: 7rem 0 8rem 0;
    position: relative;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.waitlist-form-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    position: relative;
    border-radius: 20px;
    background: #ffffff !important; /* Force solid white background for high visibility */
    border: 2px solid #1e293b !important; /* Thick, solid Slate 800 outline for premium separation */
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.05) !important;
}

.waitlist-form-container .badge {
    margin-bottom: 1.25rem;
}

.waitlist-form-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.waitlist-form-container .desc {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.25rem; /* Bolder bottom subtext */
}

.signup-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-full-width {
    grid-column: span 2;
}

.signup-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem; /* Much more readable label sizes */
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.signup-form select.input-field {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.signup-form select.input-field option {
    background: #ffffff;
    color: var(--text-primary);
}

.waitlist-submit-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1.15rem;
    font-size: 1.25rem; /* Sizable submit button font */
}

/* Success Modal Overlay & Modal box */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-modal {
    max-width: 480px;
    width: 90%;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .success-modal {
    transform: scale(1);
}

.success-icon-container {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin: 0 auto 1.5rem auto;
    animation: success-pop 0.5s ease forwards;
}

@keyframes success-pop {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.success-modal h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.success-modal p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem; /* Larger text inside modal */
}

/* Floating Sticky Action (for mobile & desktop) */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

/* --- FOOTER (QUARANTINED) --- */
.quarantine-footer {
    padding: 4rem 0 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: #f1f5f9;
}

.quarantine-footer p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- DISCLAIMERS CONTENT --- */
.disclaimers-content {
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 2rem;
}

.disclaimer-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    text-align: center;
}

.disclaimer-text {
    font-size: 0.72rem !important; /* Elegant, small legal disclaimer text */
    color: var(--text-muted) !important;
    line-height: 1.6 !important;
    margin-bottom: 0.85rem !important;
}

.disclaimer-text strong {
    color: var(--text-secondary);
}

.quarantine-footer .copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-form-box {
        margin: 2rem auto 0 auto;
    }
    
    .hero-form-note {
        justify-content: center;
    }

    .hero-visual {
        align-items: center;
    }

    .hero-logo-container {
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-logo {
        margin: 0 auto;
    }

    .crm-title {
        display: none !important;
    }

    .feature-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .feature-row, .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }
    
    .feature-row.reverse .feature-content {
        grid-column: 1;
    }
    
    .feature-row .feature-visual {
        display: none !important;
    }

    .feature-bullet-list li {
        text-align: left;
    }

    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
    .mobile-only.flex {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px; /* Professional, high-legibility base size for mobile viewports */
    }

    .hero-logo {
        height: 64px; /* Proportional mobile hero logo height */
    }

    .container {
        padding: 0 1.2rem;
    }

    /* Section padding reductions to avoid ocean-like spacing */
    .hero-section {
        padding: 3rem 0;
    }
    .why-section {
        padding: 3.5rem 0;
    }
    .feature-detail-section {
        padding: 3.5rem 0;
    }
    .bonuses-section {
        padding: 3.5rem 0;
    }
    .waitlist-section {
        padding: 4rem 0 5rem 0;
    }
    .quarantine-footer {
        padding: 2rem 0;
    }

    /* Compact header logo for mobile screens */
    .header-mobile-only {
        padding: 1.5rem 0 0.5rem 0;
        text-align: center;
        width: 100%;
    }
    .mobile-header-logo {
        height: 48px;
        margin: 0 auto;
        display: block;
    }

    /* Fluid typography styles */
    .hero-header h1 {
        font-size: 2.0rem; /* Clean and fitting for mobile viewports (slightly reduced) */
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    .hero-header h1 br {
        display: none; /* Hide forced line-break on mobile */
    }
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    .why-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .why-container p {
        font-size: 1.15rem;
    }
    .feature-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .section-header p {
        font-size: 1.1rem;
    }
    .waitlist-form-container h2 {
        font-size: 1.8rem;
    }
    .bonus-card h3 {
        font-size: 1.35rem;
    }
    .bonus-card p {
        font-size: 0.95rem;
    }

    /* Center bullet lists container-wise but keep text left-aligned */
    .feature-bullet-list {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.75rem;
    }
    .feature-bullet-list li strong {
        font-size: 1.05rem;
    }
    .feature-bullet-list li span {
        font-size: 0.95rem;
    }

    /* Prevent estimate name and pill badge from overlapping in feature mockup headers */
    .mockup-header-row {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .feature-mockup {
        padding: 1rem;
    }

    /* Hero Form and CTA improvements */
    .hero-form-box {
        padding: 1.25rem !important;
        border-radius: 14px;
        margin: 1.5rem auto 0 auto;
    }
    .hero-inline-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-inline-form button {
        width: 100%;
        font-size: 1rem;
        padding: 0.85rem 1.5rem;
    }
    .hero-form-note {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    /* Optimize CRM Console Mockup for narrow screens */
    .crm-console {
        aspect-ratio: 1.35 / 1;
    }
    .crm-body {
        grid-template-columns: 1fr; /* Hide sidebar layout */
    }
    .crm-sidebar {
        display: none; /* Hide static sidebar on mobile to save 60px width */
    }
    .crm-content {
        padding: 0.85rem;
    }
    .crm-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        margin-bottom: 0.75rem;
    }
    .crm-stat-card {
        padding: 0.45rem 0.35rem;
    }
    .crm-stat-label {
        font-size: 0.6rem;
        letter-spacing: -0.02em;
    }
    .crm-stat-val {
        font-size: 0.95rem;
    }
    .crm-chart-box {
        height: 85px;
        padding: 0.5rem;
        gap: 6px;
    }
    .crm-chart-bar {
        width: 16px;
    }

    /* Re-align floating overlay card so it fits within screen boundary & doesn't crop */
    .floating-overlay-card {
        width: 170px;
        padding: 0.5rem;
        right: 10px;
        bottom: 10px;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    }
    .overlay-lead-item {
        gap: 0.4rem;
    }
    .overlay-avatar {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }
    .overlay-name {
        font-size: 0.7rem;
    }
    .overlay-desc {
        font-size: 0.55rem;
        line-height: 1.1;
    }
    .overlay-status {
        font-size: 0.65rem;
        padding: 0.15rem 0.35rem;
    }

    /* Performance optimization: decrease blur size on mobile to render smoothly */
    .bg-glow-1, .bg-glow-2, .bg-glow-3, .bg-glow-4 {
        filter: blur(50px);
    }

    /* Bonuses grid & card scaling */
    .bonuses-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.25rem;
    }
    .bonus-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-row: auto;
        padding: 2.25rem 1.5rem;
    }
    .bonus-card h3 {
        margin-bottom: 0.5rem;
    }
    .bonus-value {
        margin-top: 1rem;
        font-size: 0.95rem;
    }

    /* Bottom Waitlist Form styling */
    .waitlist-form-container {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    .waitlist-form-container .desc {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }
    .signup-form {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .form-full-width {
        grid-column: span 1;
    }
    .signup-form label {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
    }
    .signup-form .input-field {
        padding: 0.75rem 1rem;
    }
    .waitlist-submit-btn {
        margin-top: 0.5rem;
        padding: 0.95rem;
        font-size: 1.1rem;
    }

    /* Success modal optimizations */
    .success-modal {
        padding: 2rem 1.25rem;
        width: 92%;
    }
    .success-icon-container {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .success-modal h3 {
        font-size: 1.6rem;
    }
    .success-modal p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Floating sticky CTA - transforms into a premium, thumb-friendly centered bottom pill */
    .floating-cta {
        left: 50%;
        right: auto;
        bottom: 16px;
        transform: translate(-50%, 20px);
        width: calc(100% - 32px);
        max-width: 380px;
        text-align: center;
    }
    .floating-cta.visible {
        transform: translate(-50%, 0);
    }
    .floating-cta .btn-primary {
        width: 100%;
        padding: 0.85rem 1.5rem;
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        font-size: 1rem;
        justify-content: center;
    }
}

/* --- HERO STATS RIBBON --- */
.hero-stats-ribbon {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.5rem 0;
    margin-top: 3.5rem;
}

.stats-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.ribbon-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ribbon-stat-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ribbon-stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* --- ROI CALCULATOR SECTION --- */
.roi-calculator-section {
    padding: 6.5rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.roi-calc-container {
    max-width: 950px;
    margin: 0 auto;
}

.roi-calc-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.roi-calc-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.roi-calc-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: stretch;
}

.roi-sliders-box {
    padding: 2.5rem;
    background: #ffffff;
}

.roi-sliders-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.roi-slider-group {
    margin-bottom: 2rem;
}

.roi-slider-group:last-child {
    margin-bottom: 0;
}

.roi-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.roi-label-row span {
    white-space: nowrap;
}

.roi-slider-input {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 9999px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.roi-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    transition: transform 0.1s ease;
}

.roi-slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.roi-slider-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    transition: transform 0.1s ease;
    cursor: pointer;
}

.roi-slider-input::-moz-range-thumb:hover {
    transform: scale(1.15);
}

.roi-val-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    color: var(--text-emerald);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* ROI Results Panel styling */
.roi-results-box {
    padding: 2.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-color: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.roi-results-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #94a3b8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.roi-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.roi-stat-row:last-of-type {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.roi-stat-label {
    font-size: 0.95rem;
    color: #cbd5e1;
    white-space: nowrap;
}

.roi-stat-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    white-space: nowrap;
}

.roi-stat-number.leak {
    color: #f87171;
}

.roi-highlight-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.roi-recovered-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #a7f3d0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.roi-recovered-val {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.25rem;
    color: #10b981;
    text-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
    white-space: nowrap;
}

.roi-recovered-annual {
    font-size: 0.85rem;
    color: #6ee7b7;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.roi-note {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.45;
    text-align: center;
}


/* Responsive Overrides */
@media (max-width: 1024px) {
    .roi-calc-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-ribbon-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .ribbon-stat-num {
        font-size: 1.75rem;
    }
    .roi-calculator-section {
        padding: 3.5rem 0;
    }
    .roi-sliders-box, .roi-results-box {
        padding: 1.5rem;
    }
    .roi-calc-header h2 {
        font-size: 1.8rem;
    }
    .roi-recovered-val {
        font-size: 1.85rem;
    }

}

/* --- MOBILE AND DESKTOP UTILITY CLASSES --- */
.mobile-only {
    display: none !important;
}



/* --- HERO SMARTPHONE MOCKUP (MOBILE FIRST) --- */
.phone-mockup-container {
    width: 100%;
    max-width: 320px;
    margin: 1rem auto;
    position: relative;
}

.phone-device {
    background: #0f172a;
    border: 8px solid #334155;
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4), 0 0 0 4px #1e293b;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 18.5;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    width: 110px;
    height: 18px;
    background: #0f172a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    flex: 1;
    background: radial-gradient(circle at top, #1e293b 0%, #0f172a 100%);
    padding: 24px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.phone-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.phone-time {
    color: #ffffff;
}

.phone-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.phone-notification {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    animation: notification-slide 4s infinite alternate;
}

@keyframes notification-slide {
    0% { transform: translateY(-5px); opacity: 0.9; }
    10% { transform: translateY(0); opacity: 1; }
    90% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-5px); opacity: 0.9; }
}

.notification-avatar {
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.notification-body {
    flex: 1;
}

.notification-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-time {
    font-size: 0.6rem;
    color: #64748b;
    font-weight: normal;
}

.notification-text {
    font-size: 0.7rem;
    color: #334155;
    margin-top: 0.1rem;
    line-height: 1.25;
}

.phone-app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.phone-app-logo {
    height: 24px;
}

.phone-main-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.phone-card-label {
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.phone-card-value {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    color: #10b981;
    margin: 0.25rem 0;
    text-shadow: 0 0 15px rgba(16,185,129,0.3);
}

.phone-card-subtext {
    font-size: 0.65rem;
    color: #64748b;
}

.phone-action-btn-wrapper {
    width: 100%;
}

.phone-swipe-btn {
    width: 100%;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    cursor: pointer;
    animation: pulse-swipe 1.5s infinite alternate;
}

@keyframes pulse-swipe {
    0% { transform: scale(1); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3); }
    100% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5); }
}

.phone-footer-lbl {
    font-size: 0.6rem;
    color: #64748b;
    text-align: center;
    margin-top: 0.5rem;
}

.phone-home-indicator {
    width: 100px;
    height: 4px;
    background: #475569;
    border-radius: 2px;
    margin: 12px auto 0 auto;
}

/* --- MOBILE FEATURE HUB (TABS INTERACTION) --- */
.mobile-features-section {
    padding: 4rem 0;
    background: #f1f5f9;
}

.mobile-features-hub {
    width: 100%;
}

.features-tab-nav {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 2rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.features-tab-nav::-webkit-scrollbar {
    display: none;
}

.feature-tab-btn {
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-secondary);
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.feature-tab-btn.active {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.mobile-tab-content-container {
    position: relative;
    min-height: 380px;
}

.mobile-tab-content {
    display: none;
    animation: fade-in-tab 0.4s ease forwards;
}

.mobile-tab-content.active {
    display: block;
}

@keyframes fade-in-tab {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-tab-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-tab-info {
    text-align: center;
}

.mobile-tab-info h3 {
    font-size: 1.6rem;
    margin: 0.5rem 0 1rem 0;
    color: var(--text-primary);
}

.mobile-tab-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
    max-width: 480px;
    margin: 0 auto 1.5rem auto;
}

.mobile-tab-bullets li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.mobile-tab-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.65rem;
    font-weight: bold;
}

.mobile-tab-bullets li strong {
    color: var(--text-primary);
    display: block;
    font-size: 0.95rem;
}

.mobile-tab-bullets li span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mobile-tab-visual {
    display: none !important; /* Hidden on mobile to keep tab content compact and focused */
}

.mobile-feature-preview-card {
    width: 100%;
    max-width: 340px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 1.15rem;
    box-shadow: 0 10px 25px -5px rgba(15,23,42,0.08);
}


