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

:root {
    --navy: #1a2744;
    --navy-dark: #111c30;
    --navy-light: #2d4a7a;
    --accent: #b91c1c;
    --accent-hover: #991b1b;
    --text-heading: #1a2744;
    --text: #3d4f6f;
    --text-light: #6b7c93;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --bg: #ffffff;
    --bg-alt: #f5f7fa;
    --border: #dce3ec;
    --border-light: #e8edf3;
    --success: #1a8f6e;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: var(--bg);
}

/* ================== MINIMAL ANIMATIONS ================== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-fade-up {
    animation: fade-up 0.6s ease-out forwards;
}

.animate-scale-in {
    animation: fade-up 0.6s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

/* ================== HEADER ================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.logo-container>span {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--navy);
}

.logo-container>span>span {
    color: var(--accent);
}

.landing-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a:not(.btn) {
    color: var(--text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--navy);
    background: var(--bg-alt);
}

/* Remove underline hover effect from SaaS style */
.nav-links a:not(.btn)::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    color: var(--navy);
    font-size: 1.25rem;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--border-light);
}

/* ================== BUTTONS ================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

/* Remove the SaaS sweep animation */
.btn::before {
    display: none;
}

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

.btn-primary:hover {
    background: var(--navy-dark);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.btn-icon {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ================== HERO SECTION ================== */
.hero {
    background: var(--navy);
    padding: 11rem 2rem 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 40%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
}

/* Hide SaaS decorative overlays */
.hero-bg,
.hero-grid {
    display: none;
}

.hero-home {
    background: #0f172a;
}

.hero-home::before {
    background: linear-gradient(180deg, rgba(8, 15, 29, 0.66) 0%, rgba(15, 23, 42, 0.56) 42%, rgba(8, 15, 29, 0.82) 100%);
}

.hero-home .hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    background: url('../imgs/hero.jpg') center center / cover no-repeat;
    opacity: 0.22;
    transform: scale(1.04);
    filter: saturate(0.9) contrast(1.03);
    pointer-events: none;
}

.hero-home .hero-grid {
    display: block;
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.10), transparent 28%);
    background-size: 88px 88px, 88px 88px, auto;
    opacity: 0.18;
    pointer-events: none;
}

.hero-container {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    /* Override SaaS pill styling */
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: none;
    box-shadow: none;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

/* Override gradient text animation */
.hero h1 .gradient-text {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    animation: none;
    background-size: unset;
}

.hero-description {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 620px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.35);
}

.trust-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

/* Hide the SaaS dashboard mockup */
.hero-visual {
    display: none;
}

/* ================== STATS SECTION ================== */
.stats-section {
    background: var(--bg);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border-light);
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40%;
    background: var(--border);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--navy);
    background-clip: unset;
}

.stat-number .highlight {
    color: var(--accent);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--accent);
    background-clip: unset;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ================== SECTION COMMON ================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--navy-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.75px;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================== FEATURE SHOWCASE SECTION ================== */
.feature-showcase {
    padding: 6rem 2rem 2rem;
    background: var(--bg);
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.showcase-item-reverse {
    direction: rtl;
}

.showcase-item-reverse>* {
    direction: ltr;
}

.showcase-number {
    font-size: 0.8125rem;
    font-weight: 800;
    color: var(--navy-light);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.6;
}

.showcase-text h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.showcase-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.showcase-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.8;
}

.showcase-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--navy-light);
}

/* Showcase mock windows */
.showcase-visual {
    display: flex;
    justify-content: center;
}

.showcase-mock {
    width: 100%;
    max-width: 480px;
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.mock-window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

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

.mock-window-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 8px;
}

/* AI Mock */
.mock-ai-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    background: #f8fafc;
    min-height: 200px;
}

.mock-ai-msg {
    padding: 0.625rem 0.875rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    line-height: 1.5;
    max-width: 85%;
}

