/* ========================================
   Nōmoz Landing Page — Design System
   Premium corporate with modern edge
   ======================================== */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Brand Colors — from existing app */
    --navy: rgb(29, 48, 105);
    --navy-dark: rgb(16, 28, 65);
    --navy-deeper: rgb(10, 18, 42);
    --navy-light: rgba(29, 48, 105, 0.08);
    --navy-medium: rgba(29, 48, 105, 0.15);

    /* Accent */
    --teal: #17A2B8;
    --teal-dark: #138496;
    --teal-light: rgba(23, 162, 184, 0.1);
    --teal-glow: rgba(23, 162, 184, 0.25);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #F3F4F6;
    --mid-gray: #E5E7EB;
    --text-gray: #6B7280;
    --text-dark: #374151;
    --text-heading: #111827;

    /* Functional */
    --success: #0F9D58;
    --error: #DC3545;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(29, 48, 105, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(29, 48, 105, 0.12);

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-spacing: 80px;
    --container-width: 1400px;
    --container-narrow: 800px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition: all 0.4s var(--ease-out);
    --transition-fast: all 0.2s ease;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-heading);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   Section Utilities
   ======================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 72px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-light);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-heading);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.65;
}

/* ========================================
   Animation Utilities
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mid-gray);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    margin-top: 10px;
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s var(--ease-out);
    align-items:baseline;
    
}

.navbar.scrolled .nav-logo-img {
    filter: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: var(--text-gray);
}

.navbar.scrolled .nav-link:hover {
    color: var(--navy);
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--teal);
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(23, 162, 184, 0.3);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-heading);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-deeper) 100%);
    padding: 80px 0 40px;
    overflow: hidden;
    border-radius: 25px 25px;
    margin-left: 6px;
    margin-right: 6px;
    margin-top: 6px;
    min-height: 98vh;
}

/* Ambient orb effects */
.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg-effects::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(23, 162, 184, 0.15) 30%,
        transparent 50%,
        rgba(99, 102, 241, 0.12) 70%,
        transparent 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 8s ease-in-out infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    background: var(--teal);
    top: -200px;
    right: -100px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--teal);
    top: 50%;
    left: 50%;
    animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 40px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, calc(-50% + 30px)); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--teal) 0%, #6dd5ed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-value-props {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.value-icon {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--white);
    background: var(--teal);
    padding: 14px 32px;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(23, 162, 184, 0.35);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 32px;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero-stat-value {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--teal);
}
.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual — App Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 500px;
    perspective: 1000px;
}

.placeholder-mock {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s var(--ease-out);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.placeholder-mock:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mock-header {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mock-body {
    display: flex;
    min-height: 320px;
}

.mock-sidebar {
    width: 30%;
    padding: 20px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mock-line {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}

.mock-line.short { width: 60%; }
.mock-line.medium { width: 80%; }

.mock-chat-bubble {
    padding: 14px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mock-chat-bubble.user {
    background: rgba(23, 162, 184, 0.12);
    border: 1px solid rgba(23, 162, 184, 0.2);
    margin-left: 20%;
}

.mock-chat-bubble.ai {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-right: 10%;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.feature-card {
    padding: 40px 36px;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: 16px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--teal));
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--navy);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--navy);
}

.feature-card:hover .feature-icon svg {
    color: var(--white);
}

.feature-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.features-cta {
    text-align: center;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--white);
    background: var(--teal);
    padding: 14px 36px;
    border-radius: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(23, 162, 184, 0.3);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: var(--section-spacing) 0;
    background: var(--off-white);
}

.steps-container {
    max-width: 1400px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.step-card {
    flex: 1;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 64px;
    color: rgba(29, 48, 105, 0.08);
    letter-spacing: -2px;
    margin-bottom: 16px;
    line-height: 1;
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: var(--navy-medium);
}

.step-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--mid-gray), var(--teal), var(--mid-gray));
    margin-top: 68px;
    flex-shrink: 0;
    opacity: 0.5;
}

.step-example {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--teal-light);
    border-left: 3px solid var(--teal);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: var(--text-dark);
    text-align: left;
}

.step-metric {
    margin-top: 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--teal);
}

.metric-label {
    font-size: 13px;
    color: var(--text-gray);
}

/* ========================================
   USE CASES
   ======================================== */
.use-cases {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.use-case-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: 16px;
    transition: var(--transition);
}

.use-case-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.use-case-icon svg {
    width: 30px;
    height: 30px;
}

.use-case-icon.compliance {
    background: rgba(15, 157, 88, 0.1);
}

.use-case-icon.compliance svg { 
    color: #0F9D58; 
}

.use-case-icon.tracking {
    background: rgba(23, 162, 184, 0.1);
}

.use-case-icon.tracking svg {
     color: #17A2B8; 
}

.use-case-icon.comparison {
    background: rgba(99, 102, 241, 0.1);
    padding: 0;
}

.use-case-icon.comparison svg {
     color: #6366f1; 
}

.use-case-icon.legal {
    background: rgba(245, 158, 11, 0.1);
}

.use-case-icon.legal svg { 
    color: #f59e0b; 
}

.use-case-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.use-case-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 20px;
}

.use-case-example {
    padding: 16px;
    background: var(--off-white);
    border-radius: 10px;
    border: 1px solid var(--mid-gray);
}

.example-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    margin-bottom: 4px;
    display: block;
}

.use-case-example p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-heading);
    margin-bottom: 8px;
    font-style: italic;
}

.example-result {
    font-size: 13px;
    color: var(--text-gray);
}

/* ========================================
   PRECISION SECTION
   ======================================== */
.precision {
    padding: var(--section-spacing) 0;
    background: var(--off-white);
}

.precision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.precision-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: 16px;
    transition: var(--transition);
}

.precision-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

