/* ==========================================================================
   SUBWERK CRM — 2026 HIGH-MOTION WOW SAAS ENGINE (SEAMLESS CONTINUOUS BACKGROUND)
   ========================================================================== */

:root {
    /* Pure Dark Obsidian Palette */
    --bg-dark: #040508;
    --bg-dark-secondary: #070910;
    --bg-card: rgba(10, 13, 22, 0.95);
    --bg-card-hover: rgba(15, 20, 34, 0.98);

    /* Strict Monochromatic Cyan Borders */
    --border-subtle: rgba(56, 189, 248, 0.14);
    --border-glow-cyan: rgba(56, 189, 248, 0.45);

    /* Text Colors */
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Monochromatic Cyan Accent System */
    --accent-cyan: #38BDF8;
    --accent-cyan-dark: #0284C7;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%);
    --gradient-brand: linear-gradient(135deg, #FFFFFF 0%, #E2E8F0 50%, #38BDF8 100%);
    --gradient-dark-card: linear-gradient(180deg, #090C16 0%, #05070E 100%);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Sleek Dark Cyan Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #040508;
}

::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 189, 248, 0.5);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* WebGL Interactive Particle Canvas Layer */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -4;
    pointer-events: none;
    opacity: 0.5;
    will-change: transform;
}

/* Modern Cyber/Tech Grid Mesh Background Layer (Seamless Blend) */
.tech-grid-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    pointer-events: none;
    background-image: radial-gradient(rgba(56, 189, 248, 0.12) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 85%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 85%);
    opacity: 0.65;
}

/* Dynamic Pulsing Ambient Aurora Orbs (Hardware Accelerated, Seamless Gradient) */
.aurora-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;
    opacity: 0.35;
    will-change: transform;
    transform: translateZ(0);
    animation: auroraFloat 16s ease-in-out infinite alternate;
}

.aurora-orb-1 {
    top: 0%;
    left: 10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(2, 132, 199, 0.04) 40%, transparent 70%);
}

.aurora-orb-2 {
    top: 35%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(10, 13, 22, 0.03) 45%, transparent 70%);
    animation-delay: -6s;
}

.aurora-orb-3 {
    top: 65%;
    left: 5%;
    width: 850px;
    height: 850px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, rgba(3, 105, 161, 0.04) 45%, transparent 70%);
    animation-delay: -10s;
}

@keyframes auroraFloat {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(45px, -30px, 0) scale(1.05); }
    100% { transform: translate3d(-35px, 40px, 0) scale(0.96); }
}

.ambient-light {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.2;
}

.light-top-center {
    top: -30vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at 50% 30%, rgba(56, 189, 248, 0.14) 0%, rgba(2, 132, 199, 0.02) 50%, transparent 80%);
}

.light-bottom-right {
    bottom: -20vh;
    right: -10vw;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.1), transparent 70%);
}

/* Mouse Spotlight Trail Effect Across Entire Site */
.mouse-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    transform: translate3d(-50%, -50%, 0);
}

/* Scroll Reveal Physics */
.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography & Glow Highlights */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.4));
}

.text-cyan { color: var(--accent-cyan) !important; text-shadow: 0 0 12px rgba(56, 189, 248, 0.5); }
.text-muted { color: var(--text-muted) !important; }

/* NAVBAR Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.25s ease, padding 0.25s ease;
}

.navbar.scrolled {
    background: rgba(4, 5, 8, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand-highlight {
    color: var(--accent-cyan);
    font-weight: 400;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-top-watch {
    background: rgba(56, 189, 248, 0.06);
    color: #FFFFFF;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-top-watch:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38BDF8;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}

.mobile-toggle {
    display: none;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid var(--border-glow-cyan);
    color: var(--accent-cyan);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.mobile-toggle:hover {
    background: rgba(56, 189, 248, 0.18);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

/* Mobile Drawer Overlay Navigation */
.mobile-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(4, 5, 8, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border-glow-cyan);
    padding: 24px;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    animation: drawerSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.mobile-drawer.active {
    display: flex;
}

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

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: block;
}

.mobile-cta {
    margin-top: 12px;
    text-align: center;
    width: 100%;
    text-decoration: none;
    display: block;
}

/* HERO SECTION */
.hero-section {
    padding-top: 195px;
    padding-bottom: 110px;
    position: relative;
    text-align: center;
    background: transparent;
}

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

