/* ==========================================
   QUICK FLOW SERVICES — LANDING PAGE CSS
   ========================================== */

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

:root {
    /* Primary Colors */
    --dark-blue: #0a1628;
    --medium-blue: #0f2847;
    --blue: #1a56db;
    --light-blue: #3b82f6;
    --sky-blue: #60a5fa;
    --ice-blue: #93c5fd;
    --pale-blue: #dbeafe;

    /* Silver / Neutral */
    --silver: #c0c6d0;
    --light-silver: #e2e8f0;
    --bright-silver: #f1f5f9;
    --white: #ffffff;
    --dark-silver: #64748b;

    /* Accent - Green (for cleaners) */
    --green: #10b981;
    --light-green: #34d399;
    --dark-green: #059669;

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #1a56db 0%, #60a5fa 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #0f2847 100%);
    --gradient-silver: linear-gradient(135deg, #c0c6d0 0%, #f1f5f9 100%);
    --gradient-green: linear-gradient(135deg, #059669 0%, #34d399 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 86, 219, 0.7) 100%);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1280px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-blue: 0 10px 40px rgba(26, 86, 219, 0.3);
    --shadow-green: 0 10px 40px rgba(16, 185, 129, 0.3);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-blue);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    font-weight: 700;
}

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

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition-base);
}

.navbar.scrolled .logo-img {
    height: 56px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links li a {
    padding: 8px 16px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--sky-blue);
}

.nav-cta {
    background: var(--gradient-blue) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-blue);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 86, 219, 0.5) !important;
    background: linear-gradient(135deg, #2563eb 0%, #7dd3fc 100%) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(15, 40, 71, 0.85) 40%,
        rgba(26, 86, 219, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    color: var(--ice-blue);
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge i {
    color: var(--sky-blue);
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #c0c6d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--sky-blue);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--sky-blue);
    border-radius: 2px;
    animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-secondary);
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(26, 86, 219, 0.5);
}

.btn-green {
    background: var(--gradient-green);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 50px rgba(16, 185, 129, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--sky-blue);
    color: var(--sky-blue);
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-xl {
    padding: 18px 44px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}


/* ========== TRUSTED BY ========== */
.trusted-by {
    background: var(--dark-blue);
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trusted-label {
    text-align: center;
    color: var(--dark-silver);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    font-weight: 500;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--silver);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge i {
    color: var(--sky-blue);
    font-size: 1.1rem;
}


/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 86, 219, 0.08);
    color: var(--blue);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--dark-blue);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--dark-silver);
    font-size: 1.1rem;
    line-height: 1.8;
}


/* ========== FEATURES ========== */
.features {
    padding: var(--section-padding);
    background: var(--bright-silver);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.feature-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.feature-card:hover .feature-card-image img {
    transform: scale(1.08);
}

.feature-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.6) 100%);
}

.feature-card-content {
    padding: 32px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-blue);
}

.feature-icon i {
    color: var(--white);
    font-size: 1.4rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.feature-card p {
    color: var(--dark-silver);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark-blue);
    font-weight: 500;
}

.feature-list li i {
    color: var(--light-blue);
    font-size: 0.8rem;
}


/* ========== INDUSTRY SECTIONS ========== */
.industry-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.industry-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.industry-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.96) 0%,
        rgba(15, 40, 71, 0.92) 50%,
        rgba(26, 86, 219, 0.8) 100%
    );
}

.industry-bg-overlay--light {
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.96) 0%,
        rgba(10, 22, 40, 0.92) 50%,
        rgba(5, 150, 105, 0.7) 100%
    ) !important;
}

.industry-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.industry-content.reverse {
    direction: rtl;
}

.industry-content.reverse > * {
    direction: ltr;
}

.industry-text .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ice-blue);
}

.cleaners-tag {
    color: var(--light-green) !important;
}

.industry-text h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 20px;
}

.industry-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
}

