/* ==========================================================================
   PiDuty Design System & Style Sheets - Ascent24 Technologies
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --color-primary: #f59e0b;
    /* Solar Amber */
    --color-primary-hover: #d97706;
    /* Deep Amber */
    --color-secondary: #0d9488;
    /* Solar Teal / Green O&M */
    --color-secondary-light: #f0fdfa;
    --color-bg-dark: #0b0f19;
    /* Deep Slate Blue */
    --color-bg-dark-card: #111827;
    /* Dark Gray Card */
    --color-text-dark: #1e293b;
    /* Main text */
    --color-text-muted: #64748b;
    /* Subtext */
    --color-text-light: #f8fafc;
    /* White Text */
    --color-bg-light: #ffffff;
    /* Main Page White */
    --color-bg-alt: #f8fafc;
    /* Alternate Light Sections */
    --color-border: #e2e8f0;
    /* Subtle Border Light */
    --color-border-dark: #1f2937;
    /* Subtle Border Dark */
    --color-success: #10b981;
    /* Success Green */
    --color-danger: #ef4444;
    /* Alert/Danger Red */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadow / Glassmorphism */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 25px 50px -12px rgba(245, 158, 11, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-blur: blur(12px);

    /* Spacing & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-bg-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

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

.flex {
    display: flex;
}

.grid {
    display: grid;
}

/* Badges & Tags */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--color-primary-hover);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-dark {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text-dark);
}

.btn-secondary:hover {
    background-color: var(--color-bg-alt);
    border-color: var(--color-text-muted);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--color-bg-dark) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background-color: var(--color-bg-dark);
    color: white;
}

.btn-dark:hover {
    background-color: #1e293b;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header-wrap {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(-20px);
    animation: headerSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes headerSlideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    max-width: 1400px;
    width: 100%;
    height: 88px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sticky on Scroll states */
.header-wrap.scrolled {
    top: 12px;
}

.header-wrap.scrolled .header {
    height: 72px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
}

.logo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.logo-dot {
    color: #F59E0B;
    /* Accent Orange */
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: #6B7280;
    /* Secondary text */
    font-size: 0.9375rem;
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #111827;
    /* Primary text */
}

/* Expanding Underline from Center */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #F59E0B;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

/* Solutions Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 0.125rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    width: 560px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.02);
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1010;
}

.nav-item.dropdown:hover .dropdown-menu {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dropdown-item {
    display: flex;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.dropdown-item:hover {
    background-color: #F9FAFB;
    transform: translateY(-1px);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.dropdown-item-icon.color-amber {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.dropdown-item-icon.color-teal {
    background: rgba(13, 148, 136, 0.1);
    color: #0D9488;
}

.dropdown-item-icon.color-blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.dropdown-item-icon.color-orange {
    background: rgba(234, 88, 12, 0.1);
    color: #EA580C;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-item-title {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: #6B7280;
    line-height: 1.4;
}

/* Actions Section & Redesigned CTA Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-demo {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #111827;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-demo i {
    font-size: 0.875rem;
    color: #6B7280;
    transition: color 0.3s ease;
}

.btn-demo:hover {
    border-color: rgba(0, 0, 0, 0.15);
    background: #FAFAFA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-demo:hover i {
    color: #111827;
}

.btn-trial {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #ffffff;
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
    cursor: pointer;
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.35), 0 0 12px rgba(245, 158, 11, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #111827;
}

/* Mobile Responsive Navigation */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .header {
        padding: 0 20px;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 12px;
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.05rem;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-link::after {
        display: none;
    }

    /* Premium Bulletproof Mobile Dropdown Navigation Styles */
    .nav-item.dropdown .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        border: none !important;
        padding: 12px 0 8px 16px !important; /* Nice indent to show nesting */
        background: transparent !important;
        display: none;
        left: auto !important;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .dropdown-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 10px 12px !important;
        border-radius: 12px !important;
        width: 100% !important;
        background: rgba(0, 0, 0, 0.02) !important; /* Subtle background card */
        margin: 0 !important;
        text-align: left !important;
    }

    .dropdown-item-icon {
        width: 36px !important;
        height: 36px !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
    }

    .dropdown-item-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        text-align: left !important;
    }

    .dropdown-item-title {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        color: #111827 !important;
    }

    .dropdown-item-desc {
        font-size: 0.75rem !important;
        color: #6b7280 !important;
        line-height: 1.35 !important;
    }

    .nav-actions {
        display: none;
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 8px;
    }

    .mobile-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px !important;
        font-size: 0.95rem !important;
        border-radius: 14px !important;
    }
}

/* Page backdrop blur when mobile nav drawer is open */
body.nav-active::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 15, 25, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998; /* Renders perfectly behind header-wrap at 1000 */
    animation: fadeIn 0.3s ease;
}

@media (min-width: 1025px) {
    .mobile-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-wrap {
        padding: 0 12px;
        top: 12px;
    }

    .header-wrap.scrolled {
        top: 8px;
    }

    .header {
        height: 72px;
        padding: 0 16px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-svg {
        width: 28px;
        height: 28px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
    /* Space for absolute trust-bar */
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
    overflow: hidden;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.hero-title {
    font-size: 3.65rem;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--color-bg-dark);
    font-family: var(--font-heading);
}

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

.hero-lead {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Trust Indicators below CTAs */
.hero-trust-indicators {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.trust-indicator-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 12px 18px;
    flex: 1;
    min-width: 170px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.01), 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-indicator-card:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 15px 35px -10px rgba(16, 185, 129, 0.06), 0 2px 5px rgba(0, 0, 0, 0.02);
}

.tic-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    color: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trust-indicator-card:hover .tic-icon {
    background: rgba(34, 197, 94, 0.12);
    transform: scale(1.05);
}

.tic-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.tic-sub {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: capitalize;
    font-weight: 500;
}

.tic-val {
    font-size: 1.125rem;
    font-weight: 800;
    color: #22C55E;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.tic-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    font-family: var(--font-heading);
}

/* Background Glows (Massive, Soft, and Premium Neon Bloom) */
.glow-orange {
    position: absolute;
    top: -15%;
    right: 15%;
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.04) 55%, transparent 80%);
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

.glow-green {
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.14) 0%, rgba(34, 197, 94, 0.03) 55%, transparent 80%);
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
}

