/* Spandan Cloud - Premium SaaS Website Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
    /* Color Palette derived from Spandan Cloud Logo */
    --navy-900: #07132b;
    --navy-800: #0b1b3d;
    --navy-700: #0f2a4a;
    --navy-600: #14365d;

    --cyan-600: #0084c7;
    --cyan-500: #00a8e8;
    --cyan-400: #38bdf8;
    --cyan-100: #e0f2fe;
    --cyan-50: #f0f9ff;

    --gold-500: #f59e0b;
    --gold-400: #fbbf24;
    --gold-100: #fef3c7;

    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f8fafc;
    --white: #ffffff;

    --success: #10b981;

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

    /* Effects & Elevation */
    --shadow-sm: 0 2px 4px rgba(7, 19, 43, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(7, 19, 43, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(7, 19, 43, 0.12);
    --shadow-cyan: 0 12px 30px -5px rgba(0, 168, 232, 0.35);
    --shadow-gold: 0 12px 30px -5px rgba(245, 158, 11, 0.35);

    --radius-full: 9999px;
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--slate-700);
    background-color: #fbfcfd;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--navy-800);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Header Shared Styles */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--cyan-100);
    color: var(--cyan-600);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 168, 232, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
}

.gradient-text {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--cyan-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Button Component System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    outline: none;
    text-decoration: none;
    position: relative;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan-500) 0%, var(--cyan-600) 100%);
    color: var(--white);
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00b8ff 0%, var(--cyan-500) 100%);
    box-shadow: 0 16px 32px -4px rgba(0, 168, 232, 0.5);
}

.btn-navy {
    background: var(--navy-800);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-navy:hover {
    background: var(--navy-700);
    box-shadow: 0 16px 32px -4px rgba(11, 27, 61, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--navy-800);
    border: 2px solid var(--slate-200);
}

.btn-outline:hover {
    border-color: var(--cyan-500);
    color: var(--cyan-600);
    background: var(--cyan-50);
    box-shadow: 0 10px 25px -4px rgba(0, 168, 232, 0.2);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500) 0%, #d97706 100%);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    box-shadow: 0 16px 35px -5px rgba(245, 158, 11, 0.55);
}

/* Avatar User Profile Login Button */
.btn-avatar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px 4px 6px;
    background: rgba(0, 168, 232, 0.08);
    border: 1.5px solid rgba(0, 168, 232, 0.3);
    border-radius: var(--radius-full);
    color: var(--navy-800);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.btn-avatar:hover {
    background: var(--cyan-500);
    color: var(--white);
    border-color: var(--cyan-500);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px -4px rgba(0, 168, 232, 0.45);
}

.btn-avatar .avatar-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--cyan-500) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 168, 232, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-avatar:hover .avatar-badge {
    background: var(--white);
    color: var(--cyan-600);
    transform: rotate(15deg) scale(1.08);
}

/* Header & Sticky Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.96);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 0 32px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 168, 232, 0.15));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-800);
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--cyan-500);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--slate-700);
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--cyan-500) 0%, var(--cyan-400) 100%);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan-500);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--navy-800);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(7, 19, 43, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 80px 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy-800);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--slate-100);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(0, 168, 232, 0.08) 0%, rgba(240, 249, 255, 0.3) 50%, #fbfcfd 100%);
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy-800);
}

.hero-badge .sparkle {
    color: var(--gold-500);
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--slate-600);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--slate-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-600);
}

.trust-item svg {
    color: var(--success);
}

/* Hero Interactive Mockup */
.hero-mockup-container {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-cyan);
}

.card-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--slate-100);
}

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

.card-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
}

.card-dots span:nth-child(1) {
    background: #ff5f56;
}

.card-dots span:nth-child(2) {
    background: #ffbd2e;
}

.card-dots span:nth-child(3) {
    background: #27c93f;
}

.status-badge-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--success);
    background: #ecfdf5;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.dash-stat-box {
    background: var(--cyan-50);
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--cyan-100);
}

.dash-stat-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    font-weight: 500;
}