.precision-card.highlight {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border: none;
    grid-column: span 2;
    text-align: center;
    padding: 56px 48px;
}

.precision-card.highlight h3 {
    color: var(--white);
}

.precision-card.highlight p {
    color: rgba(255, 255, 255, 0.7);
}

.precision-icon {
    width: 44px;
    height: 44px;
    background: var(--navy-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


.precision-icon svg {
    width: 22px;
    height: 22px;
    color: var(--navy);
}

.precision-card.highlight .precision-icon {
    background: rgba(23, 162, 184, 0.15);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 24px;
}

.precision-card.highlight .precision-icon svg {
    color: var(--teal);
    width: 36px;
    height: 36px;
}

.precision-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.precision-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
}

.zero-hallucination-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.zh-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.zh-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(23, 162, 184, 0.2);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison {
    padding: var(--section-spacing) 0;
    background: var(--off-white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 48px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--mid-gray);
    table-layout: fixed;
}

.comparison-table thead tr {
    background: var(--off-white);
}

.comparison-table th {
    padding: 24px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

/*.comparison-table th:first-child {
    width: 300px;
}*/

.col-traditional {
    background: rgba(220, 53, 69, 0.05);
    color: var(--text-dark);
}

.col-generic-ai {
    background: rgba(255, 193, 7, 0.08);
    color: var(--text-dark);
}

.col-after {
    color: var(--navy);
    background: var(--navy-light) !important;
}

.col-nomoz {
    background: var(--navy-light);
    color: var(--navy);
    font-weight: 500;
}

.col-icon {
    margin-right: 8px;
}

.comparison-table td {
    padding: 16px 20px;
    font-size: 14px;
    border-top: 1px solid var(--mid-gray);
}

.row-label {
    font-weight: 600;
    color: var(--text-heading);
}

.comparison-table td.col-before {
    color: var(--text-gray);
}

.comparison-table td.col-after {
    color: var(--navy);
    font-weight: 500;
    background: var(--navy-light);
}

.comparison-metric {
    text-align: center;
}

.metric-big {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--navy);
    line-height: 1;
}

.metric-percent {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--teal);
}

.metric-text {
    font-size: 17px;
    color: var(--text-gray);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: var(--section-spacing) 0;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--teal);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
}

.testimonials .section-tag {
    background: rgba(23, 162, 184, 0.15);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--navy));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.author-role {
    font-size: 12px;
    color: var(--teal);
    font-weight: 500;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: var(--section-spacing) 0;
    background: var(--off-white);
}

.faq-container {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq-category {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--navy-light);
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-item {
    border-bottom: 1px solid var(--mid-gray);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-heading);
    cursor: pointer;
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--navy);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-gray);
    transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   SECURITY
   ======================================== */
.security {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.security-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

.security-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
    border-color: transparent;
}

.security-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.security-icon svg {
    width: 26px;
    height: 26px;
    color: var(--navy);
}

.security-card h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.security-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 80px 0;
    background: var(--off-white);
}

.about-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.about-logo {
    height: 40px;
    width: auto;
    margin-bottom: 24px;
}

.about-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 16px;
}

.about-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.75;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: var(--section-spacing) 0;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-deeper) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: var(--teal);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.06;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--white);
    background: var(--teal);
    padding: 16px 40px;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(23, 162, 184, 0.35);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 32px;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
}
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cta-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.cta-form input:focus,
.cta-form textarea:focus {
    border-color: var(--teal);
}
.cta-form .btn-cta-primary {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    margin-top: 4px;
}
.cta-form-note {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
.cta-form-note a {
    color: var(--teal);
    text-decoration: underline;
}
.cta-form-note a:hover {
    color: var(--white);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 4px;
}
.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--teal);
    cursor: pointer;
    flex-shrink: 0;
}
.form-checkbox a {
    color: var(--teal);
    text-decoration: underline;
}
.form-checkbox a:hover {
    color: var(--white);
}

.form-success {
    text-align: center;
    padding: 32px;
}
.form-success svg {
    color: var(--teal);
    margin-bottom: 16px;
}
.form-success h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 8px;
}
.form-success p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy-deeper);
    padding: 64px 0 32px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    height: 28px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-link {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--teal);
    transform: translateY(-2px);
}

.social-link svg {
    width: 25px;
    height: 25px;
    color: rgba(255, 255, 255, 0.6);
}

.social-link:hover svg {
    color: var(--white);
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 16px;
}

.footer-disclaimer strong {
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   RESPONSIVE — Tablet (768px)
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-spacing: 80px;
    }
    

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-direction: column;
        align-items: stretch;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0 auto;
    }

    .zero-hallucination-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 64px;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
   

    .cta-form-row {
    grid-template-columns: 1fr;
    }

    .hero-stats-bar {
    flex-wrap: wrap;
    gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .section-container {
        padding: 0 20px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--mid-gray);
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        color: var(--text-heading) !important;
        font-size: 16px;
    }

    .nav-cta {
        text-align: center;
    }

    .nav-container {
        padding: 0 20px;
    }

    /* Hero mobile */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 0 20px;
    }

    .hero-visual {
        display: none;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        text-align: center;
    }

    /* Features mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Use cases mobile */
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    /* Precision mobile */
    .precision-grid {
        grid-template-columns: 1fr;
    }

    .precision-card.highlight {
        grid-column: span 1;
    }

    .zero-hallucination-steps {
        grid-template-columns: 1fr 1fr;
    }

    /* Security mobile */
    .security-grid {
        grid-template-columns: 1fr;
    }

    /* Comparison mobile */
    .comparison-table-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px;
    }

    .metric-number {
        font-size: 56px;
    }

    /* Footer mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* CTA mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .zero-hallucination-steps {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
        font-size: 13px;
    }
}