.hero-tag-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid var(--border-glow-cyan);
    padding: 8px 24px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    animation: pulseBadge 3s infinite ease-in-out;
}

@keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 15px rgba(56, 189, 248, 0.2); }
    50% { box-shadow: 0 0 32px rgba(56, 189, 248, 0.45); }
}

.hero-title-main {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
    color: #FFFFFF;
}

.hero-subtitle-main {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto 48px;
    line-height: 1.65;
}

/* Artem Dual Pill Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.btn-pill-dark {
    background: #0A0D16;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 100px;
    padding: 14px 32px;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-pill-dark:hover {
    background: #121727;
    border-color: var(--border-glow-cyan);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.35);
}

.pill-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.pill-square-white {
    background: #FFFFFF;
    color: #040508;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-pill-cyan {
    background: #38BDF8;
    border: 1px solid #38BDF8;
    border-radius: 100px;
    padding: 14px 32px;
    min-width: 220px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.35);
}

.btn-pill-cyan:hover {
    background: #0EA5E9;
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(56, 189, 248, 0.65);
}

.btn-pill-cyan .pill-label {
    color: #040508;
}

.pill-square-dark {
    background: #040508;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Integration Bar */
.integration-bar {
    margin-bottom: 0;
}

.bar-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.pill-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.tag-pill:hover {
    border-color: var(--border-glow-cyan);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
    transform: translateY(-2px);
}

.tag-pill svg {
    width: 15px;
    height: 15px;
    color: var(--accent-cyan);
    vertical-align: middle;
    flex-shrink: 0;
}

/* SECTIONS COMMON — ALL SECTION HEADERS 100% CENTERED */
.section {
    padding: 110px 0;
    position: relative;
    background-color: transparent;
}

.section-header {
    margin-bottom: 64px;
    text-align: center !important;
}

.section-header.center {
    text-align: center !important;
}

.sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* UNIFIED GLASS CARDS (OPTIMIZED FOR 60FPS SMOOTH SCROLL) */
.glass-card, .contact-form, .roi-calc-box, .crm-demo-window, .glass-panel {
    background: #0A0D16;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), border-color 0.2s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.glass-card:hover, .contact-form:hover, .roi-calc-box:hover, .glass-panel:hover {
    border-color: var(--border-glow-cyan);
    background: #0E1322;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(56, 189, 248, 0.18);
}

.glass-panel {
    background: var(--gradient-dark-card);
    border-radius: var(--radius-xl);
    padding: 48px;
}

/* PERFECT ICON VERTICAL ALIGNMENT GLOBALLY */
.feature-cell, .m-comp-header, .m-comp-row, .sim-row, .c-detail {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px;
}

.feature-cell svg, 
.m-comp-header svg, 
.m-comp-row svg, 
.comparison-table td svg, 
.comparison-table th svg, 
.crm-table td svg, 
.crm-table th svg,
.c-detail svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* CRM SHOWCASE */
.crm-demo-window {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #080A12;
    border: 1px solid var(--border-glow-cyan);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 60px rgba(56, 189, 248, 0.25);
}

.crm-window-header {
    background: #0D101C;
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.crm-nav-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.crm-nav-tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.crm-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 12px 22px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.crm-tab-btn:hover {
    color: var(--text-primary);
    background: rgba(56, 189, 248, 0.08);
    border-color: var(--border-subtle);
}

.crm-tab-btn.active {
    background: var(--gradient-primary);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
}

.crm-app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid var(--border-glow-cyan);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--accent-cyan);
    white-space: nowrap;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.crm-viewport {
    padding: 36px;
    min-height: 520px;
    background: #080A12 !important;
    color: #F8FAFC !important;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.35s ease;
}

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

.pane-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.pane-metrics-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.p-stat {
    font-size: 0.95rem;
}

/* CRM Tables */
.crm-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.crm-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    text-align: left;
}

.crm-table th {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

.crm-table td {
    padding: 18px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
}

.status-badge.new {
    background: rgba(56, 189, 248, 0.15);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.status-badge.completed {
    background: rgba(56, 189, 248, 0.15);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.tag-sub {
    font-size: 0.72rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 6px;
    font-weight: 600;
    background: rgba(56, 189, 248, 0.12);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.25);
}

/* Activity Timeline Box */
.activity-timeline-box {
    background: #0A0D18;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    position: relative;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 6px;
    background: var(--accent-cyan);
    box-shadow: 0 0 12px var(--accent-cyan);
    flex-shrink: 0;
}

.t-title {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--text-primary);
}

.t-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 10px;
}