/* Dotted Orbital Paths */
.orbit-path {
    position: absolute;
    border: 1.5px dashed rgba(0, 0, 0, 0.07);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.orbit-path-1 {
    width: 620px;
    height: 420px;
}

/* Floating Glass Orbiting Icons */
.orbit-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 5;
    transform: translate(-50%, -50%);
    animation: floatIcon 5s ease-in-out infinite;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-8px) scale(1.03);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
    }
}

/* Give each icon a different animation delay for a dynamic floating feel */
.orbit-icon:nth-child(1) {
    animation-delay: 0s;
}

.orbit-icon:nth-child(2) {
    animation-delay: 0.8s;
}

.orbit-icon:nth-child(3) {
    animation-delay: 1.6s;
}

.orbit-icon:nth-child(4) {
    animation-delay: 2.4s;
}

.orbit-icon:nth-child(5) {
    animation-delay: 3.2s;
}

.orbit-icon:nth-child(6) {
    animation-delay: 4s;
}

.orbit-icon:nth-child(7) {
    animation-delay: 4.8s;
}

/* Perfect pixel positioning matching the reference screenshot */
.orbit-icon.icon-solar {
    top: calc(50% - 215px);
    left: calc(50% + 65px);
    color: #F59E0B;
}

.orbit-icon.icon-phone {
    top: calc(50% - 75px);
    left: calc(50% - 235px);
    color: #8B5CF6;
    /* Purple mobile */
}

.orbit-icon.icon-qr {
    top: calc(50% + 145px);
    left: calc(50% - 145px);
    color: #2563EB;
    /* Blue QR */
}

.orbit-icon.icon-technician {
    top: calc(50% + 190px);
    left: calc(50% + 105px);
    color: #10B981;
    /* Green tech */
}

.orbit-icon.icon-location-pin {
    top: calc(50% + 125px);
    left: calc(50% + 245px);
    color: #8B5CF6;
    /* Purple pin */
}

.orbit-icon.icon-location-dot {
    top: calc(50% - 15px);
    left: calc(50% + 280px);
    color: #8B5CF6;
    /* Purple dot */
}

.orbit-icon.icon-warranty {
    top: calc(50% - 135px);
    left: calc(50% + 225px);
    color: #10B981;
    /* Green shield */
}

@media (max-width: 1200px) {

    .orbit-path,
    .orbit-icon {
        display: none;
        /* Hide orbital paths on medium viewports to save space */
    }
}

@media (max-width: 576px) {
    .hero {
        align-items: flex-start;
        padding-top: 115px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-lead {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-ctas .btn {
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    .hero {
        align-items: flex-start;
        padding-top: 105px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 2.45rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-lead {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.0rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .badge {
        margin-bottom: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-trust-indicators {
        margin-top: 6rem; /* Increased to completely push below the fold */
        gap: 1rem;
    }

    .trust-indicator-card {
        padding: 12px 18px;
        min-width: 160px;
    }

    /* Trust Section Mobile Overrides */
    .trust-section-layout h2 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }

    .trust-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trust-stat-item {
        padding: 1.25rem;
    }
}

@media (max-width: 992px) {
    .hero-ctas {
        justify-content: center;
    }
}

/* Interactive Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-window {
    background-color: var(--color-bg-dark);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl), var(--shadow-premium);
    border: 1px solid var(--color-border-dark);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 480px;
    text-align: left;
}

.window-header {
    background-color: #1f2937;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-border-dark);
}

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

.dot-red {
    background-color: #ef4444;
}

.dot-yellow {
    background-color: #f59e0b;
}

.dot-green {
    background-color: #10b981;
}

.window-title {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    margin-left: auto;
    margin-right: auto;
    font-family: monospace;
}

.dashboard-nav {
    display: flex;
    background-color: #111827;
    border-bottom: 1px solid var(--color-border-dark);
    overflow-x: auto;
}

.dash-tab {
    padding: 0.75rem 1.25rem;
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.dash-tab.active {
    color: var(--color-primary);
    background-color: rgba(245, 158, 11, 0.05);
    border-bottom-color: var(--color-primary);
}

.dash-tab:hover:not(.active) {
    color: var(--color-text-light);
}

.dashboard-body {
    flex-grow: 1;
    padding: 1.5rem;
    color: var(--color-text-light);
    overflow-y: auto;
}

.dash-view {
    display: none;
}

.dash-view.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dashboard Mockups Components */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.stat-card {
    background-color: #1f2937;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
}

.stat-card .label {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.stat-card .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.stat-card .trend {
    font-size: 0.75rem;
    color: var(--color-success);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #1f2937;
    border-radius: var(--border-radius-sm);
    margin-bottom: 0.5rem;
    border-left: 3px solid var(--color-primary);
}

.ticket-row.green {
    border-left-color: var(--color-success);
}

.ticket-row.red {
    border-left-color: var(--color-danger);
}

.ticket-info {
    display: flex;
    flex-direction: column;
}

.ticket-info .title {
    font-weight: 600;
    font-size: 0.875rem;
}

.ticket-info .desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.ticket-status {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
}

.status-pending {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--color-primary);
}

.status-assigned {
    background-color: rgba(13, 148, 136, 0.2);
    color: var(--color-secondary);
}

.status-closed {
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--color-success);
}

/* QR Simulator */
.qr-scanner-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.qr-box-sim {
    position: relative;
    width: 140px;
    height: 140px;
    border: 3px solid var(--color-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
}

.qr-line-sim {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    top: 0;
    animation: scanQr 2s linear infinite;
    box-shadow: 0 0 8px var(--color-primary);
}

@keyframes scanQr {
    0% {
        top: 0%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 0%;
    }
}

/* Mobile Phone Frame for Technician app view */
.phone-mockup {
    width: 240px;
    height: 380px;
    background-color: #0b0f19;
    border: 8px solid #1f2937;
    border-radius: 36px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 14px;
    background-color: #1f2937;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #f8fafc;
    color: var(--color-text-dark);
    padding: 1.5rem 0.75rem 0.75rem;
    font-size: 0.75rem;
    overflow-y: auto;
}

/* Trust Bar */
.trust-bar {
    padding: 2.5rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg-alt);
}

.trust-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.9375rem;
}

.trust-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Problem Section & Before/After */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.pain-points-list {
    list-style: none;
    margin-top: 2rem;
}

.pain-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.pain-point-item i {
    color: var(--color-danger);
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

/* Interactive Slider */
.comparison-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    transition: opacity 0.5s ease-in-out;
}

.panel-before {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #991b1b;
}

.panel-after {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
}

.panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-weight: 500;
}

.comparison-slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--color-border);
    background-color: white;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
}

