/* ============================================
   DESKTRACKER WEBSITE - GLOBAL STYLESHEET
   Light Theme — Powered by IT Sahayata
   Logo Colors: Navy #1b2d5e | Sky Blue #0ea5e9
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
    /* Background */
    --bg-primary: #ffffff;
    --bg-secondary: #f0f4f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f5f9ff;

    /* Borders */
    --border-color: #e0e8f5;
    --border-hover: #0ea5e9;

    /* Logo-matched Brand Colors */
    --navy: #1b2d5e;
    --navy-dark: #0f1e42;
    --navy-mid: #253d6e;
    --accent: #0ea5e9;
    --accent-dark: #0284c7;
    --accent-light: #38bdf8;
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --green: #10b981;
    --red: #ef4444;

    /* Text */
    --text-primary: #1b2d5e;
    --text-secondary: #4a5d7e;
    --text-muted: #8094b4;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #f0f5ff 0%, #e8f4fd 50%, #f5f0ff 100%);
    --gradient-accent: linear-gradient(135deg, #1b2d5e 0%, #0ea5e9 100%);
    --gradient-accent2: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-card: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(27, 45, 94, 0.03) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(27, 45, 94, 0.08);
    --shadow-md: 0 8px 24px rgba(27, 45, 94, 0.10);
    --shadow-lg: 0 20px 48px rgba(27, 45, 94, 0.13);
    --shadow-glow: 0 0 30px rgba(14, 165, 233, 0.18);
    --shadow-glow-gold: 0 0 30px rgba(245, 158, 11, 0.18);

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

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Fonts */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;

    --navbar-height: 72px;
}

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

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-main);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

section {
    padding: 100px 0;
}

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

.flex {
    display: flex;
}

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

.grid {
    display: grid;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 18px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14, 165, 233, 0.45);
}

.btn-navy {
    background: var(--navy);
    color: white;
    box-shadow: 0 4px 18px rgba(27, 45, 94, 0.25);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(27, 45, 94, 0.35);
}

.btn-gold {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateY(-2px);
    background: rgba(14, 165, 233, 0.05);
}

.btn-ghost {
    background: var(--bg-secondary);
    color: var(--navy);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    background: #e0ecfb;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1.05rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: rgba(14, 165, 233, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: var(--gradient-accent);
    color: white;
}

/* ============================================
   NAVBAR — LIGHT, LOGO ONLY
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo: image only, no text */
.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Hide the text elements in navbar */
.navbar-logo-text {
    display: none;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: rgba(27, 45, 94, 0.06);
    font-weight: 600;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu .nav-link {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--navy);
    font-weight: 500;
}

.mobile-menu .nav-link:hover {
    background: var(--bg-secondary);
}

.mobile-menu .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding-top: var(--navbar-height);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(27, 45, 94, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.25);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-top: 24px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--navy);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

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

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
}

@keyframes float {

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

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

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.feature-icon.blue {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
}

.feature-icon.navy {
    background: rgba(27, 45, 94, 0.08);
    color: var(--navy);
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.feature-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.feature-icon.gold {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.feature-icon.red {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.feature-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
}

.feature-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: #be185d;
}

.feature-icon.orange {
    background: rgba(249, 115, 22, 0.1);
    color: #c2410c;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================
   STATS BANNER
   ============================================ */
.stats-banner {
    background: var(--navy);
    padding: 56px 0;
}

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

.stat-item-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(14, 165, 233, 0.15) 100%);
    border-style: dashed;
}

.step-card {
    text-align: center;
    padding: 40px 24px;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.1), var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--shadow-glow), var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

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

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-weight: 600;
    color: var(--text-muted);
}

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

.toggle-switch {
    width: 56px;
    height: 28px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.toggle-switch.on {
    background: var(--accent);
    border-color: var(--accent);
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.toggle-switch.on .toggle-knob {
    transform: translateX(28px);
}

.annual-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

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

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.04);
    box-shadow: var(--shadow-lg), 0 0 40px rgba(27, 45, 94, 0.2);
    color: white;
}