.t-bubble {
    margin-top: 8px;
    background: rgba(56, 189, 248, 0.12);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: inline-block;
    font-size: 0.88rem;
}

.t-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Order Edit & RUT Tax */
.order-edit-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 28px;
}

.order-form-column {
    background: #0A0D18;
    border: 1px solid var(--border-subtle);
    padding: 24px;
    border-radius: var(--radius-lg);
}

.form-row-multi {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.articles-box h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.article-item {
    display: flex;
    justify-content: space-between;
    background: #05070E;
    border: 1px solid var(--border-subtle);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: var(--text-primary);
    flex-wrap: wrap;
    gap: 8px;
}

.tax-rut-box {
    margin: 20px 0;
    font-size: 0.92rem;
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.rut-summary-sheet {
    background: #05070E;
    border: 1px solid var(--border-glow-cyan);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.r-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.r-row.highlight {
    border-top: 1px dashed var(--border-subtle);
    padding-top: 8px;
    color: var(--accent-cyan);
}

.r-row.total {
    border-top: 1px solid var(--border-subtle);
    padding-top: 10px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.order-actions-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-secondary {
    background: rgba(56, 189, 248, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    background: rgba(56, 189, 248, 0.18);
    border-color: #38BDF8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.check-sms {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
}

/* Faktura Sheet */
.faktura-real-preview {
    max-width: 820px;
    margin: 0 auto;
}

.faktura-top-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.faktura-top-stepper .step {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}
.faktura-top-stepper .step.done { color: var(--accent-cyan); text-shadow: 0 0 10px rgba(56, 189, 248, 0.4); }
.faktura-top-stepper .step.active { color: var(--accent-cyan); text-shadow: 0 0 10px rgba(56, 189, 248, 0.4); }

.faktura-top-stepper .line {
    flex: 1;
    height: 2px;
    background: var(--border-subtle);
    margin: 0 16px;
    min-width: 20px;
}
.faktura-top-stepper .line.done { background: var(--accent-cyan); box-shadow: 0 0 8px rgba(56, 189, 248, 0.5); }

.faktura-sheet {
    background: #05070E;
    border: 1px solid var(--border-glow-cyan);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.faktura-sheet-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.faktura-sheet-head h2 {
    font-size: 2.4rem;
    color: var(--text-primary);
}

.seller-details {
    font-size: 0.88rem;
    color: var(--text-secondary);
    text-align: right;
}

.faktura-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
    font-size: 0.88rem;
}

.faktura-table th, .faktura-table td {
    padding: 12px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.faktura-totals-box {
    display: flex;
    justify-content: space-between;
    background: #080A12;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 16px;
}

.final-pay span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

/* ABOUT SECTION GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.about-card .icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid var(--border-glow-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.about-card h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* Stats Row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--accent-cyan);
    letter-spacing: -0.03em;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border-subtle);
}

/* BENTO GRID ADVANTAGES */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bento-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.bento-large {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.bento-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
}

.bento-graphic-box, .offer-sim-box {
    background: #05070E;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 20px;
    font-size: 0.88rem;
    margin-top: 20px;
}

.sim-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 4px;
}

.sim-row.highlight {
    color: var(--accent-cyan);
    border-top: 1px dashed var(--border-subtle);
    padding-top: 10px;
}

.sim-badge {
    margin-top: 14px;
    background: rgba(56, 189, 248, 0.12);
    color: var(--accent-cyan);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 8px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

.bento-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.partner-box {
    background: #05070E;
    border: 1px solid var(--border-subtle);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.partner-box:hover {
    border-color: var(--border-glow-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

/* COMPETITION SECTION — MOBILE STACKED CARDS SYSTEM */
.col-mobile-alt {
    display: none;
}

.mobile-lead-cards, .mobile-comparison-cards {
    display: none;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse !important;
    text-align: center;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    vertical-align: middle !important;
}

.comparison-table th {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-subtle);
}

.comparison-table td:first-child {
    text-align: left !important;
    width: 34%;
}

.comparison-table .highlight-col {
    background: rgba(56, 189, 248, 0.09) !important;
    border-left: 1px solid rgba(56, 189, 248, 0.3) !important;
    border-right: 1px solid rgba(56, 189, 248, 0.3) !important;
    color: var(--accent-cyan) !important;
    font-weight: 700;
}

.brand-th {
    color: var(--accent-cyan);
    font-weight: 800;
    font-size: 1.15rem;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
}

/* FAQ ACCORDION SECTION */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 22px 28px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--border-glow-cyan);
    background: var(--bg-card-hover);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    gap: 16px;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 14px;
}

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

/* ROI SECTION */
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.roi-calc-box h3 {
    margin-bottom: 28px;
}

.slider-group {
    margin-bottom: 28px;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.98rem;
    color: var(--text-secondary);
}

input[type=range] {
    width: 100%;
    accent-color: var(--accent-cyan);
}

.roi-results-box {
    background: #05070E;
    border: 1px solid var(--border-glow-cyan);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.roi-res-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 0.98rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 8px;
}

.roi-res-item.total-roi {
    border-top: 1px solid var(--border-subtle);
    padding-top: 14px;
    margin-bottom: 0;
    font-size: 1.15rem;
    color: var(--text-primary);
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.testi-author strong {
    display: block;
    font-size: 1.1rem;
}

.testi-author span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.rating {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

/* CONTACTS SECTION */
.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-details-list {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.c-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
}

.c-detail svg {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
}

.contact-form {
    background: #05070E;
    border: 1px solid var(--border-glow-cyan);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.contact-form h3 {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    background: #080B14;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.98rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--accent-cyan);
    background: #0A0E1A;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #040508;
    border: none;
    padding: 16px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 45px rgba(56, 189, 248, 0.6);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
    justify-content: center;
}

/* FOOTER */
.footer {
    background: #040508;
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}

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

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

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

/* MODAL POPUP */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    max-width: 480px;
    width: 90%;
    position: relative;
    background: #080A12;
    border: 1px solid var(--border-glow-cyan);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.modal-header-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

/* ==========================================================================
   SUPER FLEXIBLE MULTI-DEVICE RESPONSIVE BREAKPOINTS (4K, TABLET, MOBILE)
   ========================================================================== */

/* 1. Large Laptops & Desktops (1025px - 1280px) */
@media (max-width: 1280px) {
    .hero-title-main { font-size: 4.2rem; }
    .section-title { font-size: 2.7rem; }
    .bento-grid { gap: 20px; }
}

/* 2. Tablets & iPad Landscape (992px - 1024px) */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .nav-container { padding: 0 18px; }
    
    .hero-title-main { font-size: 3.5rem; }
    .about-grid, .roi-grid, .contacts-wrapper, .order-edit-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
}

/* 3. Mobile Landscape & iPad Portrait (601px - 768px) */
@media (max-width: 768px) {
    .hero-section { padding-top: 130px; padding-bottom: 70px; }
    .hero-title-main { font-size: 2.6rem; line-height: 1.12; }
    .hero-subtitle-main { font-size: 1.05rem; margin-bottom: 32px; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 14px; }
    
    .btn-pill-dark, .btn-pill-cyan {
        width: 100%;
        max-width: 380px;
        justify-content: space-between;
        padding: 8px 8px 8px 20px;
    }

    .section { padding: 70px 0; }
    .section-title { font-size: 2.1rem; }
    
    .glass-panel, .glass-card, .contact-form, .roi-calc-box {
        padding: 24px;
        border-radius: var(--radius-lg);
        backdrop-filter: none !important;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 28px;
        padding: 24px 16px;
    }
    
    .stat-divider { display: none; }
    
    .bento-logos { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; gap: 28px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* 4. GOLD STANDARD MOBILE UI (CARD FEED TRANSFORMATION FOR TABLES - <= 650px) */
@media (max-width: 650px) {
    .crm-table-wrapper table, .comparison-table {
        display: none !important;
    }
    
    .comparison-table-wrapper {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .mobile-lead-cards {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
        padding: 4px 0;
    }

    .m-lead-card {
        background: #060812;
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .m-lead-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .m-lead-id {
        font-family: var(--font-mono);
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--accent-cyan);
    }

    .m-lead-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .m-lead-name {
        font-size: 1.05rem;
        color: var(--text-primary);
    }

    .m-lead-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.82rem;
        color: var(--text-secondary);
        border-top: 1px dashed var(--border-subtle);
        padding-top: 10px;
        margin-top: 4px;
    }

    .mobile-comparison-cards {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
        padding: 4px 0;
    }

    .m-comp-card {
        background: #060812;
        border: 1px solid var(--border-glow-cyan);
        border-radius: var(--radius-md);
        padding: 18px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
    }

    .m-comp-header {
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px;
        color: var(--accent-cyan);
    }

    .m-comp-header svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        vertical-align: middle;
    }

    .m-comp-header h4 {
        font-size: 0.98rem;
        font-weight: 700;
        color: var(--text-primary);
        margin: 0;
        line-height: 1.25;
    }

    .m-comp-body {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .m-comp-row {
        display: inline-flex !important;
        justify-content: space-between;
        align-items: center !important;
        padding: 12px 14px;
        border-radius: var(--radius-sm);
        font-size: 0.86rem;
    }

    .m-comp-row.winner {
        background: rgba(56, 189, 248, 0.1);
        border: 1px solid rgba(56, 189, 248, 0.35);
        color: #FFFFFF;
    }

    .m-comp-row.legacy {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-subtle);
        color: var(--text-muted);
    }
}

/* 5. Small Smartphones (iPhone SE, Galaxy - <= 480px) */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .nav-container { padding: 0 12px; }
    
    .brand-name { font-size: 1.18rem; }
    
    .hero-section { padding-top: 120px; padding-bottom: 60px; }
    .hero-tag-badge { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 20px; }
    
    .hero-title-main { font-size: 1.85rem; line-height: 1.18; margin-bottom: 20px; letter-spacing: -0.02em; }
    .hero-subtitle-main { font-size: 0.92rem; margin-bottom: 28px; line-height: 1.55; }
    
    .btn-top-watch { display: none; }
    
    .hero-buttons { gap: 12px; }
    .btn-pill-dark, .btn-pill-cyan {
        width: 100%;
        max-width: 100%;
        padding: 6px 6px 6px 16px;
    }
    .pill-label { font-size: 0.82rem; }
    .pill-square-white, .pill-square-dark { padding: 8px 10px; font-size: 0.72rem; }

    .bar-label { font-size: 0.72rem; margin-bottom: 12px; }
    .tag-pill { padding: 6px 12px; font-size: 0.78rem; }

    .section { padding: 55px 0; }
    .section-header { margin-bottom: 36px; }
    .sub-heading { font-size: 0.78rem; }
    .section-title { font-size: 1.75rem; line-height: 1.18; }
    .section-description { font-size: 0.95rem; }

    .glass-card, .contact-form, .roi-calc-box, .glass-panel {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .about-card .icon-wrapper { width: 48px; height: 48px; margin-bottom: 16px; }
    .about-card h3, .bento-card h3 { font-size: 1.25rem; }

    .crm-viewport { padding: 14px 10px; min-height: auto; }
    .crm-window-header { padding: 12px 14px; flex-direction: column; align-items: flex-start; gap: 10px; }
    .crm-nav-tabs { width: 100%; gap: 6px; }
    .crm-tab-btn { padding: 8px 14px; font-size: 0.8rem; }
    
    /* ACTIVITY TIMELINE LOG PROPORTIONAL RESPONSIVE ZOOM */
    .activity-timeline-box {
        padding: 16px 12px;
        gap: 16px;
    }
    
    .timeline-item {
        gap: 10px;
    }
    
    .t-title {
        font-size: 0.86rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
    }
    
    .t-time {
        font-size: 0.72rem;
        margin-left: 0;
    }
    
    .t-bubble {
        padding: 8px 12px;
        font-size: 0.78rem;
        line-height: 1.35;
        max-width: 100%;
        word-break: break-word;
    }
    
    .t-desc {
        font-size: 0.78rem;
        line-height: 1.4;
    }
    
    .tag-sub, .status-badge {
        font-size: 0.68rem;
        padding: 2px 6px;
        display: inline-block;
        white-space: nowrap;
    }

    .brand-th { font-size: 0.92rem; }
    
    .stat-number { font-size: 2.6rem; }
    .stat-label { font-size: 0.82rem; }
    
    .faq-item { padding: 16px 18px; }
    .faq-question { font-size: 0.98rem; }
    
    .form-input { padding: 12px 14px; font-size: 0.9rem; }
    .btn-primary { padding: 14px; font-size: 0.95rem; }
}