.slider-btn.active {
    background-color: var(--color-bg-dark);
    color: white;
    border-color: var(--color-bg-dark);
}

/* Features Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-premium);
    border-color: rgba(245, 158, 11, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--border-radius-md);
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--color-primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card.secondary-accent .feature-icon {
    background-color: rgba(13, 148, 136, 0.1);
    color: var(--color-secondary);
}

.feature-card.secondary-accent::before {
    background-color: var(--color-secondary);
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.feature-bullets {
    list-style: none;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-bullets li i {
    color: var(--color-success);
    font-size: 1rem;
}

/* QR Code Section */
.qr-showcase {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border-radius: var(--border-radius-lg);
    padding: 5rem 3rem;
    margin: 4rem auto;
}

.qr-showcase h2,
.qr-showcase h3 {
    color: white;
}

.qr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .qr-showcase {
        padding: 3rem 1.5rem;
    }

    .qr-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.qr-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qr-step {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-dark);
    padding: 1.25rem;
    border-radius: var(--border-radius-md);
    display: flex;
    gap: 1.25rem;
    align-items: center;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.qr-step:hover,
.qr-step.active {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
}

.qr-step-num {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.qr-step.active .qr-step-num {
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
}

.qr-step-info h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.qr-step-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.qr-interactive-simulation {
    background-color: #111827;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

/* Mobile App Section */
.app-section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .app-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

.app-tab-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .app-tab-nav {
        justify-content: center;
    }
}

.app-tab-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    background-color: white;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.app-tab-btn.active {
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
    border-color: var(--color-primary);
}

.app-features-list {
    list-style: none;
    text-align: left;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.app-features-list li i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.app-store-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .app-store-badges {
        justify-content: center;
    }
}

.app-badge-img {
    height: 40px;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.app-badge-img:hover {
    opacity: 1;
}

/* Workflow Section Journey (Premium Horizontal Scroll Track) */
.journey-container {
    margin-top: 3.5rem;
    position: relative;
    max-width: 1440px;
    /* Slightly wider to accommodate side gutters */
    margin-left: auto;
    margin-right: auto;
    padding: 0 60px;
    /* Dedicated gutter on both sides to prevent buttons from overlapping cards */
}

.journey-scroll-wrapper {
    overflow-x: auto;
    scrollbar-width: none;
    /* Hide scrollbar for premium look */
    -ms-overflow-style: none;
    position: relative;
    padding: 3.5rem 1.5rem;
    /* Ample vertical padding so floating active card scale and shadows are never cropped */
    width: 100%;
}

.journey-scroll-wrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari */
}

.journey-line {
    position: absolute;
    top: 80px;
    /* Centered with the top circles inside padded container */
    left: 154px;
    /* Center of card 1 */
    right: 154px;
    /* Center of last card */
    height: 4px;
    background-color: rgba(226, 232, 240, 0.8);
    z-index: 1;
    /* Sits behind the cards */
}

.journey-progress {
    position: absolute;
    top: 80px;
    left: 154px;
    width: 0px;
    height: 4px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    z-index: 2;
    /* Sits behind the cards but in front of background line */
    transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Elastic overshoot snap */
}

.journey-steps {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    /* Ensure container expands to prevent card squishing */
    position: relative;
    z-index: 3;
    /* Sits in front of the lines */
}

.journey-card {
    background: #ffffff;
    /* Solid opaque white to completely block the background line */
    border: 1.5px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2.25rem 1.5rem 2rem 1.5rem;
    width: 280px;
    /* Fixed card width so it NEVER squishes */
    min-width: 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 4;
    /* Sits in front of the lines */
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.95);
    cursor: pointer;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.03);
}

/* Apply opacity to card contents instead of the card itself, so the background remains fully opaque */
.journey-card>* {
    opacity: 0.45;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.journey-card.completed {
    transform: scale(1);
    border-color: rgba(13, 148, 136, 0.25);
    box-shadow: 0 10px 25px -10px rgba(13, 148, 136, 0.08);
}

.journey-card.completed>* {
    opacity: 0.85;
}

.journey-card.active {
    transform: scale(1.06) translateY(-8px);
    /* Float active card higher */
    border-color: var(--color-primary);
    box-shadow:
        0 30px 60px -15px rgba(245, 158, 11, 0.22),
        0 4px 20px -4px rgba(245, 158, 11, 0.1);
    z-index: 10;
    /* Pops on top of everything when active */
}

.journey-card.active>* {
    opacity: 1;
}

.journey-circle {
    position: relative;
    z-index: 5;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: white;
    border: 3px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.journey-card.active .journey-circle {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
    animation: activeCirclePulse 2s infinite ease-in-out;
}

@keyframes activeCirclePulse {

    0%,
    100% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1.23);
        box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
    }
}

.journey-card.completed .journey-circle {
    border-color: var(--color-secondary);
    background-color: var(--color-secondary);
    color: white;
}

.journey-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    /* Highly legible */
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s;
}

.journey-card.active .journey-card-title {
    color: var(--color-primary-hover);
}

.journey-card.completed .journey-card-title {
    color: var(--color-secondary);
}

