/* ==========================================
   SCALEFIELD SECURE — Enterprise Website
   Color palette derived from CYBERTEC brand:
   - Deep navy: #0c1824
   - Dark blue: #132d42
   - Mid blue: #1a3a52
   - Accent cyan: #48b5e0
   - Light cyan: #7dd3f0
   - White: #ffffff
   ========================================== */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 800;
    font-display: swap;
    src: url('/fonts/inter-variable.woff2') format('woff2');
}

:root {
    --navy: #060e18;
    --navy-light: #0d1f33;
    --navy-mid: #13304d;
    --blue-dark: #1a4a72;
    --accent: #3db8f5;
    --accent-bright: #5ecbff;
    --accent-light: #8ee0ff;
    --accent-vivid: #00a3ff;
    --accent-purple: #7c6df0;
    --accent-teal: #22d3bb;
    --accent-glow: rgba(61, 184, 245, 0.12);
    --accent-glow-strong: rgba(61, 184, 245, 0.22);
    --gradient-primary: linear-gradient(135deg, #3db8f5 0%, #22d3bb 100%);
    --gradient-hero: linear-gradient(160deg, #060e18 0%, #0d1f33 30%, #13304d 60%, #1a4a72 100%);
    --gradient-section: linear-gradient(160deg, #060e18 0%, #0d2035 40%, #163a5a 100%);
    --gradient-card: linear-gradient(135deg, rgba(61, 184, 245, 0.06) 0%, rgba(34, 211, 187, 0.03) 100%);
    --gradient-accent: linear-gradient(135deg, #3db8f5 0%, #7c6df0 100%);
    --white: #ffffff;
    --gray-100: #f0f5fa;
    --gray-200: #dce5f0;
    --gray-300: #c0cede;
    --gray-400: #8a9bb5;
    --gray-500: #5f7393;
    --gray-600: #415068;
    --gray-700: #2a3548;
    --text-primary: #0a1628;
    --text-secondary: #3d5068;
    --text-light: rgba(255, 255, 255, 0.88);
    --text-muted: rgba(255, 255, 255, 0.5);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.04), 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 0 40px rgba(61, 184, 245, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

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

/* ========== 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(6, 14, 24, 0.92);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(61, 184, 245, 0.06);
}

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

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

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.logo-secure {
    color: var(--accent);
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #5ecbff 0%, #3de8d0 100%) !important;
    box-shadow: 0 4px 20px rgba(61, 184, 245, 0.3) !important;
}

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

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(61, 184, 245, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61, 184, 245, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 109, 240, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(61, 184, 245, 0.12) 0%, rgba(34, 211, 187, 0.04) 40%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(72, 181, 224, 0.1);
    border: 1px solid rgba(72, 181, 224, 0.2);
    border-radius: 100px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero-accent {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.925rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    line-height: 1;
}

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


.btn-primary:hover {
    background: linear-gradient(135deg, #5ecbff 0%, #3de8d0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(61, 184, 245, 0.35), 0 0 20px rgba(34, 211, 187, 0.15);
}

/* Disabled state for primary button */
.btn-primary:disabled,
.btn-primary:disabled:hover {
    background: #e2e8f0;
    /* Flat, muted gray to replace the gradient */
    color: #94a3b8;
    /* Faded text color */
    transform: translateY(0);
    /* Prevents the button from jumping on hover */
    box-shadow: none;
    /* Removes the glowing shadow */
    cursor: not-allowed;
    /* Shows the standard "stop" mouse cursor */
    opacity: 0.6;
    /* Fades the whole button slightly */
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent-bright);
    background: rgba(61, 184, 245, 0.08);
    box-shadow: 0 0 20px rgba(61, 184, 245, 0.1);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    background: var(--gradient-primary);
    color: var(--navy);
    border-radius: var(--radius-sm);
}

.btn-sm:hover {
    background: linear-gradient(135deg, #5ecbff 0%, #3de8d0 100%);
    box-shadow: 0 4px 16px rgba(61, 184, 245, 0.3);
}

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

/* ========== TAGLINE BAR ========== */
.tagline-bar {
    background: var(--gradient-primary);
    padding: 20px 0;
    text-align: center;
}

.tagline-bar p {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.3px;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: #3db8f51f;
    color: var(--blue-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== FEATURES ========== */
.features {
    margin: 60px 0;
    background: var(--white);
}

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

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

.feature-card {
    padding: 36px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    border-color: rgba(61, 184, 245, 0.3);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    transform: translateY(-4px);
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 184, 245, 0.12), rgba(34, 211, 187, 0.08));
    border-radius: var(--radius);
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

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

/* ========== DATABASES ========== */
.databases {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.db-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.db-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.db-icon {
    margin-bottom: 20px;
}

.db-card-cta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.db-card-more .db-card-cta {
    justify-content: end;
}

.db-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.db-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.db-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
}

.db-card-more {
    border-style: dashed;
    border-color: var(--gray-300);
}

.db-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.db-link:hover {
    color: var(--blue-dark);
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 100px 0;
    background: var(--gradient-section);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(61, 184, 245, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.how-it-works .section-header h2 {
    color: var(--white);
}

.how-it-works .section-header p {
    color: var(--text-light);
}

.how-it-works .section-tag {
    background: rgba(72, 181, 224, 0.15);
}

.process-steps {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
    min-width: 60px;
    text-align: right;
    padding-top: 4px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin-left: 87px;
    opacity: 0.2;
}

/* ========== ARCHITECTURE AT A GLANCE ========== */
.architecture-glance {
    margin: 100px 0;
    background: var(--white);
}

.architecture-image {
    margin-bottom: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    position: relative;
}

.architecture-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.architecture-image img {
    width: 100%;
    display: block;
}

.arch-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.arch-zone {
    text-align: center;
    padding: 24px;
}

.arch-zone-number {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gradient-primary);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.arch-zone h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* ========== COMPLIANCE MEETS AI ========== */
.ai-section {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.ai-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
    transition: var(--transition);
}

.ai-feature:hover {
    border-color: rgba(61, 184, 245, 0.3);
    box-shadow: var(--shadow-sm), 0 0 20px rgba(61, 184, 245, 0.06);
    background: var(--gradient-card);
}

.ai-feature:last-child {
    margin-bottom: 0;
}

.ai-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 184, 245, 0.12), rgba(34, 211, 187, 0.08));
    border-radius: var(--radius-sm);
    color: var(--accent);
}

.ai-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ai-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.ai-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ai-image img {
    width: 100%;
    display: block;
}

/* ========== SHOWCASE ========== */
.showcase {
    padding: 100px 0;
    background: var(--gradient-section);
    position: relative;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 211, 187, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.showcase::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 109, 240, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.showcase .section-header h2 {
    color: var(--white);
}

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

.showcase .section-tag {
    background: rgba(61, 184, 245, 0.15);
}

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

.showcase-tab {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.showcase-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.showcase-tab.active {
    background: var(--gradient-primary);
    color: var(--navy);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(61, 184, 245, 0.25);
}

.showcase-panels {
    position: relative;
}

.showcase-panel {
    display: none;
    animation: fadeInUp 0.4s ease;
}

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

.showcase-panel img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(61, 184, 245, 0.08);
    margin-bottom: 28px;
    border: 1px solid rgba(61, 184, 245, 0.15);
}

.showcase-caption {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.showcase-caption h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.showcase-caption p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== DOC CARD FEATURED ========== */
.doc-card-featured {
    border-color: transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient-primary) border-box;
    border: 2px solid transparent;
    box-shadow: var(--shadow-glow);
}

.doc-type-new {
    background: var(--gradient-primary);
    color: var(--navy);
}

/* ========== DEPLOYMENT ========== */
.deployment {
    padding: 100px 0;
    background: var(--white);
}

.deploy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.deploy-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}

.deploy-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.deploy-card-featured {
    border-color: transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box, var(--gradient-primary) border-box;
    border: 2px solid transparent;
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.deploy-header {
    margin-bottom: 16px;
}

.deploy-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 10px;
}

.deploy-card-featured .deploy-tag {
    background: var(--gradient-primary);
    color: var(--navy);
}

.deploy-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.deploy-card>p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.deploy-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.deploy-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ========== RESOURCES ========== */
.resources {
    padding: 100px 0;
    background: var(--gray-100);
}

.download-gate {
    max-width: 520px;
    margin: 0 auto;
}

.gate-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    text-align: center;
    border: 1px solid rgba(61, 184, 245, 0.1);
}

.gate-icon {
    margin-bottom: 20px;
}

.gate-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.gate-card>p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.gate-form {
    text-align: left;
}

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

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    background: var(--white);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow), 0 0 20px rgba(61, 184, 245, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-disclaimer {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.doc-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.doc-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.doc-type {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.doc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.doc-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.doc-card .btn-sm {
    align-self: flex-start;
}

/* ========== CONTACT ========== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.contact-info>p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

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

.contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent);
}

.global-map-img {
    margin-bottom: 24px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.global-map-img img {
    width: 100%;
    display: block;
}

.trust-badges {
    display: flex;
    gap: 24px;
}

.trust-badge {
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: var(--radius);
    flex: 1;
}

.trust-badge strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.trust-badge span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(180deg, #050c15 0%, var(--navy) 100%);
    padding: 64px 0 0;
    color: var(--text-light);
    border-top: 1px solid rgba(61, 184, 245, 0.08);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ========== VALUE / COST SAVINGS SECTION ========== */
.value-section {
    background: var(--gradient-section);
    padding: 100px 0;
    position: relative;
}

.value-section .section-header h2 {
    color: var(--white);
}

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

.value-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 64px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(61, 184, 245, 0.12);
}

.compare-col {
    padding: 40px 36px;
}

.compare-legacy {
    background: rgba(255, 255, 255, 0.02);
}

.compare-scalefield {
    background: linear-gradient(135deg, rgba(61, 184, 245, 0.07) 0%, rgba(34, 211, 187, 0.04) 100%);
}

.compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(61, 184, 245, 0.1);
    border-right: 1px solid rgba(61, 184, 245, 0.1);
    padding: 0 20px;
    min-width: 64px;
}

.compare-vs span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

.compare-header {
    margin-bottom: 24px;
}

.compare-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.compare-label-legacy {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.compare-label-new {
    background: var(--gradient-primary);
    color: #000;
}

.compare-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.compare-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-list-bad li {
    color: rgba(255, 255, 255, 0.55);
}

.compare-list-bad li svg {
    stroke: #ef4444;
    opacity: 0.8;
}

.compare-list-good li {
    color: var(--text-light);
}

.compare-list-good li svg {
    stroke: var(--accent-teal);
}

.value-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(61, 184, 245, 0.12);
    border-radius: 16px;
    overflow: hidden;
}

.value-stat {
    flex: 1;
    padding: 36px 32px;
    text-align: center;
}

.value-stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(61, 184, 245, 0.12);
}

.value-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.value-stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto;
}

/* ========== TECHNOLOGY SECTION ========== */
/* ── Digital Independence ── */

.independence-section {
    background: linear-gradient(160deg, #060e18 0%, #0f2438 50%, #163a5a 100%);
    padding: 100px 0;
    position: relative;
}

.independence-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.independence-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(61, 184, 245, 0.12);
    border-radius: 14px;
    padding: 36px 32px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.independence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.independence-card:hover {
    border-color: rgba(61, 184, 245, 0.3);
    transform: translateY(-3px);
}

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

.independence-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(61, 184, 245, 0.14), rgba(34, 211, 187, 0.08));
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--accent);
}