.dash-stat-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-800);
}

.sample-tracker-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tracker-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--slate-100);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.patient-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.tag-status {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-ready {
    background: #e0f2fe;
    color: #0284c7;
}

.tag-sent {
    background: #dcfce7;
    color: #15803d;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.badge-icon-gold {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gold-100);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Quick Counter Stats Banner */
.stats-banner {
    background: var(--navy-900);
    color: var(--white);
    padding: 60px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--cyan-400);
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--slate-300);
    font-weight: 500;
}

/* Core SaaS Modules / Features */
.features {
    padding: 100px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--slate-100);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--white);
    border-color: var(--cyan-500);
    box-shadow: var(--shadow-cyan);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--cyan-600) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy-800);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--slate-600);
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-700);
}

.feature-list-item svg {
    color: var(--cyan-500);
}

/* Pathology Tests Catalog Section */
.test-catalog {
    padding: 80px 0;
    background: var(--slate-100);
}

.catalog-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.catalog-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 1px solid var(--slate-300);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--slate-700);
    cursor: pointer;
    transition: var(--transition);
}

.catalog-btn.active,
.catalog-btn:hover {
    background: var(--navy-800);
    color: var(--white);
    border-color: var(--navy-800);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.catalog-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.catalog-card:hover {
    border-color: var(--cyan-500);
    transform: translateY(-2px);
}

.catalog-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--navy-800);
}

.catalog-card p {
    font-size: 0.8rem;
    color: var(--slate-500);
}

/* Interactive Sample Report Showcase */
.report-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.report-controls {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
}

.control-group {
    margin-bottom: 20px;
}

.control-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-300);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--cyan-500);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.15);
}

/* Sample NABL Report Paper Mockup */
.report-paper {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-300);
    position: relative;
}

.report-paper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--navy-800);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.lab-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lab-brand img {
    height: 40px;
}

.report-paper-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy-800);
    text-transform: uppercase;
}

.patient-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: var(--slate-100);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.meta-item span {
    font-weight: 700;
    color: var(--navy-800);
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.report-table th,
.report-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--slate-200);
}

.report-table th {
    background: var(--navy-800);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.val-normal {
    color: var(--success);
    font-weight: 600;
}

.val-high {
    color: #ef4444;
    font-weight: 700;
}

.report-paper-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--slate-200);
}

.qr-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border: 1px dashed var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    text-align: center;
    color: var(--slate-600);
    border-radius: 4px;
}

.doctor-sign {
    text-align: right;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Interactive ROI Calculator */
.roi-calculator {
    padding: 100px 0;
    background: var(--navy-900);
    color: var(--white);
}

.calculator-card {
    background: var(--navy-800);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--navy-700);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.slider-group {
    margin-bottom: 30px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.slider-val {
    color: var(--cyan-400);
    font-size: 1.25rem;
    font-weight: 700;
}

input[type=range] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: var(--navy-600);
    outline: none;
    accent-color: var(--cyan-500);
    cursor: pointer;
}

.roi-output-box {
    background: linear-gradient(135deg, var(--navy-700) 0%, rgba(0, 168, 232, 0.1) 100%);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--cyan-500);
    text-align: center;
}

.roi-stat-main {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--cyan-400);
    margin-bottom: 8px;
}

.roi-sub-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roi-sub-item h4 {
    color: var(--gold-400);
    font-size: 1.4rem;
    font-weight: 700;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

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

.pricing-toggle-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--slate-700);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider-round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--slate-300);
    transition: .4s;
    border-radius: 34px;
}

.slider-round:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider-round {
    background-color: var(--cyan-500);
}

input:checked+.slider-round:before {
    transform: translateX(28px);
}

.discount-badge {
    background: var(--gold-100);
    color: #b45309;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

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

.price-card {
    background: var(--slate-100);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid var(--slate-200);
    transition: var(--transition);
    position: relative;
}

.price-card.featured {
    background: var(--white);
    border: 2px solid var(--cyan-500);
    box-shadow: var(--shadow-cyan);
    transform: scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-500) 0%, #d97706 100%);
    color: var(--white);
    padding: 4px 20px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 24px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 24px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-500);
}