.journey-card-desc {
    font-size: 0.82rem;
    /* Clean and spacious reading size */
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Floating Navigation Buttons (Positioned securely inside dedicated gutters) */
.journey-nav-btn {
    position: absolute;
    top: calc(50% - 22px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-nav-btn:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.journey-nav-btn.btn-prev {
    left: 8px;
}

/* Set inside left gutter */
.journey-nav-btn.btn-next {
    right: 8px;
}

/* Set inside right gutter */

@media (max-width: 1200px) {
    .journey-nav-btn.btn-prev {
        left: 8px;
    }

    .journey-nav-btn.btn-next {
        right: 8px;
    }
}

@media (max-width: 768px) {
    .journey-container {
        padding: 0 1.25rem; /* Reset wide desktop gutters */
    }

    .journey-nav-btn {
        display: none;
    }

    /* Scroll swipe suffices on mobile */
    .journey-line,
    .journey-progress {
        display: none;
    }

    .journey-scroll-wrapper {
        overflow: hidden; /* Prevent horizontal overflow */
        padding: 1rem 0;
    }

    .journey-steps {
        flex-direction: column;
        gap: 1.25rem;
        width: 100%;
    }

    /* CSS Grid layout on mobile to align circle on the left, and text stacked on the right */
    .journey-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: auto 1fr;
        grid-template-areas: 
            "circle title"
            "circle desc";
        gap: 0.25rem 1.25rem;
        align-items: center;
        text-align: left;
        padding: 1.5rem !important;
        opacity: 1 !important;
        transform: none !important;
        background: #ffffff !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    /* Ensure card contents on mobile are fully visible and readable */
    .journey-card > * {
        opacity: 1 !important;
    }

    .journey-circle {
        grid-area: circle;
        margin-bottom: 0 !important;
        flex-shrink: 0;
        align-self: center;
    }

    .journey-card-title {
        grid-area: title;
        margin-bottom: 0 !important;
        font-size: 1.05rem;
    }

    .journey-card-desc {
        grid-area: desc;
        font-size: 0.82rem;
        line-height: 1.4;
        margin: 0;
    }
}

/* AI Section Card */
.ai-section {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95)),
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 40%);
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .ai-section {
        padding: 3rem 1.5rem;
    }

    .ai-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.ai-heading {
    color: #ffffff !important;
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.ai-desc {
    color: #cbd5e1 !important;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.ai-bullets {
    list-style: none;
    margin-top: 2rem;
}

.ai-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.ai-bullets li i {
    color: var(--color-primary);
    background: rgba(245, 158, 11, 0.12);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: 0.15rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.08);
}

.ai-bullets li span strong {
    color: #ffffff;
}

/* Redesigned Premium Simulation Widget */
.ai-simulation-widget {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.ai-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1rem;
}

.ai-terminal-dots {
    display: flex;
    gap: 0.4rem;
}

.ai-terminal-dots .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
}

.dot-red {
    background-color: #ef4444;
}

.dot-yellow {
    background-color: #eab308;
}

.dot-green {
    background-color: #22c55e;
}

.widget-title-ai {
    font-size: 0.825rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.widget-title-ai i {
    color: var(--color-primary);
}

.ai-ticket-analyzer {
    background-color: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.analyzer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
    animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 0 0 14px #38bdf8;
    }
}

.status-text {
    font-size: 0.75rem;
    font-family: var(--font-mono, monospace);
    color: #38bdf8;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.ticket-quote {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5;
    font-style: italic;
    border-left: 3px solid var(--color-primary);
    padding-left: 0.75rem;
}

.ai-suggestion-card {
    background-color: rgba(16, 185, 129, 0.06);
    border: 1.5px solid rgba(16, 185, 129, 0.35);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 8px 20px -8px rgba(16, 185, 129, 0.15);
    transition: border-color 0.3s ease;
}

.ai-suggestion-card:hover {
    border-color: rgba(16, 185, 129, 0.6);
}

.suggestion-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.suggestion-text {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.5;
    font-weight: 500;
}

/* Industries Cards */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.industry-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--transition-fast);
}

.industry-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-md);
}

.industry-card i {
    font-size: 2.25rem;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
}

.industry-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.industry-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* bestERP Ecosystem Section */
.erp-card {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.erp-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--color-bg-dark);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius-full);
}

.erp-integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.erp-module-item {
    background-color: white;
    border: 1px solid var(--color-border);
    padding: 1.5rem 1rem;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
}

.erp-module-item i {
    font-size: 1.75rem;
    color: var(--color-text-muted);
}

.erp-module-item.active-piduty {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.erp-module-item.active-piduty i {
    color: var(--color-primary);
}

.erp-module-item:hover:not(.active-piduty) {
    transform: translateY(-2px);
    border-color: var(--color-text-muted);
}

/* Pricing Grid */
.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-smooth);
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl), var(--shadow-premium);
    transform: translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.price-box {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-bg-dark);
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-bg-dark);
    letter-spacing: -0.02em;
}

.price-period {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.pricing-features li i {
    color: var(--color-success);
}

.pricing-features li.disabled {
    color: var(--color-text-muted);
    text-decoration: line-through;
    opacity: 0.6;
}

.pricing-features li.disabled i {
    color: var(--color-text-muted);
}

.pricing-card .btn {
    width: 100%;
}

/* Trust Section (Ascent24 Technologies) */
.trust-section-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .trust-section-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .trust-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .trust-stat-item {
        padding: 1.25rem;
    }

    /* bestERP Ecosystem Mobile Styles */
    .erp-card {
        padding: 2.5rem 1.25rem;
    }
    .erp-tag {
        position: static !important;
        display: inline-block !important;
        margin-bottom: 0.75rem !important;
    }
    .erp-integration-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }
    .erp-module-item {
        padding: 1rem 0.5rem;
    }

    /* Fix Hero and Trust Bar Overlap */
    .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        height: auto !important;
        min-height: 100vh !important;
    }
    .hero .trust-bar {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-top: 4rem !important;
        padding: 1.5rem 0 !important;
        width: 100% !important;
    }
}