.mock-ai-msg.user {
    background: var(--navy);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.mock-ai-msg.assistant {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

/* Map Mock */
.mock-map-body {
    position: relative;
    height: 240px;
    background: linear-gradient(160deg, #e8edf3 0%, #d1dbe8 100%);
    overflow: hidden;
}

.mock-map-zone {
    position: absolute;
    border: 2px solid rgba(26, 39, 68, 0.3);
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--navy);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.6);
}

.mock-map-zone.zone-a {
    top: 20px;
    left: 20px;
    width: 120px;
    height: 80px;
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
}

.mock-map-zone.zone-b {
    top: 30px;
    right: 40px;
    width: 100px;
    height: 70px;
    border-color: #16a34a;
    background: rgba(22, 163, 74, 0.08);
}

.mock-map-zone.zone-c {
    bottom: 40px;
    left: 60px;
    width: 140px;
    height: 60px;
    border-color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.mock-map-route {
    position: absolute;
    height: 3px;
    background: var(--navy);
    opacity: 0.3;
    border-radius: 2px;
}

.mock-map-route.route-1 {
    top: 60px;
    left: 140px;
    width: 100px;
    transform: rotate(10deg);
}

.mock-map-route.route-2 {
    bottom: 70px;
    left: 200px;
    width: 80px;
    transform: rotate(-15deg);
}

.mock-map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.mock-map-pin.pin-1 {
    top: 130px;
    left: 30px;
}

.mock-map-pin.pin-2 {
    top: 80px;
    right: 60px;
    background: #2563eb;
}

.mock-map-ruler {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    border: 1px solid var(--border);
}

.ruler-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-heading);
}

.mock-map-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

/* Inspection Mock */
.mock-inspection-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-inspect-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background: #f8fafc;
    border: 1px solid var(--border-light);
}

.mock-inspect-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.mock-inspect-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

.mock-inspect-badge.pass {
    background: #dcfce7;
    color: #166534;
}

.mock-inspect-badge.attention {
    background: #fef3c7;
    color: #92400e;
}

.mock-inspect-progress {
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.mock-inspect-bar {
    height: 100%;
    background: var(--navy-light);
    border-radius: 3px;
    transition: width 0.3s;
}

.mock-inspect-pct {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: right;
    display: block;
    margin-top: 0.25rem;
}

/* Hauling Mock */
.mock-hauling-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-haul-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: #f8fafc;
}

.mock-haul-row.active {
    border-color: #2563eb;
    background: #eff6ff;
}

.mock-haul-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.active-dot {
    background: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.done-dot {
    background: #22c55e;
}

.mock-haul-info {
    flex: 1;
    min-width: 0;
}

.mock-haul-info strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-heading);
}

.mock-haul-info span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.mock-haul-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}

.mock-haul-badge.active {
    background: #dbeafe;
    color: #1e40af;
}

.mock-haul-badge.done {
    background: #dcfce7;
    color: #166534;
}

/* Asset Tracking Mock */
.mock-assets-body {
    padding: 0.75rem;
}

.mock-track-header {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-heading);
    padding: 0.375rem 0.5rem;
    background: var(--bg-alt);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.mock-track-header:not(:first-child) {
    margin-top: 0.75rem;
}

.mock-asset-cards {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.mock-asset {
    flex: 1;
    min-width: 90px;
    padding: 0.5rem 0.625rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: var(--white);
    border-top: 3px solid transparent;
}

.mock-asset.loaded {
    border-top-color: #22c55e;
}

.mock-asset.empty {
    border-top-color: #94a3b8;
}

.mock-asset.unloading {
    border-top-color: #eab308;
}

.mock-asset.ready {
    border-top-color: #2563eb;
}

.mock-asset-id {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-heading);
}

.mock-asset-status {
    display: block;
    font-size: 0.625rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* Loading Mock */
.mock-loading-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mock-load-row {
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: #f8fafc;
}

.mock-load-info {
    margin-bottom: 0.375rem;
}

.mock-load-info strong {
    font-size: 0.8125rem;
    color: var(--text-heading);
}

.mock-load-detail {
    font-size: 0.6875rem;
    color: var(--text-light);
    margin-top: 2px;
}

.mock-load-bar-wrap {
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.25rem;
}

.mock-load-bar {
    height: 100%;
    background: #eab308;
    border-radius: 3px;
}

.mock-load-bar.loading {
    background: #2563eb;
}

.mock-load-bar.complete {
    background: #22c55e;
}

.mock-load-pct {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-light);
    text-align: right;
    display: block;
}

