/* CleanFlow Design System 2.0 - Premium Google Ads Edition */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.4);
    --bg: #020617;
    --card-bg: rgba(15, 23, 42, 0.4);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --gradient-premium: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --font-main: 'Outfit', sans-serif;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Customer Experience & Payment Styles */
.cx-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
}

.cx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.cx-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cx-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--gradient-premium);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.cx-card h4 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cx-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.payment-visual {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border);
}

.pay-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.pay-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
    font-size: 0.8rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: flex;
    gap: 4px;
}

.feedback-bubble {
    background: white;
    color: #020617;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    margin-top: 10px;
}

.feedback-bubble::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.real-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    border-radius: inherit;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs */
.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: blob-move 20s infinite alternate;
}

.blob-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    bottom: 10%;
    left: -100px;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: blob-move 25s infinite alternate-reverse;
}

@keyframes blob-move {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

h1,
h2,
h3,
.brand-title {
    font-family: var(--font-main);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Base Buttons */
.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    min-height: 48px;
    border: none;
}

.btn-primary {
    background: var(--gradient-premium);
    color: white;
    box-shadow: 0 10px 25px -5px var(--primary-glow);
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Navigation Branding */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: white;
}

.logo-box {
    width: 42px;
    height: 42px;
    background: var(--gradient-premium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 0 20px var(--primary-glow);
}

.logo-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-sub {
    font-weight: 300;
    opacity: 0.7;
}

.brand-tagline {
    font-weight: 800;
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-menu {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        gap: 32px;
        list-style: none;
    }

    .nav-menu a {
        color: var(--text-muted);
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        transition: 0.3s;
    }

    .nav-menu a:hover {
        color: white;
    }
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.15), transparent 60%);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 900;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 48px;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }
}

/* Dashboard Mockup - Rich Visual */
.mockup-wrap {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
    perspective: 2000px;
}

.browser-ui {
    background: #0f172a;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
    transform: rotateX(10deg);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top;
}

.mockup-wrap:hover .browser-ui {
    transform: rotateX(0deg);
}

.browser-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.8;
}

.dashboard-preview {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 500px;
    background: #020617;
}

.preview-sidebar {
    background: #1e293b;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.preview-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 60%;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.preview-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.floating-badge {
    position: absolute;
    background: #0f172a;
    border: 2px solid var(--primary);
    color: white;
    padding: 14px 24px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--primary-glow);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.fb-1 {
    top: 20%;
    left: -50px;
    animation: float 6s ease-in-out infinite;
}

.fb-2 {
    bottom: 30%;
    right: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Problems Section */
.problems-section {
    padding: 120px 0;
    background: #020617;
}

.section-tag {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.ps-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.ps-icon {
    font-size: 2.5rem;
    color: #f43f5e;
    margin-bottom: 24px;
}

.ps-card h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.ps-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Features Bento */
.features {
    padding: 120px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.bento-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: 0.4s;
    height: 100%;
}

.bento-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.bento-item h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.bento-item p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-tags span {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .bento-item.large {
        grid-column: span 2;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .bento-item.large .bento-icon {
        flex-shrink: 0;
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 0;
    }
}

/* Tech Highlight */
.tech-highlight {
    padding: 100px 0;
}

.tech-card {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://img.freepik.com/free-vector/abstract-technology-vibrant-gradient-background_52683-33941.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 100px 40px;
    text-align: center;
}

.tech-text {
    max-width: 800px;
    margin: 0 auto;
}

.tech-text h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 24px;
}

.tech-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat h4 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.stat p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: #010409;
}

.calculator-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .calc-grid {
        grid-template-columns: 1fr 340px;
    }
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.module-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.module-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.module-row.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.check-box {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.8rem;
}

.module-row.active .check-box {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.row-info {
    flex: 1;
}

.row-info h4 {
    font-weight: 800;
    font-size: 1.1rem;
}

.row-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.row-price {
    font-weight: 900;
    color: var(--primary);
    font-size: 1.1rem;
}

.price-sidebar {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.total-title {
    font-weight: 900;
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.total-val {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
}

.total-val span {
    font-size: 1.25rem;
}

/* Demo & Trust */
.trust {
    padding: 120px 0;
}

/* Capacity Sliders */
.capacity-selector {
    margin-bottom: 40px;
}

.capacity-row {
    margin-bottom: 30px;
}

.capacity-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.capacity-label label {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capacity-val {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 16px;
    border-radius: 99px;
}

.premium-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-premium);
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary-glow);
    border: 3px solid #fff;
}

.cta-banner {
    background: var(--gradient-premium);
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 50px 100px -20px var(--primary-glow);
}

.cta-banner h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-top: 10px;
}

.creds-box {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.2);
    padding: 32px 48px;
    border-radius: var(--radius-lg);
}