.trust-stat-item {
    background-color: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.trust-stat-item h4 {
    font-size: 2.5rem;
    color: var(--color-primary-hover);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-stat-item p {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

/* FAQ Accordion Section */
.faq-grid {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: white;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--color-bg-dark);
    cursor: pointer;
}

.faq-question i {
    transition: transform var(--transition-fast);
    color: var(--color-text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding: 0 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.25rem 1.5rem;
    border-top-color: var(--color-border);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-primary);
}

/* Contact Section & Forms */
.contact-card {
    background: linear-gradient(135deg, var(--color-bg-dark), #1e293b);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #cbd5e1;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.contact-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .contact-card {
        padding: 3rem 1.5rem;
    }

    .contact-card h2 {
        font-size: 2rem;
    }

    .contact-ctas {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-ctas .btn {
        width: 100%;
    }
}

/* Footer styling */
.footer {
    background-color: var(--color-bg-dark);
    color: #94a3b8;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--color-border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-about p {
    font-size: 0.875rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--color-border-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

/* Sticky Mobile Bottom Bar */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    border-top: 1px solid var(--color-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 0.75rem 1rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.sticky-mobile-cta .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    flex: 1;
    margin: 0 0.25rem;
}

@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }

    /* Add extra padding at bottom of body so the sticky bar doesn't overlap content */
    body {
        padding-bottom: 6.5rem;
    }
}

/* Section Headings */
.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

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

/* Form Modals (Simulated Lead capture modal) */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.25s ease-out;
}

.modal-backdrop.active {
    display: flex;
}

.modal-window {
    background-color: white;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 480px;
    padding: 2.5rem;
    position: relative;
    animation: scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.modal-close-btn:hover {
    color: var(--color-bg-dark);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-desc {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-alt);
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.modal-window .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Scroll reveals */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   NEW SECTION STYLES — PiDuty 2.0 Redesign
   ========================================================================== */

/* ── Hero Cards ──────────────────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    perspective: 1000px;
}

.hero-mockup-img {
    max-width: 118%;
    width: 118%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.09));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mockup-wrapper:hover .hero-mockup-img {
    transform: translateY(-6px) rotateX(2deg) rotateY(-2deg);
}

@media (max-width: 992px) {
    .hero-mockup-img {
        max-width: 100%;
        width: 100%;
        margin-top: 2rem;
    }
}

/* Metrics Dashboard Section (Premium Contrast Neumorphism) */
.metrics-section {
    background-color: #F4F2EC;
    /* Warm Solar Cream background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.02);
}

.metrics-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

@media (max-width: 1024px) {
    .metrics-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .metrics-cards-grid {
        grid-template-columns: 1fr;
    }
}

.hero-cards-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    will-change: transform;
    transition: transform 0.1s linear;
}

.hero-dash-card {
    background: #ffffff;
    /* White card for premium contrast */
    border: 1.5px solid rgba(245, 158, 11, 0.35);
    /* Beautiful gold/orange border on all cards */
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    /* High-fidelity Beveled Neumorphic shadows (outer extrusion + inner bevel) */
    box-shadow:
        6px 6px 18px #dfdcd3,
        -6px -6px 18px #ffffff,
        inset 3px 3px 6px #ffffff,
        inset -3px -3px 6px #dfdcd3;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Floating keyframes — each card gets unique vertical drift */
.hdc-1 {
    animation: floatA 5s ease-in-out infinite;
}

.hdc-2 {
    animation: floatB 6s ease-in-out infinite 0.8s;
}

.hdc-3 {
    animation: floatC 5.5s ease-in-out infinite 1.6s;
}

.hdc-4 {
    animation: floatD 4.5s ease-in-out infinite 2.4s;
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes floatC {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatD {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-dash-card.active {
    border-color: rgba(245, 158, 11, 0.7);
    /* More vibrant border on active state */
    background: #ffffff;
    /* Pressed/Sunken Neumorphic Shadow for Active state */
    box-shadow:
        inset 6px 6px 14px #dfdcd3,
        inset -6px -6px 14px #ffffff;
    z-index: 2;
}

.hdc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.hdc-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hdc-icon--amber {
    background: rgba(245, 158, 11, 0.12);
    color: var(--color-primary-hover);
}

.hdc-icon--teal {
    background: rgba(13, 148, 136, 0.12);
    color: var(--color-secondary);
}

.hdc-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.hdc-badge--red {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.hdc-badge--amber {
    background: rgba(245, 158, 11, 0.12);
    color: var(--color-primary-hover);
}

.hdc-badge--green {
    background: rgba(16, 185, 129, 0.12);
    color: var(--color-success);
}

.hdc-badge--teal {
    background: rgba(13, 148, 136, 0.12);
    color: var(--color-secondary);
}

.hdc-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.hdc-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-bg-dark);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.hdc-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

.hdc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulseDot 2s infinite;
}

.hdc-dot--red {
    background: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
}

.hdc-dot--amber {
    background: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
}

.hdc-dot--green {
    background: var(--color-success);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 currentColor;
    }

    70% {
        box-shadow: 0 0 0 6px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.hdc-sparkline {
    height: 28px;
}

.hdc-sparkline svg {
    width: 100%;
    height: 100%;
}

.hdc-progress-wrap {
    height: 6px;
    background: var(--color-bg-alt);
    border-radius: 999px;
    overflow: hidden;
}

.hdc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    border-radius: 999px;
    transition: width 0.6s ease;
}

.hdc-map-dots {
    position: relative;
    height: 60px;
    margin-top: 0.25rem;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
    animation: mapPulse 2.5s infinite;
}

.map-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.map-dot:nth-child(3) {
    animation-delay: 1s;
}

.map-dot:nth-child(4) {
    animation-delay: 1.5s;
}

.map-dot:nth-child(5) {
    animation-delay: 2s;
}

@keyframes mapPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.8);
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .hero-cards-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .hdc-value {
        font-size: 1.25rem;
    }

    .hero-dash-card {
        padding: 1rem;
    }
}

/* ── Problem Timeline ─────────────────────────────────────────────────────── */
.timeline-comparison {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-header-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    margin-bottom: 2rem;
}

.timeline-col-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-col-label--left {
    color: var(--color-danger);
    justify-content: flex-end;
    text-align: right;
}

.timeline-col-label--right {
    color: var(--color-secondary);
}

.timeline-center-col {
    display: flex;
    justify-content: center;
}

.timeline-spine {
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-primary), var(--color-secondary), transparent);
    flex: 1;
}

.timeline-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    margin-bottom: 2rem;
    align-items: stretch;
}

/* Challenge card */
.challenge-card,
.solution-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    border: 1px solid var(--color-border);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.tl-fade-left {
    transform: translateX(-30px);
}

.tl-fade-right {
    transform: translateX(30px);
}

.challenge-card.visible,
.solution-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.challenge-card {
    border-left: 4px solid var(--color-danger);
}

.solution-card {
    border-left: 4px solid var(--color-secondary);
}

.challenge-card:hover {
    box-shadow: var(--shadow-md);
}

.solution-card:hover {
    box-shadow: var(--shadow-md);
}

.challenge-icon,
.solution-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.challenge-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.solution-icon {
    background: rgba(13, 148, 136, 0.1);
    color: var(--color-secondary);
}

.challenge-card h4,
.solution-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.challenge-card p,
.solution-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Timeline Node */
.timeline-node-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.tl-node-ring {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2), 0 0 0 8px rgba(245, 158, 11, 0.08);
    transition: all 0.4s ease;
}