/* Operating System Mock */
.mock-ops-body {
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    min-height: 220px;
    background: #f8fafc;
}

.mock-tablet-frame {
    border: 10px solid #111827;
    border-radius: 18px;
    background: #111827;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
}

.mock-tablet-screen {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #e8edf3 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
    padding: 1rem;
}

.mock-tablet-screen strong {
    color: var(--text-heading);
    font-size: 0.95rem;
}

.mock-tablet-screen span {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
}

.mock-tablet-kiosk {
    background: #dcfce7;
    color: #166534 !important;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.625rem !important;
}

.mock-ops-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.mock-ops-list div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    border-radius: 6px;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text);
    font-size: 0.8125rem;
    font-weight: 700;
}

.mock-ops-dot,
.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    flex: 0 0 auto;
}

.mock-ops-dot.online,
.status-dot.online {
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(26, 143, 110, 0.12);
}

/* Forms Mock */
.mock-forms-body {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mock-form-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    background: #f8fafc;
}

.mock-form-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-form-icon.doc {
    background: #dbeafe;
}

.mock-form-icon.img {
    background: #dcfce7;
}

.mock-form-icon.form {
    background: #fef3c7;
}

.mock-form-info {
    flex: 1;
    min-width: 0;
}

.mock-form-info strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-form-info span {
    font-size: 0.6875rem;
    color: var(--text-light);
}

/* Reports Mock */
.mock-reports-body {
    padding: 0;
}

.mock-report-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    padding: 0 0.75rem;
}

.mock-tab {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.5rem 0.75rem;
    border-bottom: 2px solid transparent;
    cursor: default;
}

.mock-tab.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

.mock-report-table {
    padding: 0 0.75rem;
}

.mock-report-hdr {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.6fr 0.6fr;
    gap: 0.25rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mock-report-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.6fr 0.6fr;
    gap: 0.25rem;
    padding: 0.4375rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.75rem;
    color: var(--text);
}

.mock-report-row.alt {
    background: #f8fafc;
}

.mock-report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.6875rem;
    color: var(--text-light);
}

.mock-export-btn {
    background: var(--navy);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.625rem;
    letter-spacing: 0.03em;
}

/* ================== FEATURES SECTION ================== */
.features {
    padding: 6rem 2rem;
    background: var(--bg-alt);
}

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

.feature-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Remove SaaS animated top bar */
.feature-card::before {
    display: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: none;
}

.feature-icon::after {
    display: none;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.625rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ================== HOW IT WORKS ================== */
.how-it-works {
    padding: 6rem 2rem;
    background: var(--bg);
    position: relative;
}

/* Remove decorative line */
.how-it-works::before {
    display: none;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.375rem;
    font-weight: 800;
    box-shadow: none;
    transition: background 0.2s ease;
}

.step:hover .step-number {
    background: var(--navy-dark);
}

/* Remove spinning dashed ring */
.step-ring {
    display: none;
}

.step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 36px);
    width: calc(100% - 72px);
    height: 2px;
    background: var(--border);
}

.step:last-child .step-connector {
    display: none;
}

.step h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-light);
    max-width: 220px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================== BENEFITS SECTION ================== */
.benefits {
    padding: 6rem 2rem;
    background: var(--bg-alt);
    position: relative;
}

/* Hide decorative background */
.benefits-bg {
    display: none;
}

.benefits .container {
    position: relative;
    z-index: 1;
}

.benefits .section-label {
    color: var(--navy-light);
    background: none;
    border: none;
}

.benefits .section-header h2 {
    color: var(--text-heading);
}

.benefits .section-header p {
    color: var(--text-light);
}

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

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s ease;
    backdrop-filter: none;
}

.benefit-item:hover {
    box-shadow: var(--shadow);
}

.benefit-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: white;
    box-shadow: none;
}

.benefit-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================== SUPPORT & UPDATES ================== */
.support-updates {
    padding: 6rem 2rem;
    background: var(--bg);
}