.cred-item {
    text-align: left;
}

.cred-item label {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    opacity: 0.6;
    letter-spacing: 1.5px;
}

.cred-item span {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-main);
}

/* Footer */
footer {
    padding: 100px 0 60px;
    border-top: 1px solid var(--border);
}

.footer-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.footer-col h4 {
    font-weight: 800;
    margin-bottom: 32px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 16px;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.footer-col a:hover {
    color: white;
}

.copy {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Screenshots Section */
.screenshots {
    padding: 120px 0;
    background: #010409;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

@media (min-width: 1024px) {
    .screenshot-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.ss-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 280px;
    height: 580px;
    background: #0f172a;
    border: 12px solid #1e293b;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}

.app-screen {
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
}

.app-header {
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin-bottom: 10px;
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-item {
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    display: flex;
    gap: 12px;
}

.app-item::before {
    content: '';
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    flex-shrink: 0;
}

.app-btn {
    margin-top: auto;
    height: 48px;
    background: var(--gradient-premium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.ss-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.ss-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.ss-features {
    display: grid;
    gap: 20px;
}

.ss-f-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ss-f-item i {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ss-f-item div h5 {
    font-weight: 800;
    margin-bottom: 4px;
}

.ss-f-item div p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ROI & Persuasion section */
.roi-section {
    padding: 100px 0;
    background: radial-gradient(circle at bottom left, rgba(244, 63, 94, 0.05), transparent 50%);
}

.roi-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .roi-container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.roi-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.roi-card.danger {
    border-left: 6px solid #f43f5e;
}

.roi-card.success {
    border-left: 6px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.roi-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
}

.roi-card.danger .roi-badge {
    background: #f43f5e;
    color: white;
}

.roi-card.success .roi-badge {
    background: #10b981;
    color: white;
}

.roi-list {
    list-style: none;
    margin-top: 32px;
}

.roi-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.roi-list li i {
    margin-top: 5px;
}

.magic-quote {
    margin-top: 40px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border);
    text-align: center;
}

.magic-quote h4 {
    color: var(--primary-light);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Animations update */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn-base {
        width: 100%;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
        height: 350px;
    }

    .browser-ui {
        transform: none !important;
        margin-top: 40px;
    }

    .floating-badge {
        font-size: 0.7rem;
        padding: 10px 16px;
        white-space: nowrap;
    }

    .fb-1 {
        left: 5%;
        top: -15px;
    }

    .fb-2 {
        right: 5%;
        bottom: -15px;
    }

    .nav-toggle {
        display: block;
        padding: 5px;
        border: none;
        background: none;
        color: white;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -110%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 120px 40px 40px;
        gap: 20px;
        display: flex;
        z-index: 1001;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

/* Responsive Utility */
.d-desktop-only {
    display: none;
}

@media (min-width: 1024px) {
    .d-desktop-only {
        display: flex;
    }
}

.nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-mobile-login {
    background: var(--gradient-premium);
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px var(--primary-glow);
}

/* Sector Cards */
.sector-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary) !important;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.sector-card i {
    transition: transform 0.3s ease;
}

.sector-card:hover i {
    transform: scale(1.1);
}

@media (min-width: 1024px) {
    .nav-mobile-actions {
        display: none;
    }
}

/* Responsive Layouts */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -110%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 120px 40px 40px;
        gap: 20px;
        display: flex;
        z-index: 1001;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.8);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.25rem;
        font-weight: 700;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: white;
        width: 100%;
    }

    .nav-toggle {
        display: block;
        z-index: 1002;
    }
}

/* --- NEW SAAS SECTIONS --- */
.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    transition: 0.3s;
    height: 100%;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: var(--gradient-premium);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    box-shadow: 0 5px 15px var(--primary-glow);
}

.step-card h4 {
    margin-top: 10px;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
}

.workflow-visual {
    margin-top: 80px;
    text-align: center;
}

.workflow-node {
    display: inline-block;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid var(--border);
    margin: 10px;
    font-weight: 700;
    color: var(--text-muted);
}

.workflow-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 0 10px;
    opacity: 0.5;
}

.demo-pill {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-left: 10px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

@media (max-width: 991px) {

    .col-md-3,
    .col-lg-4,
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

.creds-box {
    transition: transform 0.3s;
}

.creds-box:hover {
    transform: translateY(-5px);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.toggle-label {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.toggle-label.active {
    color: white;
}

.switch {
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
}

.switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: var(--gradient-premium);
    border-radius: 50%;
    transition: 0.3s;
}

.switch.active::after {
    left: 32px;
}

.discount-badge {
    background: #10b981;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 900;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-right: 5px;
    margin-bottom: 5px;
}