.timeline-row.visible .tl-node-ring {
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3), 0 0 0 8px rgba(245, 158, 11, 0.12);
    animation: glowRing 2s ease-in-out infinite;
}

@keyframes glowRing {

    0%,
    100% {
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.4), 0 0 20px rgba(245, 158, 11, 0.2);
    }
}

.tl-glow-line {
    width: 2px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    opacity: 0.3;
}

@media (max-width: 768px) {
    .timeline-comparison {
        max-width: 100%;
    }

    .timeline-header-row {
        display: none;
    }

    .timeline-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-node-col {
        display: none;
    }

    .tl-fade-left,
    .tl-fade-right {
        transform: translateY(20px);
    }

    .challenge-card.visible,
    .solution-card.visible {
        transform: translateY(0);
    }

    .challenge-card {
        order: 1;
    }

    .solution-card {
        order: 2;
    }
}

/* ── Sticky Feature Scroll (Section 3) ───────────────────────────────────── */
.sticky-feature-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 4rem;
}

.sticky-phone-col {
    position: sticky;
    top: calc(50vh - 290px);
    height: fit-content;
}

.sticky-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.sf-phone {
    width: 280px;
    height: 580px;
    background: #ffffff;
    border: 10px solid #1e293b;
    border-radius: 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.sf-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #1e293b;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.sf-phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg-alt);
    padding: 2.5rem 1rem 1rem;
    overflow: hidden;
    position: relative;
}

.sf-screen-content {
    animation: fadeIn 0.3s ease;
}

.sf-phone-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.2), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

/* Phone screen components */
.sf-app-bar {
    background: var(--color-bg-dark);
    color: white;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sf-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.sf-mini-stat {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
}

.sf-ms-val {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-bg-dark);
}

.sf-ms-lbl {
    font-size: 0.55rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 0.1rem;
}

.sf-list-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.5rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.65rem;
}

.sf-item--green {
    border-left: 3px solid var(--color-success);
}

.sf-item--red {
    border-left: 3px solid var(--color-danger);
}

.sf-list-item i {
    font-size: 0.75rem;
}

.sf-item--green i {
    color: var(--color-success);
}

.sf-item--red i {
    color: var(--color-danger);
}

.sf-li-title {
    font-weight: 700;
    color: var(--color-bg-dark);
}

.sf-li-sub {
    color: var(--color-text-muted);
    font-size: 0.6rem;
}

/* Feature scroll cards */
.feature-scroll-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sticky-feature-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem 2rem 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.45;
    cursor: pointer;
}

.sticky-feature-card.active {
    opacity: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    transform: scale(1.01);
}

.sfc-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-bg-alt);
    border-radius: 999px;
}

.sfc-progress-fill {
    height: 100%;
    width: 0;
    background: var(--color-primary);
    border-radius: 999px;
    transition: width 4s linear;
}

.sticky-feature-card.active .sfc-progress-fill {
    width: 100%;
}

.sfc-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sfc-icon--teal {
    background: rgba(13, 148, 136, 0.1);
    color: var(--color-secondary);
}

.sticky-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.sticky-feature-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.sfc-bullets {
    list-style: none;
}

.sfc-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.sfc-bullets li i {
    color: var(--color-success);
    font-size: 0.875rem;
}

/* Mobile Feature Carousel */
.features-mobile-carousel {
    display: none;
    margin-top: 3rem;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 992px) {
    .sticky-feature-layout {
        display: none;
    }

    .features-mobile-carousel {
        display: block;
    }
}

.fmc-track {
    display: flex;
    gap: 1.25rem;
    width: 100%;
    padding: 1rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.fmc-track::-webkit-scrollbar {
    display: none;
}

.fmc-card {
    min-width: 260px;
    max-width: 260px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 1.75rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.fmc-card h4 {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.5rem;
    font-weight: 700;
    color: var(--color-bg-dark);
}

.fmc-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.fmc-dots {
    display: none !important; /* Automated loop doesn't require dots */
}

/* ── QR Workflow Section (Section 4) ─────────────────────────────────────── */
.workflow-section {
    margin-top: 3rem;
}

.workflow-track {
    position: relative;
    margin-bottom: 3rem;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* The connecting line background */
.workflow-track::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 3px;
    background: var(--color-border);
    z-index: 1;
}

.workflow-progress-line {
    position: absolute;
    top: 2.5rem;
    left: calc(100% / 12);
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    z-index: 2;
    width: 0;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    position: relative;
    z-index: 3;
}

.wf-step-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-sm);
}