.industry-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.industry-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.industry-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-md);
    background: rgba(26, 86, 219, 0.2);
    border: 1px solid rgba(26, 86, 219, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-feature-icon i {
    color: var(--sky-blue);
    font-size: 1.1rem;
}

.industry-feature-icon.icon-green {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.industry-feature-icon.icon-green i {
    color: var(--light-green);
}

.industry-feature h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.industry-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.industry-image-wrapper {
    position: relative;
}

.industry-showcase-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.floating-card i {
    font-size: 1.4rem;
    color: var(--sky-blue);
}

.fc-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 800;
    color: rgba(14, 13, 13, 0.8);
}

.fc-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(14, 13, 13, 0.8);
    font-weight: 500;
}

.card-appointments {
    bottom: 30px;
    left: -20px;
    animation-delay: 0s;
}

.card-revenue {
    top: 30px;
    right: -20px;
    animation-delay: 1.5s;
}

.card-clients {
    bottom: 30px;
    right: -20px;
    animation-delay: 0.5s;
}

.card-rating {
    top: 30px;
    left: -20px;
    animation-delay: 2s;
}

.card-rating i {
    color: #fbbf24 !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}


/* ========== DASHBOARD ========== */
.dashboard-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.dashboard-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.dashboard-section .section-header h2 {
    color: var(--white);
}

.dashboard-section .section-tag {
    background: rgba(96, 165, 250, 0.15);
    color: var(--sky-blue);
}

.dashboard-section .section-description {
    color: rgba(255, 255, 255, 0.6);
}

.dashboard-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.dashboard-image-wrapper {
    position: relative;
}

.dashboard-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(26, 86, 219, 0.4) 0%, transparent 70%);
    filter: blur(20px);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all var(--transition-base);
}

.metric-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateX(8px);
}

.metric-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon i {
    color: var(--white);
    font-size: 1rem;
}

.metric-card-header h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0;
}

.metric-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}


/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: var(--section-padding);
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 360px;
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--bright-silver);
    position: relative;
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 800;
    background: var(--gradient-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
}

.step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--pale-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 24px;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--blue);
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

.step-card p {
    color: var(--dark-silver);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 90px;
    color: var(--silver);
    font-size: 1.5rem;
    min-width: 50px;
    justify-content: center;
}


/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: var(--section-padding);
    background: var(--bright-silver);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: var(--gradient-dark);
    border-color: rgba(96, 165, 250, 0.2);
    box-shadow: var(--shadow-xl);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-silver);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.2rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-blue);
}

.testimonial-card.featured .testimonial-author strong {
    color: var(--white);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--dark-silver);
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
}


/* ========== PRICING ========== */
.pricing {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-silver);
    transition: var(--transition-base);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--dark-blue);
}

.save-badge {
    background: var(--gradient-green);
    color: var(--white);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 4px;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    display: none;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--silver);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-blue);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: flex-start;
}

.pricing-card {
    background: var(--bright-silver);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    background: var(--gradient-dark);
    border: 2px solid rgba(96, 165, 250, 0.3);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-blue);
    color: var(--white);
    padding: 6px 24px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-blue);
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 4px;
}

.pricing-card.popular .pricing-header h3 {
    color: var(--white);
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--dark-silver);
    margin-bottom: 24px;
}

.pricing-card.popular .pricing-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-amount {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card.popular .pricing-amount {
    border-color: rgba(255, 255, 255, 0.1);
}

.price {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-blue);
}

.pricing-card.popular .price {
    color: var(--white);
}

.price-period {
    font-size: 1rem;
    color: var(--dark-silver);
    font-weight: 500;
}

.pricing-card.popular .price-period {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--dark-blue);
    font-weight: 500;
}

.pricing-card.popular .pricing-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-features li i {
    color: var(--light-blue);
    font-size: 0.8rem;
    min-width: 16px;
}

.pricing-card .btn-outline {
    border-color: var(--silver);
    color: var(--dark-blue);
}

.pricing-card .btn-outline:hover {
    background: var(--gradient-blue);
    border-color: transparent;
    color: var(--white);
}