.pricing-card.featured .pricing-plan-name,
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-amount,
.pricing-card.featured .pricing-currency,
.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card.featured h2,
.pricing-card.featured h3 {
    color: white;
}

.pricing-card.featured .pricing-feature {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card.featured .pricing-feature .check {
    color: #38bdf8;
}

.pricing-card.featured .pricing-feature .cross {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .pricing-desc {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-card:hover:not(.featured) {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent2);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.35);
}

.pricing-plan-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.pricing-feature .check {
    color: var(--green);
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature .cross {
    color: #d1d5db;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   FEATURE HIGHLIGHT (Alternating)
   ============================================ */
.feature-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-highlight.reverse {
    direction: rtl;
}

.feature-highlight.reverse>* {
    direction: ltr;
}

.feature-highlight-icon {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-highlight h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--navy);
}

.feature-highlight p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.88rem;
}

.feature-list-item::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-visual-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--navy);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

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

.btn-white {
    background: white;
    color: var(--navy);
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.team-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.team-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.team-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    border: 3px solid rgba(14, 165, 233, 0.25);
}

.team-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--navy);
}

.team-role {
    font-size: 0.82rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-bio {
    font-size: 0.83rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 7px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: white;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--navy);
    font-size: 0.92rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: white;
    color: var(--navy);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    padding: 64px 0 32px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 16px 0 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: white;
    margin-bottom: 16px;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

.powered-by {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.powered-by span {
    color: var(--gold-light);
    font-weight: 700;
}

/* ============================================
   FAQ / ACCORDION
   ============================================ */
.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 10px;
    transition: var(--transition);
    background: white;
}

.accordion-item.open {
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: var(--shadow-glow);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: white;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 16px;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--bg-secondary);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: white;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body-inner {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.accordion-item.open .accordion-body {
    max-height: 300px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.comparison-table th {
    background: var(--navy);
    color: white;
    padding: 16px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    border-bottom: none;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background: white;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
}

.comparison-table tr:hover td {
    background: #f8fbff;
}

.comparison-table .check-yes {
    color: var(--green);
    font-size: 1rem;
}

.comparison-table .check-no {
    color: #d1d5db;
    font-size: 1rem;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    padding: 160px 0 100px;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--navy);
}

.page-hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   MODAL (Book Demo)
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(27, 45, 94, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92) translateY(20px);
    transition: var(--transition);
}

.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: var(--red);
    color: var(--red);
}

/* ============================================
   ALERTS
   ============================================ */
.alert-success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: #065f46;
    font-size: 0.88rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.alert-error {
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    color: #991b1b;
    font-size: 0.88rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 0.08s;
}

.fade-up-delay-2 {
    transition-delay: 0.16s;
}

.fade-up-delay-3 {
    transition-delay: 0.24s;
}

.fade-up-delay-4 {
    transition-delay: 0.32s;
}

.fade-up-delay-5 {
    transition-delay: 0.40s;
}

.fade-up-delay-6 {
    transition-delay: 0.48s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .feature-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-highlight.reverse {
        direction: ltr;
    }

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

    .steps-grid::before {
        display: none;
    }

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

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

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

    .navbar-nav,
    .navbar-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

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

    .modal-box {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

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

/* ============================================
   PLATFORM SHOWCASE
   ============================================ */
.platform-showcase {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

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

.showcase-tab {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.showcase-tab:hover {
    background: white;
    border-color: var(--accent);
    color: var(--accent-dark);
}

.showcase-tab.active {
    background: var(--gradient-accent);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
}

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

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), var(--shadow-glow);
    border-color: rgba(14, 165, 233, 0.3);
}

.showcase-img-wrap {
    width: 100%;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.showcase-img-wrap img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.showcase-info h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 700;
}

.showcase-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Updated Hero Image Styling for Real Screenshot */
.hero-real-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 2px solid rgba(255,255,255,0.6);
    animation: float 6s ease-in-out infinite;
    display: block;
}