.workflow-step.active .wf-step-icon {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-bg-dark);
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15), var(--shadow-md);
}

.workflow-step.completed .wf-step-icon {
    border-color: var(--color-secondary);
    background: var(--color-secondary);
    color: white;
}

.wf-step-connector {
    display: none;
}

.wf-step-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    transition: color 0.3s;
}

.workflow-step.active .wf-step-label {
    color: var(--color-primary-hover);
}

.workflow-step.completed .wf-step-label {
    color: var(--color-secondary);
}

/* Step detail cards */
.workflow-details {
    max-width: 600px;
    margin: 0 auto;
}

.wf-detail {
    display: none;
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
}

.wf-detail.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.wf-detail h4 {
    font-size: 1.375rem;
    color: var(--color-primary-hover);
    margin-bottom: 0.75rem;
}

.wf-detail p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Tablet: 2×3 grid */
@media (max-width: 768px) {

    .workflow-track::before,
    .workflow-progress-line {
        display: none;
    }

    .workflow-steps {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }

    .wf-step-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.1rem;
    }
}

/* Mobile: vertical */
@media (max-width: 480px) {
    .workflow-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .workflow-step {
        display: grid !important;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: 
            "icon label"
            "detail detail";
        gap: 0.75rem 1rem;
        width: 100%;
        background: white;
        border: 1px solid var(--color-border);
        border-radius: var(--border-radius-md);
        padding: 1rem;
        align-items: center;
        cursor: pointer;
    }

    .wf-step-icon {
        grid-area: icon;
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .wf-step-label {
        grid-area: label;
        text-align: left;
        font-size: 0.95rem;
        font-weight: 700;
    }

    /* Nested accordion detail card style */
    .workflow-step .wf-detail {
        grid-area: detail;
        width: 100% !important;
        padding: 0.75rem 0 0 0 !important;
        background: transparent !important;
        border: none !important;
        border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
        border-radius: 0 !important;
        text-align: left !important;
        animation: wfSlideDown 0.3s ease forwards;
        display: none;
    }

    .workflow-step.active .wf-detail {
        display: block !important;
    }

    .workflow-step .wf-detail h4 {
        display: none !important; /* Hide redundant heading inside accordion */
    }

    .workflow-step .wf-detail p {
        font-size: 0.85rem !important;
        line-height: 1.45 !important;
        margin: 0 !important;
    }

    /* Reset default details container on mobile */
    .workflow-details {
        display: none !important;
    }

    /* AI Section & Simulator Widget Mobile Redesign */
    .ai-section {
        padding: 2.5rem 1.15rem !important;
        border-radius: var(--border-radius-md) !important;
    }

    .ai-heading {
        font-size: 1.75rem !important;
        text-align: center;
        margin-bottom: 1rem !important;
    }

    .ai-desc {
        font-size: 0.95rem !important;
        text-align: center;
        margin-bottom: 1.5rem !important;
    }

    .ai-bullets li {
        font-size: 0.95rem !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
    }

    .ai-simulation-widget {
        padding: 1rem !important;
        border-radius: 12px !important;
        background: rgba(30, 41, 59, 0.6) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .ai-widget-header {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 0.75rem !important;
        margin-bottom: 1rem !important;
        padding-bottom: 0.75rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .widget-title-ai {
        font-size: 0.7rem !important;
        letter-spacing: 0.02em !important;
        margin-left: auto !important;
        white-space: nowrap !important;
    }

    .ai-ticket-analyzer {
        padding: 1rem !important;
        margin-bottom: 0.75rem !important;
        border-radius: 8px !important;
    }

    .ticket-quote {
        font-size: 0.85rem !important;
        line-height: 1.45 !important;
    }

    .ai-suggestion-card {
        padding: 1rem !important;
        border-radius: 8px !important;
    }

    .suggestion-text {
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
    }
}

@keyframes wfSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Mobile App Showcase (Section 5) ─────────────────────────────────────── */
.app-showcase-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.app-chips-left,
.app-chips-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-chips-left {
    align-items: flex-end;
}

.app-chips-right {
    align-items: flex-start;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--border-radius-full);
    border: 2px solid var(--color-border);
    background: white;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.feature-chip:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-chip.active {
    border-color: var(--color-primary);
    background: rgba(245, 158, 11, 0.06);
    color: var(--color-primary-hover);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1), var(--shadow-md);
    transform: scale(1.03);
}

.app-showcase-phone-col {
    display: flex;
    justify-content: center;
}

/* Premium phone */
.premium-phone {
    position: relative;
    width: 260px;
}

.pp-frame {
    width: 260px;
    height: 520px;
    background: #ffffff;
    border: 10px solid #1e293b;
    border-radius: 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.pp-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #1e293b;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    z-index: 5;
}

.pp-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg-alt);
    padding: 2.25rem 0.9rem 0.9rem;
    overflow: hidden;
    position: relative;
}

.pp-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.pp-content.active {
    display: block;
}

.pp-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(245, 158, 11, 0.25), transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    animation: ppGlowPulse 3s ease-in-out infinite;
}

@keyframes ppGlowPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Mobile chips */
.app-chips-mobile {
    display: none;
}

@media (max-width: 900px) {
    .app-showcase-wrap {
        grid-template-columns: 1fr;
        justify-items: center;
        margin-bottom: 1.5rem;
    }

    .app-chips-left,
    .app-chips-right {
        display: none;
    }

    .app-chips-mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .app-chips-mobile .feature-chip {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    /* Give the app store badges breathing room so they scroll past the sticky CTA bar */
    .app-store-badges {
        margin-top: 2rem !important;
        margin-bottom: 4rem !important;
    }
}

/* ── Testimonials Carousel (Section 6) ────────────────────────────────────── */
.testimonial-carousel-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    padding: 1rem 0 3rem 0;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    padding: 1.5rem 0;
    will-change: transform;
    animation: testimonialMarquee 40s linear infinite;
    /* Beautiful continuous glide */
}

