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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: static;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-brand .nav-logo {
    height: 1.8rem;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: -0.5rem auto 2.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.tracker-visual {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.tracker-visual i {
    font-size: 8rem;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

/* Solution Schematic Section */
.solution {
    padding: 5rem 0;
    background: #f8fafc;
}

.solution .section-title {
    color: var(--text-dark);
}

.solution-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.solution-step {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.2);
    flex: 1 1 240px;
    min-width: 240px;
    max-width: 320px;
}

.solution-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.15);
    color: #4c6ef5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.solution-step h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.solution-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.solution-badges {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #f1f5f9;
    color: #475569;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.solution-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(79, 70, 229, 0.7);
    font-size: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    width: 100%;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Cases Section */
.cases {
    padding: 5rem 0;
    background: var(--bg-white);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.case-card {
    background: var(--bg-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.case-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.case-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    opacity: 0.9;
}

.case-content {
    padding: 2rem;
}

.case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.case-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.case-features {
    list-style: none;
}

.case-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-features i {
    color: var(--secondary-color);
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: var(--bg-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid var(--border-color);
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.package-badge.popular {
    background: var(--primary-color);
    color: white;
}

.package-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.package-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.package-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.package-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.package-card button {
    width: 100%;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

/* Order Section */
.order {
    padding: 5rem 0;
    background: var(--bg-white);
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
}

.order-form-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 120px;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.payment-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.payment-option input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
}

.order-summary {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
    border: 2px solid var(--border-color);
}

.order-summary h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .package-card.featured {
        transform: scale(1);
    }

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

    .payment-methods {
        flex-direction: column;
    }

    .order-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .tracker-visual {
        width: 200px;
        height: 200px;
    }

    .tracker-visual i {
        font-size: 5rem;
    }

    .solution-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .solution-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* ===============================
   2026 Landing Redesign Overrides
   =============================== */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-darker: #1e3a8a;
    --primary-light: #93c5fd;
    --primary-lighter: #eff6ff;
    --primary-bg: #dbeafe;
    --secondary-color: #0ea5e9;
    --accent-color: #14b8a6;
    --text-dark: #0f172a;
    --text-light: #475569;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #16a34a;
    --hero-mid: #1e3a5f;
}

body {
    color: var(--text-dark);
    background: #fff;
}

.announcement-bar {
    background: #0f172a;
    color: #dbeafe;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    text-align: center;
}

.announcement-bar strong {
    color: #ffffff;
}

.navbar {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.9rem 0;
}

.admin-link {
    color: var(--accent-color) !important;
}

.hero {
    min-height: auto;
    padding: 5rem 0 4rem;
    background: radial-gradient(circle at 15% 20%, rgba(14, 165, 233, 0.25) 0%, transparent 35%), radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.28) 0%, transparent 35%), linear-gradient(145deg, #020617 0%, #0b1735 50%, #0f1f45 100%);
    color: #ffffff;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
    position: relative;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, black 20%, transparent 95%);
    pointer-events: none;
}

.eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #93c5fd;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-content p {
    color: #cbd5e1;
    font-size: 1.08rem;
    max-width: 56ch;
}

.btn-ghost {
    border: 2px solid #cbd5e1;
    color: var(--text-dark);
    background: #fff;
}

.btn-ghost:hover {
    border-color: #94a3b8;
    transform: translateY(-1px);
}

.hero-proof {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-proof > div {
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 0.8rem;
    padding: 0.65rem 0.8rem;
}

.hero-proof strong {
    color: #dbeafe;
    font-size: 1rem;
}

.hero-proof span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.hero-panel {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.2rem;
    box-shadow: var(--shadow-lg);
}

.hero-screen-wrap {
    position: relative;
    border-radius: 0.85rem;
}

.hero-main-screenshot {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
    border: 1px solid #cbd5e1;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.2);
}

.hero-float {
    position: absolute;
    width: 44%;
    border-radius: 0.7rem;
    border: 1px solid #cbd5e1;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
    background: #fff;
}

.hero-float-map {
    left: -10%;
    bottom: -7%;
}

.hero-float-analytics {
    right: -10%;
    top: -8%;
}

.hero-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.live-pill {
    font-size: 0.72rem;
    color: #fff;
    background: var(--success-color);
    border-radius: 999px;
    padding: 0.2rem 0.55rem;
}

.hero-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.kpi {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.7rem;
}

.kpi small {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.kpi strong {
    font-size: 1.1rem;
}

.hero-events {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    color: #1e293b;
}

.hero-events li {
    background: #f8fafc;
    border-radius: 0.55rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.hero-events i {
    color: #334155;
    margin-right: 0.45rem;
}

.problems,
.features,
.solution,
.cases,
.comparison,
.packages,
.roi,
.results,
.faq,
.order {
    padding: 4.5rem 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.problem-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.25rem;
}

.problem-card i {
    font-size: 1.2rem;
    color: #ef4444;
    margin-bottom: 0.7rem;
}

.problem-card p {
    color: var(--text-light);
    margin: 0.6rem 0 0.9rem;
}

.problem-card strong {
    color: #991b1b;
    font-size: 0.9rem;
}

.features {
    background: #f8fafc;
}

.feature-card {
    border: 1px solid var(--border-color);
    box-shadow: none;
    text-align: left;
    padding: 1.4rem;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 0.8rem;
    margin: 0 0 1rem;
    font-size: 1.4rem;
}

.feature-card h3 {
    font-size: 1.2rem;
}

.feature-card p {
    line-height: 1.6;
}

.solution {
    background: #ffffff;
}

.solution-step {
    box-shadow: none;
}

.cases {
    background: #f8fafc;
}

.demo {
    background: #ffffff;
}

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

.demo-card {
    grid-column: span 4;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 0.85rem;
    padding: 0.65rem;
}

.demo-large {
    grid-column: span 8;
}

.demo-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.55rem;
}

.demo-card figcaption {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 0.55rem;
}

.case-card {
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.case-image {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.comparison {
    background: #fff;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comparison-col {
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.2rem;
    background: #fff;
}

.comparison-col.featured {
    border-color: var(--primary-light);
    background: var(--primary-lighter);
}

.comparison-col ul {
    list-style: none;
    margin-top: 0.8rem;
    display: grid;
    gap: 0.65rem;
}

.comparison-col li i {
    margin-right: 0.55rem;
}

.comparison-col .fa-check {
    color: #16a34a;
}

.comparison-col .fa-xmark {
    color: #ef4444;
}

.packages {
    background: #f8fafc;
}

/* Single pricing card layout */
.pricing-single {
    max-width: 580px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card-header {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
}

.pricing-currency {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-amount {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-period {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-left: 0.25rem;
}

.pricing-billing {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    opacity: 0.8;
}

.pricing-card-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 0.1rem;
}

.pricing-features li {
    padding: 0.65rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.98rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #16a34a;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-calculator {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.pricing-calculator label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.pricing-calc-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-calc-row input[type="number"] {
    width: 100px;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    font-family: inherit;
}

.pricing-calc-row input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.pricing-calc-result {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-calc-annual {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.pricing-cta {
    display: block;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   INDUSTRY HUB — Grid & Cards
   ═══════════════════════════════════════════════════════ */
.industries-hub {
    padding: 5rem 0;
    background: var(--bg-light);
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}
.industry-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.ic-accent {
    height: 4px;
    width: 100%;
    transition: height 0.3s ease;
}
.industry-card:hover .ic-accent {
    height: 6px;
}
.ic-body {
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.ic-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}
.industry-card:hover .ic-icon {
    transform: scale(1.08);
}
.industry-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.industry-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
}
.ic-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: gap 0.25s ease;
}
.ic-cta i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}
.industry-card:hover .ic-cta i {
    transform: translateX(3px);
}

/* ── Per-industry card colours ── */
.ic-logistics .ic-accent { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.ic-logistics .ic-icon   { background: #eff6ff; color: #2563eb; }
.ic-logistics .ic-cta    { color: #2563eb; }

.ic-energy .ic-accent    { background: linear-gradient(90deg, #D97706, #F59E0B); }
.ic-energy .ic-icon      { background: #FFFBEB; color: #D97706; }
.ic-energy .ic-cta       { color: #D97706; }

.ic-pharma .ic-accent    { background: linear-gradient(90deg, #059669, #34D399); }
.ic-pharma .ic-icon      { background: #ECFDF5; color: #059669; }
.ic-pharma .ic-cta       { color: #059669; }

.ic-insurance .ic-accent { background: linear-gradient(90deg, #6D28D9, #A78BFA); }
.ic-insurance .ic-icon   { background: #F5F3FF; color: #6D28D9; }
.ic-insurance .ic-cta    { color: #6D28D9; }

.ic-leasing .ic-accent   { background: linear-gradient(90deg, #F97316, #FB923C); }
.ic-leasing .ic-icon     { background: #FFF7ED; color: #F97316; }
.ic-leasing .ic-cta      { color: #F97316; }

.ic-construction .ic-accent { background: linear-gradient(90deg, #DC2626, #F87171); }
.ic-construction .ic-icon   { background: #FEF2F2; color: #DC2626; }
.ic-construction .ic-cta    { color: #DC2626; }

/* ═══════════════════════════════════════════════════════
   INDUSTRY PAGES — Shared Styles
   ═══════════════════════════════════════════════════════ */

/* Industry hero variant */
.industry-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, var(--hero-mid) 60%, var(--primary-color) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.industry-hero .hero-bg-grid {
    opacity: 0.05;
}
.industry-hero .container {
    position: relative;
    z-index: 2;
}
.industry-hero .eyebrow {
    color: rgba(255,255,255,0.7);
}
.industry-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    max-width: 700px;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.industry-hero p {
    font-size: 1.15rem;
    max-width: 600px;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.industry-hero .btn-primary {
    background: var(--primary-color);
    color: #fff;
}
.industry-hero .btn-primary:hover {
    background: var(--primary-dark);
}
.industry-hero .btn-ghost {
    color: #fff;
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}
.industry-hero .btn-ghost:hover {
    background: rgba(255,255,255,0.2);
}
.back-to-hub {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}
.back-to-hub:hover { color: #fff; }

/* ── Per-industry page colour themes ── */
body[data-industry="logistics"] {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-darker: #1e3a8a;
    --primary-light: #93c5fd;
    --primary-lighter: #eff6ff;
    --primary-bg: #dbeafe;
    --secondary-color: #0ea5e9;
    --hero-mid: #1e3a5f;
}
body[data-industry="energy"] {
    --primary-color: #D97706;
    --primary-dark: #B45309;
    --primary-darker: #78350F;
    --primary-light: #FCD34D;
    --primary-lighter: #FFFBEB;
    --primary-bg: #FEF3C7;
    --secondary-color: #FBBF24;
    --hero-mid: #5c3a10;
}
body[data-industry="pharma"] {
    --primary-color: #059669;
    --primary-dark: #047857;
    --primary-darker: #064E3B;
    --primary-light: #6EE7B7;
    --primary-lighter: #ECFDF5;
    --primary-bg: #D1FAE5;
    --secondary-color: #34D399;
    --hero-mid: #1a3a2e;
}
body[data-industry="insurance"] {
    --primary-color: #6D28D9;
    --primary-dark: #5B21B6;
    --primary-darker: #3B0764;
    --primary-light: #C4B5FD;
    --primary-lighter: #F5F3FF;
    --primary-bg: #EDE9FE;
    --secondary-color: #A78BFA;
    --hero-mid: #2e1a5e;
}
body[data-industry="leasing"] {
    --primary-color: #F97316;
    --primary-dark: #EA580C;
    --primary-darker: #7C2D12;
    --primary-light: #FDBA74;
    --primary-lighter: #FFF7ED;
    --primary-bg: #FFEDD5;
    --secondary-color: #FB923C;
    --hero-mid: #5c2e10;
}
body[data-industry="construction"] {
    --primary-color: #DC2626;
    --primary-dark: #B91C1C;
    --primary-darker: #7F1D1D;
    --primary-light: #FCA5A5;
    --primary-lighter: #FEF2F2;
    --primary-bg: #FECACA;
    --secondary-color: #F87171;
    --hero-mid: #5c1a1a;
}

/* Connectivity Toggle */
.conn-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
.conn-toggle {
    display: inline-flex;
    background: var(--bg-white);
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.conn-toggle-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light, #64748b);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.conn-toggle-btn i {
    font-size: 0.85rem;
}
.conn-toggle-btn.active {
    background: var(--primary-color, #0f172a);
    color: #fff;
    box-shadow: 0 2px 6px rgba(15,23,42,0.18);
}
.conn-toggle-btn:not(.active):hover {
    color: var(--text-dark, #1e293b);
    background: var(--bg-light, #f1f5f9);
}
.conn-toggle-label {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light, #64748b);
}

/* 3-Tier Pricing Cards */
.tiers-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 2rem auto 0;
}
.tier-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    border: 2px solid var(--border-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}
.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.tier-card.featured {
    border-color: var(--primary-color);
    position: relative;
}
.tier-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.tier-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}
.tier-price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.25rem;
}
.tier-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}
.tier-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}
.tier-period {
    font-size: 1rem;
    color: var(--text-light);
}
.tier-annual {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}
.tier-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.tier-spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}
.tier-spec i { color: var(--primary-color); font-size: 0.75rem; }
.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}
.tier-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features li i { color: var(--primary-color); font-size: 0.8rem; width: 16px; text-align: center; }
.tier-cta {
    text-align: center;
}
.tier-hardware {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: var(--text-light);
}
.tier-hardware strong {
    color: var(--primary-color);
}

/* Industry page sections reuse .problems, .features, .solution, .comparison, .faq, .order, .footer from main styles */

@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    .industry-hero h1 {
        font-size: 1.8rem;
    }
}

/* Form hint under inputs */
.form-hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.package-card {
    box-shadow: none;
}

.package-card.featured {
    transform: scale(1.02);
}

.roi {
    background: var(--bg-light);
}
.roi .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}
.roi .roi-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}
.roi-controls {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}
.roi-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.roi-slider-label strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}
#roiVehicles {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border-color);
    border-radius: 999px;
    outline: none;
    margin-bottom: 1.5rem;
}
#roiVehicles::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
#roiVehicles::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.roi-selects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.roi-selects .form-group {
    margin: 0;
}
.roi-selects label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    display: block;
}
.roi-selects select {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
}
.roi-selects select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.roi-card {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.roi-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    font-size: 0.95rem;
}
.roi-row span {
    color: #94a3b8;
}
.roi-row strong {
    font-size: 1rem;
    font-weight: 700;
}
.roi-row.total {
    border-bottom: none;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    margin-top: 0.3rem;
    padding-top: 1rem;
}
.roi-row.total span {
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1.05rem;
}
.roi-row.total strong {
    font-size: 1.35rem;
    color: #4ade80;
}
.roi-row.total.negative strong {
    color: #f87171;
}

.results {
    background: #f8fafc;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.result-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.1rem;
}

.result-card p {
    color: #1e293b;
    margin-bottom: 0.8rem;
}

.result-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.result-card span {
    color: var(--text-light);
    font-size: 0.88rem;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 0.75rem;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.8rem;
    padding: 0.8rem 1rem;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-list p {
    margin-top: 0.6rem;
    color: var(--text-light);
}

.order {
    background: #fff;
}

.order-form-wrapper {
    border: 1px solid var(--border-color);
    box-shadow: none;
    background: #f8fafc;
}

.form-group input,
.form-group select,
.form-group textarea {
    border-width: 1px;
}

.footer {
    background: #0f172a;
}

@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-layout,
    .roi-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        grid-template-columns: 1fr;
    }

    .hero-float {
        display: none;
    }

    .demo-card,
    .demo-large {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        top: calc(100% + 8px);
        border: 1px solid var(--border-color);
        border-radius: 0.8rem;
    }

    .hero {
        padding-top: 3rem;
    }

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

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

/* ── Trust Badges ── */
.trust-badges {
    padding: 2.5rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
}
.trust-badges-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}
.trust-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* ── Security & Infrastructure Section ── */
.security-section {
    padding: 5rem 0;
    background: var(--bg-light);
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.security-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.security-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.security-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}
.security-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}
.security-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
    .trust-badges-grid {
        gap: 1.2rem;
    }
    .trust-badge {
        font-size: 0.82rem;
    }
}