.support-updates-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.support-panel,
.whats-new-panel {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.support-panel h2,
.whats-new-panel h2 {
    font-size: 1.75rem;
    line-height: 1.2;
    color: var(--text-heading);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.support-panel-copy {
    color: var(--text);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.service-status-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.service-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    font-size: 0.9375rem;
}

.service-status-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-status-row strong {
    color: var(--success);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.support-link {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
}

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

.whats-new-list {
    display: grid;
    gap: 0.875rem;
}

.whats-new-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
    background: #f8fafc;
}

.update-tag {
    display: inline-block;
    color: var(--navy-light);
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.375rem;
}

.whats-new-item h3 {
    color: var(--text-heading);
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 0.25rem;
}

.whats-new-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.55;
}

/* ================== TESTIMONIALS (unused, kept for compatibility) ================== */
.testimonials {
    padding: 6rem 2rem;
    background: var(--bg);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

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

.testimonial-quote {
    font-size: 3rem;
    color: var(--navy);
    opacity: 0.15;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-heading);
}

.testimonial-info p {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ================== CTA SECTION ================== */
.cta {
    padding: 6rem 2rem;
    background: var(--navy);
    text-align: center;
    position: relative;
}

/* Hide decorative background */
.cta-bg {
    display: none;
}

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

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.75px;
    line-height: 1.15;
}

.cta p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--white);
    color: var(--navy);
    border: none;
    font-weight: 700;
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ================== FOOTER ================== */
.footer {
    background: var(--navy-dark);
    padding: 3.5rem 2rem 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo span span {
    color: var(--accent);
    background: none;
    -webkit-text-fill-color: var(--accent);
    -webkit-background-clip: unset;
    background-clip: unset;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.65;
}

.footer-links-group {
    display: flex;
    gap: 3.5rem;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ================== SCROLL REVEAL ================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* ================== CONTACT MODAL ================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-container {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(16px);
    transition: transform 0.3s ease;
    position: relative;
}

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

.modal-header {
    padding: 1.75rem 2rem 0;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 0.375rem;
}

.modal-header p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-alt);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.125rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close:hover {
    background: var(--border);
    color: var(--text-heading);
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-field label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
}

.form-field input,
.form-field textarea {
    padding: 0.625rem 0.875rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: var(--white);
    color: var(--text);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--text-muted);
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}

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

.modal-submit {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.modal-submit:hover:not(:disabled) {
    background: var(--navy-dark);
}

.modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-success {
    text-align: center;
    padding: 2rem 0;
}

.modal-success-icon {
    width: 56px;
    height: 56px;
    background: rgba(26, 143, 110, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--success);
    font-size: 1.75rem;
}

.modal-success h3 {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin: 0 0 0.5rem;
}

.modal-success p {
    color: var(--text-light);
    margin: 0;
}

.modal-error {
    background: #fef2f2;
    color: #b91c1c;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.modal-error,
.modal-success {
    display: none;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .showcase-item {
        gap: 2rem;
    }

    .showcase-text h3 {
        font-size: 1.5rem;
    }

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

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .step-connector {
        display: none;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

@media (max-width: 768px) {
    .header {
        padding: 0 1rem;
        height: 64px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a:not(.btn) {
        width: 100%;
        padding: 0.75rem 1rem;
        color: var(--text);
    }

    .nav-links .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

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

    .hero {
        padding: 8rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .showcase-item,
    .showcase-item-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }

    .showcase-text h3 {
        font-size: 1.375rem;
    }

    .showcase-mock {
        max-width: 100%;
    }

    .feature-showcase {
        padding: 4rem 1.5rem 1rem;
    }

    .features-grid,
    .benefits-grid,
    .support-updates-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

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

    .support-updates {
        padding: 4rem 1.5rem;
    }

    .stat-item::after {
        display: none;
    }

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

    .cta h2 {
        font-size: 2rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-links-group {
        width: 100%;
        justify-content: space-between;
    }

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

@media (max-width: 600px) {
    .modal-container {
        max-width: 100%;
    }

    .modal-header,
    .modal-body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

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

    .mock-ops-body {
        grid-template-columns: 1fr;
    }

    .mock-tablet-frame {
        max-width: 160px;
        width: 100%;
        margin: 0 auto;
    }

    .support-panel,
    .whats-new-panel {
        padding: 1.5rem;
    }

    .service-status-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }
}

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

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .footer-links-group {
        flex-direction: column;
        gap: 1.5rem;
    }
}