/* Pause marquee on hover so users can comfortably read testimonials */
.testimonial-carousel-wrap:hover .testimonial-track {
    animation-play-state: paused;
}

@keyframes testimonialMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Seamless wrap at exactly 50% since Set B is an exact clone of Set A */
}

.testimonial-card {
    min-width: 420px;
    max-width: 420px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    opacity: 1;
    /* Fully visible and crisp in marquee */
    transform: none;
    filter: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245, 158, 11, 0.25);
}

/* Hide navigation controls as the continuous marquee is automated */
.tc-nav {
    display: none !important;
}

.tc-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.tc-quote {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tc-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-bg-dark);
}

.tc-company {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 0.1rem;
}

/* Nav buttons & dots */
.tc-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.tc-prev,
.tc-next {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: white;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.tc-prev:hover,
.tc-next:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    border-color: var(--color-primary);
}

.tc-dots {
    display: flex;
    gap: 0.5rem;
}

.tc-dot-item {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all 0.2s;
}

.tc-dot-item.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .testimonial-card {
        min-width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        padding: 1.75rem;
    }

    .tc-quote {
        font-size: 0.9375rem;
    }
}

/* ── ROI Calculator (Section 7) ──────────────────────────────────────────── */
/* Subtle Ambient Lighting Glows */
.roi-glow-ambient {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.08;
    z-index: 1;
}

.roi-glow-left {
    top: 20%;
    left: -150px;
    background-color: var(--color-primary);
    /* orange glow */
}

.roi-glow-right {
    bottom: 20%;
    right: -150px;
    background-color: var(--color-secondary);
    /* green glow */
}

/* Light Dotted Decorative Patterns */
.roi-dot-pattern {
    position: absolute;
    width: 120px;
    height: 240px;
    opacity: 0.2;
    pointer-events: none;
    background-image: radial-gradient(rgba(0, 0, 0, 0.15) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    z-index: 1;
}

.roi-dot-left {
    top: 15%;
    left: 2%;
}

.roi-dot-right {
    bottom: 15%;
    right: 2%;
}

.roi-badge {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.18);
    color: var(--color-primary-hover);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.825rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.03);
}

.roi-main-heading {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-bg-dark);
    margin-top: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.roi-sub-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.roi-container {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(15, 23, 42, 0.12);
    /* Thin, darker border for premium definition */
    border-radius: 32px;
    padding: 3.5rem;
    margin-top: 3.5rem;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.01);
    position: relative;
    z-index: 5;
}

.roi-section-inputs {
    padding-bottom: 3rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.roi-section-outputs {
    margin-bottom: 3rem;
}

.roi-panel-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-bg-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.01em;
}

.roi-panel-title i {
    color: var(--color-primary);
}

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

.roi-input-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.09);
    /* Thin, darker border */
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-input-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow:
        0 15px 30px -10px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    border-color: rgba(245, 158, 11, 0.15);
}

.roi-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-bottom: 1.25rem;
    width: 100%;
}

.roi-label-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roi-label-title i {
    color: var(--color-primary);
}

.roi-val {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-full);
    font-weight: 800;
    font-size: 0.85rem;
    min-width: 2.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.roi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--color-border);
    outline: none;
    transition: background 0.1s ease;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.45);
    transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #ffffff;
}

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

.roi-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.45);
    transition: transform 0.15s ease;
}

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

.roi-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    font-weight: 500;
}

.roi-outputs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.roi-result-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.09);
    /* Thin, darker border */
    padding: 2rem 1.75rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.02);
}

.roi-result-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow:
        0 25px 45px -15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

.roi-result-content {
    position: relative;
    z-index: 3;
}

.roi-result-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.roi-result-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-bg-dark);
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.roi-result-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-top: 0.35rem;
}

.roi-result-sub {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* Sparklines styling */
.roi-sparkline-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 60px;
    pointer-events: none;
    z-index: 1;
}

.roi-sparkline {
    width: 100%;
    height: 100%;
}

.roi-cta-wrap {
    text-align: center;
    margin-top: 1rem;
}

.roi-btn-cta {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 1.15rem 2.5rem;
    border-radius: 16px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    box-shadow:
        0 10px 25px -5px rgba(234, 88, 12, 0.4),
        0 4px 10px rgba(234, 88, 12, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.roi-btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 15px 35px -5px rgba(234, 88, 12, 0.5),
        0 6px 15px rgba(234, 88, 12, 0.2);
}

.roi-btn-cta i {
    transition: transform 0.3s ease;
}

.roi-btn-cta:hover i {
    transform: translateX(4px);
}

.roi-disclaimer {
    font-size: 0.85rem;
    /* Increased size for better readability */
    color: rgba(15, 23, 42, 0.55);
    /* Slightly darker, cleaner gray */
    margin-top: 1.5rem;
    font-style: italic;
}

/* Number flash animation */
@keyframes numFlash {
    0% {
        opacity: 0.3;
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.roi-result-number.updating {
    animation: numFlash 0.25s ease-out;
}

@media (max-width: 992px) {
    .roi-container {
        padding: 2.5rem 1.5rem;
    }

    .roi-inputs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .roi-outputs-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .roi-main-heading {
        font-size: 2.25rem;
    }

    .roi-sparkline-container {
        width: 100px;
        height: 45px;
    }
}

/* Bottom Feature Bar Container */
.trust-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 24px;
    background: transparent;
    border: none;
}

.bottom-feature-bar {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 1.5rem;
}

.bfb-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.bfb-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bfb-icon.color-orange {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.bfb-icon.color-green {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.bfb-icon.color-blue {
    background: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.bfb-icon.color-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.bfb-icon.color-teal {
    background: rgba(13, 148, 136, 0.1);
    color: #0D9488;
}

.bfb-icon.color-amber {
    background: rgba(217, 119, 6, 0.1);
    color: #D97706;
}

.bfb-text {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: #1F2937;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .bottom-feature-bar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .bottom-feature-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .bottom-feature-bar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bfb-item {
        justify-content: flex-start;
    }
}