.independence-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.independence-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    opacity: 0.85;
}

.independence-quote {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.independence-quote blockquote {
    font-size: 1.15rem;
    font-weight: 500;
    font-style: italic;
    color: var(--accent-light);
    line-height: 1.7;
    padding: 32px 40px;
    background: rgba(61, 184, 245, 0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
}

@media (max-width: 768px) {
    .independence-grid {
        grid-template-columns: 1fr;
    }

    .independence-quote blockquote {
        padding: 24px 20px;
        font-size: 1rem;
    }
}

.independence-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.independence-card:nth-child(1) {
    animation-delay: 0.05s;
}

.independence-card:nth-child(2) {
    animation-delay: 0.1s;
}

.independence-card:nth-child(3) {
    animation-delay: 0.15s;
}

.independence-card:nth-child(4) {
    animation-delay: 0.2s;
}

/* ── Technology Deep Dive ── */

.tech-section {
    background: linear-gradient(160deg, #050c15 0%, #0b1a2b 50%, #0d2035 100%);
    padding: 100px 0;
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(61, 184, 245, 0.12);
    border-radius: 12px;
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.tech-card:hover {
    border-color: rgba(61, 184, 245, 0.3);
    transform: translateY(-3px);
}

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

.tech-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(61, 184, 245, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.tech-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.tech-tag {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(61, 184, 245, 0.1);
    color: var(--accent);
    border: 1px solid rgba(61, 184, 245, 0.2);
}

.tech-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}

.tech-card p strong {
    color: rgba(255, 255, 255, 0.85);
}

.tech-card p em {
    color: rgba(255, 255, 255, 0.65);
    font-style: normal;
}

/* Featured Parquet card — gradient border */
.tech-card-featured {
    background:
        linear-gradient(var(--navy-light), var(--navy-light)) padding-box,
        var(--gradient-primary) border-box;
    border: 2px solid transparent;
}

.tech-card-featured::before {
    display: none;
}

.tech-card-link {
    display: inline-block;
    margin-top: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-dark);
    text-decoration: none;
    transition: var(--transition);
}

.tech-card-link:hover {
    color: var(--accent-bright);
    text-decoration: underline;
}


.tech-cta {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(61, 184, 245, 0.15);
}

.tech-slide-img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* ========== DETECTION ALGORITHMS ========== */
.algorithms-section {
    background: linear-gradient(160deg, #060e18 0%, #0b1a2b 50%, #0d2035 100%);
    padding: 100px 0;
}

.algorithms-section .section-header h2 {
    color: var(--white);
}

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

.algo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.algo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(61, 184, 245, 0.12);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}

.algo-card:hover {
    border-color: rgba(61, 184, 245, 0.3);
    transform: translateY(-3px);
}

.algo-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.algo-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.algo-icon-anomaly {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

.algo-icon-cluster {
    background: rgba(61, 184, 245, 0.1);
    color: var(--accent);
}

.algo-icon-temporal {
    background: rgba(124, 109, 240, 0.1);
    color: var(--accent-purple);
}

.algo-icon-sequence {
    background: rgba(34, 211, 187, 0.1);
    color: var(--accent-teal);
}

.algo-category {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.algo-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.algo-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 16px;
}

.algo-desc em {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.algo-example {
    background: rgba(61, 184, 245, 0.04);
    border-left: 3px solid rgba(61, 184, 245, 0.3);
    border-radius: 0 8px 8px 0;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.algo-example-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.algo-example p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin: 0;
}

.algo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.algo-tag {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Algorithm Coverage Matrix */
.algo-coverage {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(61, 184, 245, 0.15);
    border-radius: var(--radius);
    padding: 40px 36px;
}

.algo-coverage-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.algo-coverage-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 640px;
}

.algo-matrix {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.algo-matrix-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
    color: var(--text-light);
}

.algo-matrix-row:last-child {
    border-bottom: none;
}

.algo-matrix-header {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(61, 184, 245, 0.2);
}

@media (max-width: 1024px) {
    .algo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .algo-card {
        padding: 24px 20px;
    }

    .algo-coverage {
        padding: 28px 20px;
    }

    .algo-matrix-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 0;
    }

    .algo-matrix-header {
        display: none;
    }

    .algo-matrix-row span:nth-child(2)::before {
        content: 'Primary: ';
        color: var(--accent);
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .algo-matrix-row span:nth-child(3)::before {
        content: 'Reinforcing: ';
        color: var(--accent);
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .algo-matrix-row span:first-child {
        font-weight: 600;
        color: var(--white);
    }
}

@media (max-width: 480px) {
    .algo-card {
        padding: 20px 16px;
    }

    .algo-icon {
        width: 44px;
        height: 44px;
    }
}

/* ========== SOCIAL PROOF ========== */
.social-proof-section {
    padding: 90px 0;
    background: var(--gradient-section);
}

.social-proof-section .section-header h2,
.social-proof-section .section-header p,
.social-proof-section .section-header .section-tag,
.value-section .section-header h2,
.value-section .section-header p,
.value-section .section-header .section-tag {
    color: var(--white);
}

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

.social-proof-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.sp-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.sp-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 4px 0;
}

.sp-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

.sp-divider {
    width: 1px;
    height: 60px;
    background: rgba(61, 184, 245, 0.2);
}

.social-proof-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.sp-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(61, 184, 245, 0.06);
    border: 1px solid rgba(61, 184, 245, 0.12);
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 0.9rem;
}

.sp-badge svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ========== COMPLIANCE FRAMEWORK MAP ========== */
.compliance-map-section {
    padding: 90px 0;
    background: var(--white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.compliance-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
}

.compliance-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.compliance-scope {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.compliance-features {
    list-style: none;
    padding: 0;
}

.compliance-features li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.compliance-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* ========== PERSONA SECTION ========== */
.persona-section {
    padding: 90px 0;
    background: var(--gradient-section);
}

.persona-section .section-header h2,
.persona-section .section-header .section-tag {
    color: var(--white);
}

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

.persona-card {
    background: rgba(61, 184, 245, 0.06);
    border: 1px solid rgba(61, 184, 245, 0.12);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    display: block;
}

.persona-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.persona-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(61, 184, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

.persona-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.persona-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.persona-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
}

/* ========== FEATURE DETAIL PAGES ========== */
.feature-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.feature-breadcrumb a {
    color: var(--accent);
    text-decoration: none;
}

.feature-breadcrumb a:hover {
    text-decoration: underline;
}

.feature-detail-section {
    padding: 90px 0;
    background: var(--white);
}

.feature-detail-section .feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.feature-detail-grid-reverse {
    direction: rtl;
}

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

.feature-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.feature-placeholder-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    padding: 16px;
    background: var(--gray-100);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.feature-placeholder-img {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 320px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
    color: var(--gray-400);
}

.feature-placeholder-img span {
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-benefits-section {
    padding: 90px 0;
    background: var(--gradient-section);
}

.feature-benefits-section .section-header h2,
.feature-benefits-section .feature-benefit-card h3,
.feature-benefits-section .section-header .section-tag {
    color: var(--white);
}

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

.feature-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-benefit-card {
    background: rgba(61, 184, 245, 0.06);
    border: 1px solid rgba(61, 184, 245, 0.12);
    border-radius: var(--radius);
    padding: 32px;
}

.feature-benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-benefit-card p {
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.7;
}

.feature-technical-section {
    padding: 90px 0;
    background: var(--gray-100);
}

@media (max-width: 768px) {
    .feature-detail-grid {
        grid-template-columns: 1fr;
    }

    .feature-detail-grid-reverse {
        direction: ltr;
    }

    .feature-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FORM CONFIRMATION ========== */
.form-confirmation {
    text-align: center;
    padding: 48px 32px;
}

.form-confirmation-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #22c55e;
}

.form-confirmation h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.form-confirmation p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.form-confirmation a {
    color: var(--accent);
    font-weight: 600;
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    padding: 48px 0;
    background: var(--gradient-section);
    border-top: 1px solid rgba(61, 184, 245, 0.08);
}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.newsletter-container h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.newsletter-container p {
    font-size: 0.92rem;
    color: var(--text-light);
    flex: 1;
    min-width: 200px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.newsletter-form input[type="email"] {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(61, 184, 245, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 0.9rem;
    width: 260px;
    font-family: inherit;
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-success {
    color: #22c55e;
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .newsletter-container {
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }
}

/* ========== SITEMAP ========== */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.sitemap-category h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.sitemap-category ul {
    list-style: none;
    padding: 0;
}

.sitemap-category li {
    margin-bottom: 8px;
}

.sitemap-category a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.sitemap-category a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== FAQ ========== */
.faq-category {
    margin-bottom: 48px;
}

.faq-category .section-tag {
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    background: var(--white);
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent);
    transition: var(--transition);
}

.faq-question.active::after {
    content: '−';
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-answer {
    display: none;
    padding: 0 24px 18px;
    background: var(--white);
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========== DARK SECTION TEXT OVERRIDES ========== */
/* All sections with dark gradient backgrounds need white text */
.support-paths-section .section-header h2,
.support-paths-section .section-tag,
.sla-section .section-header h2,
.sla-section .section-tag,
.global-support-section .section-header h2,
.global-support-section .section-tag,
.process-section .section-header h2,
.process-section .section-tag,
.scalefield-support-section .section-header h2,
.scalefield-support-section .section-tag,
.sla-numbers-section .section-header h2,
.sla-numbers-section .section-tag,
.onboarding-section .section-header h2,
.onboarding-section .section-tag,
.tech-section .section-header h2,
.tech-section .section-tag,
.independence-section .section-header h2,
.independence-section .section-tag {
    color: var(--white) !important;
}

.support-paths-section .section-header p,
.sla-section .section-header p,
.global-support-section .section-header p,
.process-section .section-header p,
.scalefield-support-section .section-header p,
.sla-numbers-section .section-header p,
.onboarding-section .section-header p,
.tech-section .section-header p,
.tech-section .tech-card-link,
.independence-section .section-header p {
    color: var(--text-light) !important;
}

/* ========== SLA TABLE TITLES ========== */
.sla-table-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.sla-table-subtitle {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========== TOAST ========== */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    padding: 16px 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    max-width: 380px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid #22c55e;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {

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

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

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

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

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

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

    .arch-zones {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

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

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

    .value-compare {
        grid-template-columns: 1fr;
    }

    .compare-vs {
        writing-mode: horizontal-tb;
        padding: 12px;
        min-width: auto;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(61, 184, 245, 0.1);
        border-bottom: 1px solid rgba(61, 184, 245, 0.1);
    }

    .compare-vs span {
        writing-mode: horizontal-tb;
    }

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

    .value-stat-divider {
        width: 80%;
        height: 1px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(12, 24, 36, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        flex-direction: column;
        gap: 4px;
    }

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

    .nav-links a {
        display: block;
        padding: 12px 16px;
        width: 100%;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .features-grid,
    .features-grid-3,
    .db-grid,
    .deploy-grid,
    .documents-grid,
    .arch-zones,
    .compliance-grid,
    .persona-grid {
        grid-template-columns: 1fr;
    }

    .social-proof-stats {
        flex-direction: column;
        gap: 24px;
    }

    .sp-divider {
        width: 60px;
        height: 1px;
    }

    .social-proof-badges {
        flex-direction: column;
        align-items: center;
    }

    .sp-number {
        font-size: 2.2rem;
    }

    .sp-badge {
        font-size: 0.82rem;
        padding: 10px 16px;
    }

    .compliance-card {
        padding: 24px 20px;
    }

    .compliance-card h3 {
        font-size: 1.3rem;
    }

    .persona-card {
        padding: 24px 20px;
    }

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

    .showcase-tabs {
        gap: 4px;
    }

    .showcase-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

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

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

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

    .gate-card {
        padding: 32px 24px;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .trust-badges {
        flex-direction: column;
    }

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

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

    .tagline-bar p {
        font-size: 0.9rem;
        padding: 0 8px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }

    .hero-badge {
        font-size: 0.7rem;
    }

    .feature-card {
        padding: 28px 24px;
    }

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

    .feature-card p {
        font-size: 0.85rem;
    }

    .compare-col {
        padding: 28px 20px;
    }

    .compare-list li {
        font-size: 0.88rem;
    }

    .value-stat-number {
        font-size: 2rem;
    }

    .value-stat-label {
        font-size: 0.8rem;
    }

    .tech-card {
        padding: 24px 20px;
    }

    .tech-card-featured {
        grid-column: span 1;
    }

    .independence-card {
        padding: 24px 20px;
    }

    .process-step {
        gap: 16px;
    }

    .step-number {
        font-size: 1.8rem;
        min-width: 40px;
    }

    .process-connector {
        margin-left: 56px;
    }

    .imprint-card {
        padding: 32px 24px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* ========== SMALL MOBILE (≤480px) ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }

    .hero {
        padding: 90px 0 48px;
    }

    .hero-actions .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

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

    .sp-number {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .compare-col {
        padding: 24px 16px;
    }

    .compliance-card {
        padding: 20px 16px;
    }

    .persona-card {
        padding: 20px 16px;
    }

    .tech-card {
        padding: 20px 16px;
    }

    .db-card {
        padding: 24px 20px;
    }

    .deploy-card {
        padding: 24px 20px;
    }

    .footer-links h4 {
        font-size: 0.95rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.feature-card,
.db-card,
.deploy-card,
.doc-card,
.process-step {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1),
.db-card:nth-child(1),
.deploy-card:nth-child(1) {
    animation-delay: 0.05s;
}

.feature-card:nth-child(2),
.db-card:nth-child(2),
.deploy-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3),
.db-card:nth-child(3),
.deploy-card:nth-child(3) {
    animation-delay: 0.15s;
}

.feature-card:nth-child(4),
.db-card:nth-child(4),
.deploy-card:nth-child(4) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(5),
.db-card:nth-child(5) {
    animation-delay: 0.25s;
}

.feature-card:nth-child(6),
.db-card:nth-child(6) {
    animation-delay: 0.3s;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(3) {
    animation-delay: 0.2s;
}

.process-step:nth-child(5) {
    animation-delay: 0.3s;
}

.process-step:nth-child(7) {
    animation-delay: 0.4s;
}


:target {
    scroll-margin-top: 100px;
    /* Passen Sie diesen Wert an die Höhe Ihrer Navbar an (ca. 80-100px) */
}

/* Supplementary styles for the disclaimer */
.disclaimer-section {
    padding: 3rem 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.disclaimer-content {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content strong {
    color: #475569;
}


/* Supplementary styles for the new compliance table and disclaimer */
.compliance-table-wrapper {
    margin-top: 2rem;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.compliance-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.compliance-table th {
    background-color: #f8fafc;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 2px solid #e2e8f0;
}

.compliance-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    vertical-align: top;
}

.compliance-table tr:last-child td {
    border-bottom: none;
}

.compliance-table td strong {
    display: block;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.compliance-table td small {
    color: #64748b;
    font-size: 0.875rem;
}