.plan-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.plan-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--slate-700);
}

.plan-feature-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--slate-100);
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
}

.stars-row {
    color: var(--gold-500);
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--slate-700);
    margin-bottom: 20px;
    font-style: italic;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cyan-100);
    color: var(--cyan-600);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-weight: 700;
    color: var(--navy-800);
    font-size: 0.95rem;
}

.author-lab {
    font-size: 0.8rem;
    color: var(--slate-500);
}

/* CTA / Demo Form Section */
/* CTA / Demo Form Section - Rich Navy Banner */
.demo-cta {
    padding: 90px 0 !important;
    background: linear-gradient(135deg, #0b1b3d 0%, #07132b 100%) !important;
    border-top: 1px solid rgba(0, 168, 232, 0.25) !important;
    border-bottom: 1px solid rgba(0, 168, 232, 0.25) !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

.demo-cta::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    background: rgba(0, 168, 232, 0.18);
    filter: blur(90px);
    border-radius: 50%;
    pointer-events: none;
}

.demo-cta h2,
.demo-cta h3 {
    color: #ffffff !important;
}

.demo-cta p {
    color: #cbd5e1 !important;
}

.cta-form-card {
    background: #ffffff !important;
    color: #1e293b !important;
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    border: 1px solid #e2e8f0;
}

.cta-form-card h3 {
    color: #0b1b3d !important;
}

.cta-form-card p {
    color: #64748b !important;
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-form-wrapper {
    background: var(--white);
    color: var(--slate-800);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
}

.cta-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Footer Section - Full Width Edge Alignment System */
.footer {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--slate-600);
    padding: 75px 0 35px;
    border-top: 1px solid var(--slate-200);
}

.footer-container {
    width: 100%;
    max-width: 100%;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
    gap: 48px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--slate-600);
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--slate-600);
    transition: var(--transition);
}

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

/* Footer Contact Info Item System - Light Theme */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--slate-700);
    line-height: 1.5;
    transition: var(--transition);
    text-decoration: none;
}

.footer-contact-info .contact-item:hover {
    color: var(--cyan-600);
    transform: translateX(4px);
}

.contact-icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--cyan-50);
    border: 1px solid var(--cyan-100);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--slate-200);
    font-size: 0.85rem;
    color: var(--slate-500);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 19, 43, 0.7);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--white);
    width: 90%;
    max-width: 520px;
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--slate-100);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--slate-600);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--navy-800);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--cyan-500);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {

    .hero-grid,
    .calculator-card,
    .cta-box,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .pricing-grid,
    .testimonials-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Page Header for Inner Pages */
.page-hero {
    padding: 150px 0 60px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 168, 232, 0.1) 0%, rgba(240, 249, 255, 0.4) 60%, #fbfcfd 100%);
    text-align: center;
    border-bottom: 1px solid var(--slate-200);
}

.page-hero .section-title {
    font-size: 2.75rem;
    margin-top: 8px;
}

.nav-link.active {
    color: var(--cyan-600) !important;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyan-500);
    border-radius: 2px;
}

.mobile-menu-links a.active {
    color: var(--cyan-600) !important;
    font-weight: 700;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--cyan-100);
    color: var(--cyan-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.faq-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}

.faq-card h4 {
    font-size: 1.1rem;
    color: var(--navy-800);
    margin-bottom: 10px;
}

.faq-card p {
    font-size: 0.95rem;
    color: var(--slate-600);
}

/* Page Transition Animation System */
@keyframes pageFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pageFadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body {
    animation: pageFadeIn 0.35s ease-out forwards;
}

body.page-exiting {
    animation: pageFadeOut 0.2s ease-in forwards !important;
}

/* Page Inner Content Slide Animation */
.hero,
.page-hero,
section {
    animation: contentSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes contentSlideUp {
    0% {
        transform: translateY(10px);
    }

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