/* ========== CTA ========== */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-logo {
    height: 80px;
    margin: 0 auto 32px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.cta-guarantee i {
    color: var(--light-green);
}


/* ========== FOOTER ========== */
.footer {
    background: var(--dark-blue);
    padding: 48px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    margin-bottom: 28px;
}

.footer-brand {
    max-width: 480px;
}

.footer-logo {
    height: 56px;
    margin: 0 auto 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.footer-nav a:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.82rem;
}


/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px 0;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .industry-content,
    .industry-content.reverse {
        grid-template-columns: 1fr;
        gap: 36px;
        direction: ltr;
    }

    .dashboard-showcase {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
        gap: 20px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-6px);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        gap: 20px;
    }

    .industry-features {
        gap: 16px;
        margin-bottom: 28px;
    }

    .dashboard-metrics {
        gap: 14px;
    }

    /* Move hamburger menu to 1024px for tablets */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 4px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform var(--transition-base), visibility var(--transition-base);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links li a {
        display: block;
        padding: 12px 16px;
        border-radius: var(--radius-md);
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 48px 0;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo-img {
        height: 48px;
    }

    .navbar.scrolled .logo-img {
        height: 40px;
    }

    /* HERO — Compact mobile layout */
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        gap: 6px;
        margin-bottom: 16px;
        max-width: 100%;
        word-wrap: break-word;
        text-align: center;
    }

    .hero-badge i {
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 28px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stats {
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* TRUST BAR */
    .trusted-by {
        padding: 16px 0;
    }

    .trusted-label {
        font-size: 0.72rem;
        margin-bottom: 12px;
        letter-spacing: 0.1em;
    }

    .trust-badges {
        gap: 16px;
    }

    .trust-badge {
        font-size: 0.78rem;
        gap: 6px;
    }

    .trust-badge i {
        font-size: 0.9rem;
    }

    /* SECTION HEADERS — Compact */
    .section-header {
        margin-bottom: 28px;
    }

    .section-tag {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 12px;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .section-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* FEATURES — Compact cards */
    .feature-card-image {
        height: 180px;
    }

    .feature-card-content {
        padding: 20px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .feature-icon i {
        font-size: 1.1rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.85rem;
        margin-bottom: 14px;
        line-height: 1.6;
    }

    .feature-list li {
        font-size: 0.82rem;
        gap: 8px;
    }

    /* INDUSTRY SECTIONS */
    .industry-text h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .industry-description {
        font-size: 0.9rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .industry-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .industry-feature-icon i {
        font-size: 0.95rem;
    }

    .industry-feature h4 {
        font-size: 0.95rem;
    }

    .industry-feature p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .industry-features {
        gap: 14px;
        margin-bottom: 24px;
    }

    .industry-showcase-img {
        border-radius: var(--radius-md);
    }

    .floating-card {
        display: none;
    }

    /* DASHBOARD */
    .dashboard-showcase {
        gap: 28px;
    }

    .metric-card {
        padding: 16px;
        gap: 12px;
    }

    .metric-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .metric-card h4 {
        font-size: 0.9rem;
    }

    .metric-card-header {
        gap: 12px;
        margin-bottom: 10px;
    }

    .metric-card p {
        font-size: 0.8rem;
    }

    /* HOW IT WORKS */
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .step-card {
        padding: 28px 20px;
    }

    .step-card h3 {
        font-size: 1.05rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
        min-height: 32px;
    }

    .step-icon {
        width: 56px;
        height: 56px;
        margin: 14px auto 16px;
    }

    .step-icon i {
        font-size: 1.4rem;
    }

    /* TESTIMONIALS */
    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 0.88rem;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    /* PRICING */
    .pricing-toggle {
        margin-bottom: 28px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    .price {
        font-size: 2.4rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        gap: 10px;
    }

    .pricing-amount {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .pricing-features {
        gap: 10px;
        margin-bottom: 24px;
    }

    /* CTA */
    .cta-logo {
        height: 56px;
        margin-bottom: 20px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-guarantee {
        font-size: 0.78rem;
    }

    /* FOOTER */
    .footer {
        padding: 36px 0 20px;
    }

    .footer-compact {
        gap: 20px;
        margin-bottom: 20px;
    }

    .footer-logo {
        height: 44px;
    }

    .footer-brand p {
        font-size: 0.82rem;
    }

    .footer-nav {
        gap: 6px 16px;
    }

    .footer-nav a {
        font-size: 0.8rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .industry-text h2 {
        font-size: 1.3rem;
    }

    .feature-card-image {
        height: 150px;
    }

    .feature-card-content {
        padding: 16px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .price {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.3rem;
    }
}
