/*
Theme Name: Tenet
Theme URI: https://tenet-os.com
Author: Tenet
Author URI: https://tenet-os.com
Description: The transportation management platform theme for Tenet - built for line haul, cartage, courier, and air cargo trucking operations.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tenet
*/

:root {
            --tenet-dark: #0a0a0a;
            --tenet-primary: #3d6a7a;
            --tenet-secondary: #4a7a8a;
            --tenet-light: #5a8a9a;
            --tenet-accent: #2d5a6a;
            --tenet-deep: #1d4a5a;

            --slate-50: #f8fafc;
            --slate-100: #f1f5f9;
            --slate-200: #e2e8f0;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-500: #64748b;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;

            --white: #ffffff;
            --success: #22c55e;
            --success-light: #dcfce7;
            --success-bg: rgba(34, 197, 94, 0.1);
            --warning: #eab308;
            --info: #3b82f6;
            --info-light: #dbeafe;
            --accent-teal: #14b8a6;
            --accent-teal-light: #ccfbf1;
            --accent-purple: #8b5cf6;
            --accent-purple-light: #ede9fe;
            --accent-orange: #f97316;
            --accent-orange-light: #ffedd5;

            --font-body: 'DM Sans', sans-serif;
            --font-header: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        a {
            color: #2D5A6B;
        }

        /* ============================================
           FRAMER-INSPIRED ANIMATIONS
           ============================================ */

        /* Scroll-triggered animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
        .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
        .animate-on-scroll.delay-3 { transition-delay: 0.3s; }

        /* Stagger children animations */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
        .stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }

        /* 3D Tilt Card Effect */
        .tilt-card {
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }

        .tilt-card:hover {
            transform: perspective(1000px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) scale(1.02);
        }

        /* Gradient Glow Cursor Effect */
        .glow-cursor {
            position: fixed;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(61, 106, 122, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
            opacity: 0;
        }

        body:hover .glow-cursor {
            opacity: 1;
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        @keyframes floatReverse {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(15px) rotate(-2deg); }
        }

        .float-element {
            animation: float 6s ease-in-out infinite;
        }

        .float-element-reverse {
            animation: floatReverse 7s ease-in-out infinite;
        }

        /* Text Reveal Animation */
        .text-reveal {
            overflow: hidden;
        }

        .text-reveal span {
            display: inline-block;
            transform: translateY(100%);
            opacity: 0;
            animation: textReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

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

        /* Typing Effect */
        .typing-text::after {
            content: '|';
            animation: blink 1s infinite;
            color: var(--tenet-primary);
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        /* Gradient Text Animation */
        .gradient-text {
            background: linear-gradient(135deg, var(--tenet-primary), var(--tenet-light), var(--tenet-deep));
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 5s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Card Hover Effects */
        .hover-lift {
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }

        /* Shine Effect on Hover */
        .shine-effect {
            position: relative;
            overflow: hidden;
        }

        .shine-effect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .shine-effect:hover::before {
            left: 100%;
        }

        /* Pulse Glow */
        .pulse-glow {
            animation: pulseGlow 2s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(61, 106, 122, 0.4); }
            50% { box-shadow: 0 0 20px 10px rgba(61, 106, 122, 0); }
        }

        /* Scale on Scroll */
        .scale-on-scroll {
            transform: scale(0.9);
            opacity: 0;
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
                        opacity 0.8s ease;
        }

        .scale-on-scroll.visible {
            transform: scale(1);
            opacity: 1;
        }

        /* Blur-in Animation */
        .blur-in {
            filter: blur(10px);
            opacity: 0;
            transition: filter 0.8s ease, opacity 0.8s ease;
        }

        .blur-in.visible {
            filter: blur(0);
            opacity: 1;
        }

        /* Magnetic Button Effect */
        .magnetic-btn {
            transition: transform 0.2s ease;
        }

        /* Parallax Background */
        .parallax-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .parallax-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            background: var(--tenet-primary);
        }

        /* Counter Animation */
        .counter {
            font-variant-numeric: tabular-nums;
        }

        /* ============================================
           STACKING ANIMATIONS (stackbyte-inspired)
           ============================================ */

        /* Hero Card Stack Effect */
        .hero-cards-stack {
            position: relative;
            perspective: 1000px;
            height: 480px;
        }

        .hero-cards-stack .hero-card {
            position: absolute;
            width: 280px;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            cursor: pointer;
        }

        /* Initial stacked positions - cards cascade */
        .hero-cards-stack .hero-card:nth-child(1) {
            top: 0;
            left: 0;
            z-index: 4;
            animation: stackCardIn1 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        .hero-cards-stack .hero-card:nth-child(2) {
            top: 30px;
            left: 30px;
            z-index: 3;
            animation: stackCardIn2 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: 0.45s;
            opacity: 0;
        }

        .hero-cards-stack .hero-card:nth-child(3) {
            top: 60px;
            left: 60px;
            z-index: 2;
            animation: stackCardIn3 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: 0.6s;
            opacity: 0;
        }

        .hero-cards-stack .hero-card:nth-child(4) {
            top: 90px;
            left: 90px;
            z-index: 1;
            animation: stackCardIn4 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: 0.75s;
            opacity: 0;
        }

        @keyframes stackCardIn1 {
            from { opacity: 0; transform: translateY(-60px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes stackCardIn2 {
            from { opacity: 0; transform: translateY(-50px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes stackCardIn3 {
            from { opacity: 0; transform: translateY(-40px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @keyframes stackCardIn4 {
            from { opacity: 0; transform: translateY(-30px) scale(0.9); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Hover - spread the stack */
        .hero-cards-stack:hover .hero-card:nth-child(1) {
            transform: translate(-10px, -10px);
            box-shadow: 0 20px 50px rgba(61, 106, 122, 0.15);
        }

        .hero-cards-stack:hover .hero-card:nth-child(2) {
            transform: translate(10px, 5px);
            box-shadow: 0 18px 45px rgba(61, 106, 122, 0.12);
        }

        .hero-cards-stack:hover .hero-card:nth-child(3) {
            transform: translate(30px, 20px);
            box-shadow: 0 16px 40px rgba(61, 106, 122, 0.1);
        }

        .hero-cards-stack:hover .hero-card:nth-child(4) {
            transform: translate(50px, 35px);
            box-shadow: 0 14px 35px rgba(61, 106, 122, 0.08);
        }

        /* ============================================
           STACKING BOXES ANIMATION (Logo Style)
           ============================================ */

        .stacking-boxes {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .stacking-boxes .box {
            opacity: 0;
            transform: translateY(-10px);
            animation: stackIn 2s ease-out infinite;
        }

        .stacking-boxes .box:nth-child(1) {
            animation-delay: 0s;
        }

        .stacking-boxes .box:nth-child(2) {
            animation-delay: 0.3s;
        }

        .stacking-boxes .box:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes stackIn {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }
            20% {
                opacity: 1;
                transform: translateY(0);
            }
            80% {
                opacity: 1;
                transform: translateY(0);
            }
            100% {
                opacity: 0;
                transform: translateY(2px);
            }
        }

        /* Hero with Vanta.js NET background */
        .hero {
            position: relative;
            overflow: hidden;
        }

        /* Vanta canvas opacity */
        .hero canvas {
            opacity: 0.3;
        }

        /* Multi-colored floating dots overlay */
        .color-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .color-dot {
            position: absolute;
            border-radius: 50%;
            animation: float-dot ease-in-out infinite;
        }

        @keyframes float-dot {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(10px, -15px); }
            50% { transform: translate(-5px, 10px); }
            75% { transform: translate(8px, 5px); }
        }

        /* Brighter dots for dark backgrounds */
        .color-dots-dark .color-dot {
            filter: brightness(1.2);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }


        /* Reveal on scroll - stack unstack */
        .stack-reveal {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

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

        /* Stagger delays for stack reveals */
        .stack-reveal.delay-1 { transition-delay: 0.1s; }
        .stack-reveal.delay-2 { transition-delay: 0.2s; }
        .stack-reveal.delay-3 { transition-delay: 0.3s; }
        .stack-reveal.delay-4 { transition-delay: 0.4s; }
        .stack-reveal.delay-5 { transition-delay: 0.5s; }
        .stack-reveal.delay-6 { transition-delay: 0.6s; }

        /* Card cascade - cards that appear to fall into place */
        .cascade-card {
            opacity: 0;
            transform: translateY(-100px) rotateX(-15deg);
            transform-origin: top center;
            transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .cascade-card.visible {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }

        /* Floating stat cards with bounce */
        .float-bounce {
            animation: floatBounce 3s ease-in-out infinite;
        }

        .float-bounce:nth-child(2) {
            animation-delay: 0.5s;
        }

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

        /* Stats floating animation */
        .floating-stats .floating-stat {
            animation: statFloat 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .floating-stats .floating-stat:nth-child(1) {
            animation-delay: 0.9s;
        }

        .floating-stats .floating-stat:nth-child(2) {
            animation-delay: 1.1s;
        }

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

        /* Card depth on hover */
        .depth-hover {
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .depth-hover:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.1),
                0 10px 20px rgba(61, 106, 122, 0.08);
        }

        /* Ripple spread effect */
        .ripple-reveal {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .ripple-reveal.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Glowing border on hover */
        .glow-border {
            position: relative;
        }

        .glow-border::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--tenet-primary), var(--tenet-light), var(--tenet-primary));
            border-radius: inherit;
            opacity: 0;
            z-index: -1;
            transition: opacity 0.4s ease;
        }

        .glow-border:hover::before {
            opacity: 0.5;
            animation: borderGlow 2s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        /* Section transition backgrounds */
        .section-wave {
            position: relative;
        }

        .section-wave::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            right: 0;
            height: 100px;
            background: inherit;
            clip-path: ellipse(55% 100% at 50% 100%);
        }

        body {
            font-family: var(--font-body);
            background-color: var(--slate-50);
            color: var(--slate-700);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Icons */
        .icon {
            stroke: var(--tenet-primary);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .icon-white {
            stroke: rgba(255,255,255,0.9);
        }

        /* ============================================
           COLOR ACCENT STYLES
           ============================================ */

        /* Colored Badge Pills */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-success {
            background: var(--success-bg);
            color: var(--success);
        }

        .badge-teal {
            background: rgba(20, 184, 166, 0.12);
            color: var(--accent-teal);
        }

        .badge-info {
            background: rgba(59, 130, 246, 0.1);
            color: var(--info);
        }

        .badge-warning {
            background: rgba(234, 179, 8, 0.12);
            color: var(--warning);
        }

        .badge-purple {
            background: rgba(139, 92, 246, 0.1);
            color: var(--accent-purple);
        }

        .badge-orange {
            background: rgba(249, 115, 22, 0.1);
            color: var(--accent-orange);
        }

        /* Badge with dot indicator */
        .badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: currentColor;
            animation: pulse-dot 2s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.9); }
        }

        /* Colored Icon Backgrounds */
        .icon-bg-success {
            background: var(--success-bg) !important;
        }

        .icon-bg-success .icon {
            stroke: var(--success);
        }

        .icon-bg-teal {
            background: rgba(20, 184, 166, 0.12) !important;
        }

        .icon-bg-teal .icon {
            stroke: var(--accent-teal);
        }

        .icon-bg-info {
            background: rgba(59, 130, 246, 0.1) !important;
        }

        .icon-bg-info .icon {
            stroke: var(--info);
        }

        .icon-bg-purple {
            background: rgba(139, 92, 246, 0.1) !important;
        }

        .icon-bg-purple .icon {
            stroke: var(--accent-purple);
        }

        .icon-bg-orange {
            background: rgba(249, 115, 22, 0.1) !important;
        }

        .icon-bg-orange .icon {
            stroke: var(--accent-orange);
        }

        /* Colored Stat Cards */
        .stat-accent-teal {
            border-left: 3px solid var(--accent-teal);
        }

        .stat-accent-teal .stat-value {
            color: var(--accent-teal);
        }

        .stat-accent-success {
            border-left: 3px solid var(--success);
        }

        .stat-accent-success .stat-value {
            color: var(--success);
        }

        /* Accent Highlights */
        .highlight-teal {
            color: var(--accent-teal);
        }

        .highlight-success {
            color: var(--success);
        }

        .highlight-info {
            color: var(--info);
        }

        /* Gradient Text Variants */
        .gradient-text-teal {
            background: linear-gradient(135deg, var(--accent-teal), #0d9488);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gradient-text-success {
            background: linear-gradient(135deg, var(--success), #16a34a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Colored Card Border Accents */
        .card-accent-teal {
            border-top: 3px solid var(--accent-teal);
        }

        .card-accent-success {
            border-top: 3px solid var(--success);
        }

        .card-accent-info {
            border-top: 3px solid var(--info);
        }

        .card-accent-purple {
            border-top: 3px solid var(--accent-purple);
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-header);
            font-weight: 700;
            letter-spacing: -0.025em;
            color: var(--slate-900);
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 100px;
            padding: 12px 32px;
            display: flex;
            align-items: center;
            gap: 40px;
            border: 1px solid rgba(61, 106, 122, 0.12);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
        }

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

        .nav-logo img {
            height: 48px;
            width: auto;
        }

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

        .nav-links a {
            color: var(--slate-600);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--tenet-primary);
        }

        .nav-cta {
            background: var(--tenet-primary);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 100px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: var(--tenet-accent);
            transform: translateY(-1px);
        }

        /* Mobile Hamburger Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            padding: 0;
            margin: 0;
            cursor: pointer;
            width: 40px;
            height: 40px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--slate-900);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        /* Mobile Full-Screen Menu */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: #2D5A6A;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-menu.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            color: var(--white);
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s ease;
            z-index: 2;
        }

        .mobile-menu-close:hover {
            background: rgba(255, 255, 255, 0.18);
        }

        .mobile-menu-inner {
            min-height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 36px;
            padding: 96px 24px 48px;
            text-align: center;
            box-sizing: border-box;
        }

        .mobile-menu-primary {
            width: 100%;
        }

        .mobile-menu-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .mobile-menu-list li {
            margin: 0;
            padding: 0;
        }

        .mobile-menu-list a {
            display: inline-block;
            font-family: var(--font-header);
            font-size: clamp(40px, 12vw, 64px);
            font-weight: 700;
            line-height: 1.05;
            letter-spacing: -0.025em;
            color: var(--white);
            text-decoration: none;
            transition: opacity 0.2s ease;
            padding: 4px 0;
        }

        .mobile-menu-list a:hover,
        .mobile-menu-list a:focus {
            opacity: 0.8;
        }

        .mobile-menu-secondary {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .mobile-menu-secondary a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .mobile-menu-secondary a:hover,
        .mobile-menu-secondary a:focus {
            color: var(--white);
        }

        .mobile-menu-cta {
            display: inline-block;
            background: var(--white);
            color: #2D5A6A;
            padding: 14px 32px;
            border-radius: 100px;
            text-decoration: none;
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .mobile-menu-cta:hover,
        .mobile-menu-cta:focus {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-1px);
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 0 20px;
        }

        .hero-text h1 {
            font-size: clamp(44px, 5vw, 64px);
            line-height: 1.08;
            margin-bottom: 24px;
            font-weight: 800;
        }

        .hero-text h1 span {
            color: var(--tenet-primary);
        }

        .hero-text p {
            font-size: 18px;
            color: var(--slate-600);
            margin-bottom: 40px;
            max-width: 520px;
            line-height: 1.7;
        }

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

        .btn-primary {
            background: var(--tenet-primary);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--tenet-accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(61, 106, 122, 0.25);
        }

        .btn-secondary {
            background: transparent;
            color: var(--slate-700);
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            border: 1.5px solid var(--slate-300);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--tenet-primary);
            color: var(--tenet-primary);
        }

        .hero-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            position: relative;
        }

        .hero-card {
            background: var(--white);
            border-radius: 16px;
            padding: 28px;
            border: 1px solid var(--slate-200);
            transition: all 0.3s ease;
        }

        .hero-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--tenet-light);
        }

        .hero-card-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(61, 106, 122, 0.08) 0%, rgba(61, 106, 122, 0.04) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .hero-card h3 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .hero-card p {
            font-size: 14px;
            color: var(--slate-500);
            line-height: 1.5;
        }

        .floating-stats {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .floating-stat {
            background: var(--white);
            border-radius: 12px;
            padding: 16px 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--slate-100);
        }

        .floating-stat .stat-value {
            font-family: var(--font-header);
            font-size: 28px;
            font-weight: 800;
            color: var(--tenet-primary);
        }

        .floating-stat .stat-label {
            font-size: 12px;
            color: var(--slate-500);
        }

        /* Partners */
        .partners {
            padding: 60px 0;
            background: var(--white);
            border-top: 1px solid var(--slate-200);
            border-bottom: 1px solid var(--slate-200);
            overflow: hidden;
        }

        .partners-label {
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: var(--slate-400);
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .partners-logos {
            display: flex;
            justify-content: center;
            gap: 70px;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            opacity: 0.7;
        }

        .partner-logo:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .partner-logo svg {
            height: 52px;
            width: auto;
        }

        /* Section Styling */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-tag {
            display: inline-block;
            background: rgba(61, 106, 122, 0.08);
            color: var(--tenet-primary);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .section-tag-teal {
            background: rgba(20, 184, 166, 0.1);
            color: var(--accent-teal);
        }

        .section-tag-success {
            background: var(--success-bg);
            color: var(--success);
        }

        .section-tag-info {
            background: rgba(59, 130, 246, 0.1);
            color: var(--info);
        }

        .section-tag-purple {
            background: rgba(139, 92, 246, 0.1);
            color: var(--accent-purple);
        }

        .section-header h2 {
            font-size: clamp(32px, 4vw, 46px);
            margin-bottom: 16px;
            font-weight: 800;
        }

        .section-header p {
            font-size: 18px;
            color: var(--slate-600);
        }

        /* Comparison */
        .comparison {
            padding: 100px 5%;
            background: var(--slate-50);
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .comparison-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--slate-200);
            transition: all 0.3s ease;
        }

        .comparison-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
        }

        .comparison-card.other {
            opacity: 0.9;
        }

        .comparison-card.tenet {
            border-color: var(--tenet-primary);
            box-shadow: 0 8px 30px rgba(61, 106, 122, 0.12);
        }

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

        .comparison-badge {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--slate-50);
        }

        .tenet .comparison-badge {
            background: rgba(61, 106, 122, 0.08);
        }

        .comparison-card-header h3 {
            font-size: 20px;
            font-weight: 700;
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--slate-100);
            font-size: 15px;
            color: var(--slate-600);
        }

        .comparison-list li:last-child {
            border-bottom: none;
        }

        .icon-wrap {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Pillars */
        .pillars {
            padding: 100px 5%;
            background: var(--white);
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pillar-card {
            background: var(--slate-50);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid var(--slate-200);
            transition: all 0.3s ease;
        }

        .pillar-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border-color: var(--tenet-light);
            background: var(--white);
        }

        .pillar-icon {
            width: 56px;
            height: 56px;
            background: var(--white);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        .pillar-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .pillar-card p {
            font-size: 14px;
            color: var(--slate-500);
            line-height: 1.6;
        }

        /* Featured Pillar Card */
        .pillar-featured {
            max-width: 1200px;
            margin: 0 auto 40px;
            background: linear-gradient(135deg, var(--tenet-primary) 0%, var(--tenet-deep) 100%);
            border-radius: 24px;
            padding: 48px 56px;
            color: var(--white);
        }

        .pillar-featured-content {
            display: flex;
            align-items: center;
            gap: 48px;
        }

        .pillar-featured-icon {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pillar-featured-text h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 12px;
        }

        .pillar-featured-text > p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 28px;
            max-width: 700px;
        }

        .pillar-featured-stats {
            display: flex;
            gap: 40px;
        }

        .pillar-featured-stat {
            display: flex;
            flex-direction: column;
        }

        .pillar-featured-stat .stat-value {
            font-family: var(--font-header);
            font-size: 32px;
            font-weight: 800;
            color: var(--white);
        }

        .pillar-featured-stat .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 1024px) {
            .pillar-featured {
                padding: 40px 32px;
            }

            .pillar-featured-content {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .pillar-featured-text > p {
                max-width: 100%;
            }

            .pillar-featured-stats {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .pillar-featured {
                padding: 32px 24px;
            }

            .pillar-featured-icon {
                width: 80px;
                height: 80px;
            }

            .pillar-featured-icon svg {
                width: 36px;
                height: 36px;
            }

            .pillar-featured-text h3 {
                font-size: 24px;
            }

            .pillar-featured-text > p {
                font-size: 15px;
            }

            .pillar-featured-stats {
                flex-wrap: wrap;
                gap: 24px;
            }

            .pillar-featured-stat .stat-value {
                font-size: 26px;
            }
        }

        /* Process - Dark Mode Section */
        .process {
            padding: 140px 8%;
            background: var(--tenet-deep);
            position: relative;
            overflow: hidden;
        }

        /* Vanta canvas opacity for process section */
        .process canvas {
            opacity: 0.4;
        }

        .process .section-header,
        .process .process-content {
            position: relative;
            z-index: 2;
        }

        /* Dark mode section header */
        .process .section-header h2 {
            color: var(--white);
        }

        .process .section-header p {
            color: rgba(255, 255, 255, 0.7);
        }

        .process .section-tag {
            color: var(--accent-teal);
        }

        .process-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .process-step {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 32px;
            cursor: pointer;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-height: 140px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .process-step:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .process-step.active {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-teal);
            box-shadow: 0 8px 30px rgba(20, 184, 166, 0.15);
        }

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

        .step-number {
            font-family: var(--font-header);
            font-size: 36px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.3);
            transition: color 0.4s ease;
            min-width: 50px;
        }

        .process-step.active .step-number {
            background: linear-gradient(135deg, var(--accent-teal), var(--success));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process-step h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--white);
        }

        .process-step p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            padding-left: 66px;
            line-height: 1.6;
        }

        .process-visual {
            position: sticky;
            top: 120px;
            background: linear-gradient(135deg, var(--tenet-primary) 0%, var(--tenet-deep) 100%);
            border-radius: 20px;
            height: 580px;
            color: var(--white);
            overflow: hidden;
        }

        .process-blocks {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .process-block {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 40px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .process-block.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .process-block-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
        }

        .process-block-icon svg {
            width: 40px;
            height: 40px;
        }

        .process-block-content h5 {
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 16px;
        }

        .process-block-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            max-width: 320px;
        }

        /* Stats */
        .stats {
            padding: 100px 5%;
            background: var(--tenet-dark);
            color: var(--white);
        }

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

        .stat-card {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-4px);
        }

        .stat-card .stat-value {
            font-family: var(--font-header);
            font-size: 48px;
            font-weight: 800;
            color: var(--tenet-light);
            line-height: 1;
        }

        .stat-card .stat-label {
            font-size: 15px;
            color: var(--slate-400);
            margin-top: 12px;
        }

        /* Features */
        .features {
            padding: 100px 5%;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--slate-50);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid var(--slate-200);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
            border-color: var(--tenet-light);
            background: var(--white);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--white);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--slate-500);
            line-height: 1.6;
        }

        /* Platform Preview / Mockup Section */
        .platform-preview {
            padding: 100px 5%;
            background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
            overflow: hidden;
        }

        .mockup-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .mockup-main {
            position: relative;
            z-index: 1;
        }

        .mockup-browser {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            border: 1px solid var(--slate-200);
        }

        .browser-header {
            background: var(--slate-100);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid var(--slate-200);
        }

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

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

        .browser-dots span:first-child { background: #ff5f57; }
        .browser-dots span:nth-child(2) { background: #ffbd2e; }
        .browser-dots span:last-child { background: #28ca42; }

        .browser-url {
            flex: 1;
            background: var(--white);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            color: var(--slate-500);
            font-family: var(--font-body);
        }

        .browser-content {
            display: flex;
            min-height: 420px;
        }

        /* Mock Sidebar */
        .mock-sidebar {
            width: 180px;
            background: var(--slate-900);
            padding: 16px 0;
            flex-shrink: 0;
        }

        .mock-logo-area {
            height: 32px;
            margin: 0 16px 20px;
            background: linear-gradient(90deg, var(--tenet-primary) 0%, var(--tenet-light) 100%);
            border-radius: 6px;
            opacity: 0.9;
        }

        .mock-nav-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            color: var(--slate-400);
            font-size: 13px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .mock-nav-item:hover {
            background: rgba(255,255,255,0.05);
            color: var(--white);
        }

        .mock-nav-item.active {
            background: rgba(61, 106, 122, 0.2);
            color: var(--tenet-light);
            border-left: 3px solid var(--tenet-primary);
        }

        .mock-nav-icon {
            width: 16px;
            height: 16px;
            background: currentColor;
            border-radius: 4px;
            opacity: 0.6;
        }

        /* Mock Content */
        .mock-content {
            flex: 1;
            background: var(--slate-50);
            padding: 20px;
        }

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

        .mock-title {
            font-family: var(--font-header);
            font-size: 18px;
            font-weight: 700;
            color: var(--slate-800);
        }

        .mock-status {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 600;
        }

        .mock-panels {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .mock-panel {
            background: var(--white);
            border-radius: 12px;
            padding: 20px;
            border: 1px solid var(--slate-200);
        }

        .mock-panel-header {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--slate-400);
            margin-bottom: 12px;
        }

        .mock-field {
            margin-bottom: 10px;
        }

        .mock-label {
            display: block;
            font-size: 10px;
            color: var(--slate-400);
            margin-bottom: 2px;
        }

        .mock-value {
            font-size: 13px;
            font-weight: 600;
            color: var(--slate-700);
        }

        /* Timeline */
        .mock-timeline {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: 20px 0;
            padding: 16px;
            background: var(--slate-50);
            border-radius: 8px;
        }

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

        .node-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--tenet-primary);
            margin: 0 auto 6px;
            position: relative;
        }

        .node-dot::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            background: var(--white);
            border-radius: 50%;
        }

        .node-dot.pending {
            background: var(--slate-300);
        }

        .node-label {
            font-family: var(--font-header);
            font-size: 16px;
            font-weight: 800;
            color: var(--slate-800);
        }

        .node-status {
            font-size: 10px;
            color: var(--tenet-primary);
            font-weight: 600;
        }

        .node-status.awaiting {
            color: var(--slate-400);
        }

        .timeline-line {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--tenet-primary) 0%, var(--slate-300) 100%);
            margin: 0 12px;
            margin-bottom: 30px;
            border-radius: 2px;
        }

        /* Charges */
        .mock-charges {
            margin-top: 16px;
        }

        .charge-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 13px;
            color: var(--slate-600);
            border-bottom: 1px solid var(--slate-100);
        }

        .charge-row.total {
            border-bottom: none;
            padding-top: 12px;
            margin-top: 4px;
            border-top: 2px solid var(--slate-200);
            font-weight: 700;
            color: var(--slate-800);
        }

        .charge-amount {
            font-family: var(--font-header);
            font-weight: 600;
            color: var(--slate-800);
        }

        .charge-row.total .charge-amount {
            color: var(--tenet-primary);
            font-size: 15px;
        }

        /* Floating Feature Cards */
        .mockup-features {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: -30px;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .mockup-feature-card {
            background: var(--white);
            border-radius: 12px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
            border: 1px solid var(--slate-100);
            animation: floatUp 0.6s ease-out backwards;
            animation-delay: var(--delay);
        }

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

        .feature-card-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(61, 106, 122, 0.1);
            color: var(--tenet-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-card-icon.green {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
        }

        .feature-card-icon.blue {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }

        .feature-card-text {
            display: flex;
            flex-direction: column;
        }

        .feature-card-text strong {
            font-size: 14px;
            font-weight: 700;
            color: var(--slate-800);
        }

        .feature-card-text span {
            font-size: 12px;
            color: var(--slate-500);
        }

        @media (max-width: 1024px) {
            .browser-content {
                min-height: 360px;
            }

            .mock-sidebar {
                width: 140px;
            }

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

            .mockup-features {
                flex-wrap: wrap;
                margin-top: -20px;
            }
        }

        @media (max-width: 768px) {
            .mock-sidebar {
                display: none;
            }

            .browser-content {
                min-height: 300px;
            }

            .mock-timeline {
                flex-direction: column;
                gap: 8px;
            }

            .timeline-line {
                width: 3px;
                height: 30px;
                margin: 8px 0;
                background: linear-gradient(180deg, var(--tenet-primary) 0%, var(--slate-300) 100%);
            }

            .mockup-features {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .mockup-feature-card {
                width: 100%;
                max-width: 280px;
            }
        }

        /* Mock View States */
        .mock-view {
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .mock-view.active {
            display: block;
        }

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

        .mock-status.blue {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }

        .mock-status.purple {
            background: rgba(147, 51, 234, 0.1);
            color: #9333ea;
        }

        /* Line Haul View */
        .mock-route-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mock-route-card {
            background: var(--white);
            border: 1px solid var(--slate-200);
            border-radius: 10px;
            padding: 16px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .route-terminals {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 4px;
        }

        .terminal-badge {
            background: var(--tenet-primary);
            color: var(--white);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 700;
            font-family: var(--font-header);
        }

        .route-arrow {
            color: var(--slate-400);
            font-size: 14px;
        }

        .route-meta {
            font-size: 12px;
            color: var(--slate-500);
        }

        .route-status {
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
        }

        .route-status.in-transit {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
        }

        .route-status.scheduled {
            background: rgba(234, 179, 8, 0.1);
            color: #ca8a04;
        }

        /* Dispatch View */
        .driver-list, .load-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .driver-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            background: var(--slate-50);
            border-radius: 8px;
        }

        .driver-avatar {
            width: 36px;
            height: 36px;
            background: var(--tenet-primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
        }

        .driver-info {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .driver-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--slate-700);
        }

        .driver-vehicle {
            font-size: 11px;
            color: var(--slate-500);
        }

        .driver-status {
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 10px;
            font-weight: 600;
        }

        .driver-status.available {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
        }

        .driver-status.on-route {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }

        .load-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            background: var(--slate-50);
            border-radius: 8px;
        }

        .load-info {
            display: flex;
            flex-direction: column;
        }

        .load-id {
            font-size: 13px;
            font-weight: 600;
            color: var(--slate-700);
        }

        .load-route {
            font-size: 11px;
            color: var(--slate-500);
        }

        .assign-btn {
            background: var(--tenet-primary);
            color: var(--white);
            border: none;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Warehouse View */
        .scan-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .scan-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px;
            background: var(--slate-50);
            border-radius: 8px;
        }

        .scan-icon {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        .scan-icon.in {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
        }

        .scan-icon.out {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }

        .scan-info {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .scan-id {
            font-size: 13px;
            font-weight: 600;
            color: var(--slate-700);
        }

        .scan-time {
            font-size: 11px;
            color: var(--slate-500);
        }

        .scan-location {
            font-size: 11px;
            font-weight: 600;
            color: var(--tenet-primary);
        }

        .bay-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-bottom: 12px;
        }

        .bay-cell {
            padding: 12px 8px;
            border-radius: 8px;
            text-align: center;
            font-size: 11px;
            font-weight: 700;
            font-family: var(--font-header);
        }

        .bay-cell.occupied {
            background: rgba(61, 106, 122, 0.15);
            color: var(--tenet-primary);
        }

        .bay-cell.empty {
            background: var(--slate-100);
            color: var(--slate-400);
        }

        .bay-legend {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .bay-legend span {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            color: var(--slate-500);
        }

        .legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 3px;
        }

        .legend-dot.occupied {
            background: rgba(61, 106, 122, 0.3);
        }

        .legend-dot.empty {
            background: var(--slate-200);
        }

        /* Invoicing View */
        .invoice-table {
            background: var(--white);
            border-radius: 10px;
            border: 1px solid var(--slate-200);
            overflow: hidden;
        }

        .invoice-header {
            display: grid;
            grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
            padding: 12px 16px;
            background: var(--slate-50);
            font-size: 11px;
            font-weight: 700;
            color: var(--slate-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .invoice-row {
            display: grid;
            grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
            padding: 14px 16px;
            border-top: 1px solid var(--slate-100);
            font-size: 13px;
            align-items: center;
        }

        .invoice-id {
            font-weight: 600;
            color: var(--tenet-primary);
        }

        .invoice-amount {
            font-family: var(--font-header);
            font-weight: 600;
            color: var(--slate-700);
        }

        .invoice-status {
            padding: 4px 10px;
            border-radius: 100px;
            font-size: 10px;
            font-weight: 600;
            text-align: center;
            width: fit-content;
        }

        .invoice-status.paid {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
        }

        .invoice-status.pending {
            background: rgba(234, 179, 8, 0.1);
            color: #ca8a04;
        }

        .invoice-status.synced {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }

        /* Cases */
        .cases {
            padding: 100px 5%;
            background: var(--white);
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .case-card {
            background: var(--slate-50);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--slate-200);
            transition: all 0.3s ease;
        }

        .case-card:hover {
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .case-tag {
            display: inline-block;
            background: rgba(61, 106, 122, 0.08);
            color: var(--tenet-primary);
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .case-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .case-card > p {
            font-size: 15px;
            color: var(--slate-500);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .case-stats {
            display: flex;
            gap: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--slate-200);
        }

        .case-stat-value {
            font-family: var(--font-header);
            font-size: 28px;
            font-weight: 800;
            color: var(--tenet-primary);
        }

        .case-stat-label {
            font-size: 13px;
            color: var(--slate-500);
        }

        /* Team */
        .team {
            padding: 100px 5%;
            background: var(--slate-50);
        }

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

        .team-member {
            background: var(--white);
            border-radius: 20px;
            padding: 32px;
            border: 1px solid var(--slate-200);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.06);
        }

        .team-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .team-photo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--tenet-primary) 0%, var(--tenet-deep) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: var(--font-header);
            font-size: 24px;
            font-weight: 700;
        }

        .team-photo-img {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            object-fit: cover;
        }

        .team-info h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .team-info p {
            font-size: 14px;
            color: var(--tenet-primary);
            font-weight: 600;
        }

        .team-bio {
            font-size: 14px;
            color: var(--slate-600);
            line-height: 1.7;
        }

        /* FAQ */
        .faq {
            padding: 100px 5%;
            background: var(--white);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: start;
        }

        .faq-intro h2 {
            font-size: clamp(32px, 4vw, 42px);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .faq-intro > p {
            font-size: 17px;
            color: var(--slate-600);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .faq-item {
            background: var(--slate-50);
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--slate-200);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--tenet-light);
        }

        .faq-question {
            width: 100%;
            padding: 22px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-family: var(--font-body);
        }

        .faq-question span {
            font-size: 15px;
            font-weight: 600;
            color: var(--slate-800);
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--slate-200);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        /* FAQ answer – collapsed by default */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                        padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0 24px;
        }

        .faq-answer p {
            font-size: 15px;
            color: var(--slate-600);
            line-height: 1.7;
            margin: 0;
            padding-bottom: 22px;
        }

        /* FAQ item – active / open state */
        .faq-item.active {
            border-color: var(--tenet-primary);
            background: var(--white);
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
            padding: 0 24px;
        }

        .faq-item.active .faq-icon {
            background: var(--tenet-primary);
            transform: rotate(45deg);
        }

        .faq-item.active .faq-icon svg {
            stroke: var(--white);
        }

        .faq-item.active .faq-question span {
            color: var(--tenet-primary);
        }

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

        .testimonial-main {
            max-width: 900px;
            margin: 0 auto 60px;
            text-align: center;
        }

        .testimonial-quote {
            font-size: clamp(20px, 2.5vw, 26px);
            font-style: italic;
            color: var(--slate-700);
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .testimonial-avatar {
            width: 56px;
            height: 56px;
            background: var(--tenet-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-info h4 {
            font-size: 15px;
            font-weight: 700;
        }

        .testimonial-info p {
            font-size: 14px;
            color: var(--slate-500);
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

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

        .testimonial-card > p {
            font-size: 15px;
            color: var(--slate-600);
            margin-bottom: 20px;
            line-height: 1.7;
        }

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

        .testimonial-card-avatar {
            width: 44px;
            height: 44px;
            background: var(--slate-200);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--tenet-primary);
            font-weight: 700;
            font-size: 14px;
        }

        .testimonial-card-info h4 {
            font-size: 14px;
            font-weight: 700;
        }

        .testimonial-card-info p {
            font-size: 13px;
            color: var(--slate-500);
        }

        /* Contact */
        .contact {
            padding: 100px 5%;
            background: var(--white);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
            background: var(--slate-50);
            border-radius: 24px;
            padding: 60px;
            border: 1px solid var(--slate-200);
        }

        .contact-info h2 {
            font-size: 34px;
            margin-bottom: 16px;
            font-weight: 800;
        }

        .contact-info > p {
            font-size: 16px;
            color: var(--slate-600);
            margin-bottom: 40px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .contact-detail-icon {
            width: 48px;
            height: 48px;
            background: var(--white);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-detail-text h4 {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .contact-detail-text p {
            font-size: 14px;
            color: var(--slate-500);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

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

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--slate-700);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 16px;
            border: 1px solid var(--slate-300);
            border-radius: 10px;
            font-size: 15px;
            font-family: var(--font-body);
            transition: all 0.3s ease;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--tenet-primary);
            box-shadow: 0 0 0 3px rgba(61, 106, 122, 0.1);
        }

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

        .form-submit {
            background: var(--tenet-primary);
            color: var(--white);
            padding: 16px 32px;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: var(--font-body);
        }

        .form-submit:hover {
            background: var(--tenet-accent);
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background: var(--tenet-dark);
            color: var(--white);
            padding: 80px 5% 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto 60px;
        }

        .footer-logo {
            height: 52px;
            width: auto;
            margin-bottom: 20px;
            filter: brightness(1.5);
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--slate-400);
            line-height: 1.7;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 12px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col a {
            font-size: 14px;
            color: var(--slate-400);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--tenet-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 14px;
            color: var(--slate-500);
        }

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

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--tenet-primary);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content,
            .portal-content,
            .faq-grid {
                grid-template-columns: 1fr;
            }

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

            .process-content {
                grid-template-columns: 1fr;
            }

            .process-visual {
                position: static;
                order: -1;
                min-height: 350px;
            }

            .process-block-content h5 {
                font-size: 22px;
            }

            .process-block-content p {
                font-size: 15px;
            }

            .process-step {
                min-height: auto;
                padding: 24px;
            }

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

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

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

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

        @media (max-width: 768px) {
            .nav {
                left: 16px;
                right: 16px;
                transform: none;
                width: calc(100% - 32px);
                padding: 12px 20px;
                justify-content: space-between;
            }

            .nav-logo img {
                height: 36px;
            }

            .nav-links {
                display: none;
            }

            .nav-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: inline-flex;
            }

            .hero-cards {
                grid-template-columns: 1fr;
            }

            .floating-stats {
                flex-direction: column;
            }

            .stats-grid,
            .features-grid,
            .pillars-grid,
            .cases-grid,
            .testimonial-cards {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                padding: 40px 24px;
            }

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

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

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

            .pr-banner-content {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .pr-banner-text {
                font-size: 13px;
            }

            .pr-banner-cta {
                width: 100%;
                text-align: center;
            }

            .pr-banner-close {
                position: absolute;
                top: 8px;
                right: 8px;
            }
        }

        /* Press Release Slide-in Banner */
        .pr-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--slate-900);
            border-top: 2px solid var(--tenet-primary);
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
        }

        .pr-banner.visible {
            transform: translateY(0);
        }

        .pr-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        .pr-banner-badge {
            background: var(--tenet-primary);
            color: var(--white);
            font-family: var(--font-header);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            padding: 4px 12px;
            border-radius: 20px;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .pr-banner-text {
            color: var(--slate-200);
            font-family: var(--font-body);
            font-size: 15px;
            line-height: 1.5;
            flex: 1;
        }

        .pr-banner-cta {
            background: var(--tenet-primary);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 8px;
            text-decoration: none;
            white-space: nowrap;
            flex-shrink: 0;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .pr-banner-cta:hover {
            background: var(--tenet-accent);
            transform: translateY(-1px);
        }

        .pr-banner-close {
            background: none;
            border: none;
            color: var(--slate-400);
            font-size: 24px;
            cursor: pointer;
            padding: 4px 8px;
            line-height: 1;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }

        .pr-banner-close:hover {
            color: var(--white);
        }