/* ============================================
   LOCAL FONTS
   ============================================ */
@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Thin.woff2') format('woff2'),
         url('../fonts/JetBrainsMono-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Light.woff2') format('woff2'),
         url('../fonts/JetBrainsMono-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2'),
         url('../fonts/JetBrainsMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Medium.woff2') format('woff2'),
         url('../fonts/JetBrainsMono-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Bold.woff2') format('woff2'),
         url('../fonts/JetBrainsMono-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-ExtraBold.woff2') format('woff2'),
         url('../fonts/JetBrainsMono-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   style.css — QRPRO Design System
   Pure CSS, no Tailwind
   ============================================ */

/* ============================================
   CSS VARIABLES — THEME TOKENS
   ============================================ */
:root {
    /* Light theme (default) */
    --color-bg-body: #f8fafc;
    --color-bg-surface: #f8fafc;
    --color-bg-surface-elevated: #ffffff;
    --color-bg-surface-container: #f1f5f9;
    --color-bg-surface-container-low: #e2e8f0;
    --color-bg-surface-container-lowest: #f1f5f9;
    --color-bg-surface-container-high: #e2e8f0;
    --color-bg-surface-container-highest: #cbd5e1;
    --color-bg-surface-dim: #e2e8f0;
    --color-bg-surface-bright: #ffffff;
    --color-bg-inverse-surface: #0f172a;

    --color-text-primary: #0f172a;
    --color-text-secondary: #334155;
    --color-text-muted: #475569;
    --color-text-on-primary: #ffffff;
    --color-text-on-surface: #0f172a;
    --color-text-on-surface-variant: #475569;
    --color-text-inverse-on-surface: #f1f5f9;
    --color-text-error: #dc2626;
    --color-text-on-error: #ffffff;

    --color-accent: #00d26a;
    --color-accent-dim: #00b65c;
    --color-accent-glow: rgba(0, 210, 106, 0.15);
    --color-accent-inverse: #00b65c;

    --color-border: #e2e8f0;
    --color-border-variant: #cbd5e1;
    --color-outline: #94a3b8;

    --color-error: #dc2626;
    --color-error-container: #fef2f2;
    --color-error-bg: rgba(239, 68, 68, 0.1);
    --color-error-border: rgba(239, 68, 68, 0.3);

    --color-success-bg: rgba(0, 210, 106, 0.1);
    --color-success-border: rgba(0, 210, 106, 0.3);

    --shadow-header: 0 4px 30px rgba(0, 0, 0, 0.1);
    --shadow-modal: 0 24px 60px rgba(0, 0, 0, 0.15);
    --shadow-cookie: 0 24px 60px rgba(0, 0, 0, 0.15);
    --shadow-btn-primary: 0 4px 14px rgba(0, 210, 106, 0.35);
    --shadow-btn-primary-hover: 0 8px 25px rgba(0, 210, 106, 0.45);
    --shadow-accent: 0 8px 24px rgba(0, 210, 106, 0.35);
    --shadow-accent-hover: 0 12px 32px rgba(0, 210, 106, 0.5);
    --shadow-primary-glow: 0 0 30px -10px rgba(0, 210, 106, 0.15);
    --shadow-primary-border: 0 -4px 20px -10px rgba(0, 210, 106, 0.3);

    --gradient-primary: linear-gradient(135deg, #00b65c, #00d26a);
    --gradient-logo: linear-gradient(135deg, #00d26a, #00b65c);

    --glass-header-bg: rgba(255, 255, 255, 0.85);
    --glass-header-scrolled: rgba(255, 255, 255, 0.95);
    --glass-modal-overlay: rgba(15, 23, 42, 0.72);
    --glass-cookie-bg: rgba(255, 255, 255, 0.96);
}

html.dark {
    /* Dark theme overrides */
    --color-bg-body: #161616;
    --color-bg-surface: #0a0a0a;
    --color-bg-surface-elevated: #141414;
    --color-bg-surface-container: #201f1f;
    --color-bg-surface-container-low: #1c1b1b;
    --color-bg-surface-container-lowest: #202020;
    --color-bg-surface-container-high: #2a2a2a;
    --color-bg-surface-container-highest: #353534;
    --color-bg-surface-dim: #131313;
    --color-bg-surface-bright: #3a3939;
    --color-bg-inverse-surface: #e5e2e1;

    --color-text-primary: #e5e2e1;
    --color-text-secondary: #c5c7c3;
    --color-text-muted: #a1a1a1;
    --color-text-on-primary: #0a0a0a;
    --color-text-on-surface: #e5e2e1;
    --color-text-on-surface-variant: #c4c9b4;
    --color-text-inverse-on-surface: #313030;
    --color-text-error: #ffb4ab;
    --color-text-on-error: #690005;

    --color-accent: #ccfc7e;
    --color-accent-dim: #a7d55c;
    --color-accent-glow: rgba(204, 252, 126, 0.15);
    --color-accent-inverse: #466800;

    --color-border: #1f1f1f;
    --color-border-variant: #434939;
    --color-outline: #8e9380;

    --color-error: #ffb4ab;
    --color-error-container: #93000a;
    --color-error-bg: rgba(255, 180, 171, 0.1);
    --color-error-border: rgba(255, 180, 171, 0.3);

    --color-success-bg: rgba(204, 252, 126, 0.1);
    --color-success-border: rgba(204, 252, 126, 0.3);

    --shadow-header: 0 4px 30px rgba(0, 0, 0, 0.5);
    --shadow-modal: 0 24px 60px rgba(0, 0, 0, 0.5);
    --shadow-cookie: 0 24px 60px rgba(0, 0, 0, 0.4);
    --shadow-btn-primary: 0 4px 14px rgba(0, 210, 106, 0.35);
    --shadow-btn-primary-hover: 0 8px 25px rgba(0, 210, 106, 0.45);
    --shadow-accent: 0 8px 24px rgba(70, 104, 0, 0.35);
    --shadow-accent-hover: 0 12px 32px rgba(70, 104, 0, 0.5);
    --shadow-primary-glow: 0 0 30px -10px rgba(204, 252, 126, 0.15);
    --shadow-primary-border: 0 -4px 20px -10px rgba(204, 252, 126, 0.3);

    --gradient-primary: linear-gradient(135deg, #466800, #a7d55c);
    --gradient-logo: linear-gradient(135deg, #ccfc7e, #a7d55c);

    --glass-header-bg: rgba(10, 10, 10, 0.6);
    --glass-header-scrolled: rgba(10, 10, 10, 0.92);
    --glass-modal-overlay: rgba(10, 10, 10, 0.85);
    --glass-cookie-bg: rgba(20, 20, 20, 0.96);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono';
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    font-weight: 400;
    background-color: var(--color-bg-body);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.font-display {
    font-family: 'Sora', sans-serif;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.text-display {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.text-headline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 600;
}

.text-title {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 700;
}

.text-body-lg {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    font-weight: 400;
}

.text-body {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.text-body-sm {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.text-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
}

.text-caption {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}

.text-tiny {
    font-size: 10px;
    line-height: 1.4;
    font-weight: 400;
}

/* ============================================
   MATERIAL SYMBOLS
   ============================================ */
.material-symbols-outlined {
    font-variation-settings:
        "FILL" 0,
        "wght" 400,
        "GRAD" 0,
        "opsz" 24;
    display: inline-block;
    vertical-align: middle;
}

/* ============================================
   LAYOUT — CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ============================================
   LAYOUT — GRID SYSTEM
   ============================================ */
.grid {
    display: grid;
    gap: 24px;
}

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

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

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

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

.grid-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.col-span-2 {
    grid-column: span 2;
}

.col-span-3 {
    grid-column: span 3;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-12 {
    grid-column: span 12;
}

/* ============================================
   LAYOUT — FLEX
   ============================================ */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-xs {
    gap: 8px;
}

.gap-sm {
    gap: 16px;
}

.gap-md {
    gap: 24px;
}

.gap-lg {
    gap: 32px;
}

.gap-xl {
    gap: 48px;
}

/* ============================================
   SPACING
   ============================================ */
.space-y-sm > * + * {
    margin-top: 8px;
}

.space-y-md > * + * {
    margin-top: 16px;
}

.space-y-lg > * + * {
    margin-top: 24px;
}

.space-y-xl > * + * {
    margin-top: 32px;
}

.space-y-2xl > * + * {
    margin-top: 48px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-bg-dim {
    background-color: var(--color-bg-surface-container-lowest);
}

/* ============================================
   COLORS & TEXT
   ============================================ */
.text-primary-color {
    color: var(--color-text-primary);
}

.text-secondary-color {
    color: var(--color-text-secondary);
}

.text-muted {
    color: var(--color-text-muted);
}

.text-accent {
    color: var(--color-accent);
}

.text-error {
    color: var(--color-text-error);
}

.text-white {
    color: #ffffff;
}

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

.bg-surface-elevated {
    background-color: var(--color-bg-surface-elevated);
}

.bg-surface-container {
    background-color: var(--color-bg-surface-container);
}

.bg-surface-container-low {
    background-color: var(--color-bg-surface-container-low);
}

.bg-surface-container-lowest {
    background-color: var(--color-bg-surface-container-lowest);
}

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

.bg-accent-10 {
    background-color: var(--color-accent-glow);
}

/* ============================================
   BORDERS
   ============================================ */
.border {
    border: 1px solid var(--color-border);
}

.border-t {
    border-top: 1px solid var(--color-border);
}

.border-b {
    border-bottom: 1px solid var(--color-border);
}

.border-l {
    border-left: 1px solid var(--color-border);
}

.border-accent {
    border-color: var(--color-accent);
}

.rounded-sm {
    border-radius: 8px;
}

.rounded-md {
    border-radius: 12px;
}

.rounded-lg {
    border-radius: 16px;
}

.rounded-xl {
    border-radius: 18px;
}

.rounded-2xl {
    border-radius: 20px;
}

.rounded-full {
    border-radius: 9999px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 80px;
    backdrop-filter: blur(12px);
    background: var(--glass-header-bg);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: var(--glass-header-scrolled);
    box-shadow: var(--shadow-header);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-brand-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

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

.header-nav-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.header-phone:hover {
    color: var(--color-accent);
}

/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-text-muted);
}

.theme-toggle:hover {
    background: var(--color-accent-glow);
    color: var(--color-accent);
    border-color: var(--color-success-border);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

html.dark .theme-toggle .icon-sun {
    display: none;
}

html.dark .theme-toggle .icon-moon {
    display: block;
}

html:not(.dark) .theme-toggle .icon-sun {
    display: block;
}

html:not(.dark) .theme-toggle .icon-moon {
    display: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-on-primary);
    box-shadow: var(--shadow-btn-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-primary-hover);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-lg {
    padding: 20px 48px;
    font-size: 1.125rem;
    border-radius: 16px;
}

/* ============================================
   LOGO MARK
   ============================================ */
.logo-mark {
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-logo);
}

.logo-mark img {
    width: 100%;
    height: auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 870px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 9999px;
    background: var(--color-bg-surface-elevated);
    border: 1px solid var(--color-border);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: var(--color-text-primary);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--color-text-muted);
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    flex-wrap: wrap;
}

.hero-note {
    font-size: 12px;
    color: var(--color-text-muted);
    font-style: italic;
}

.hero-visual {
    position: relative;
    display: none;
}

.hero-visual-glow {
    position: absolute;
    inset: -40px;
    background: var(--color-accent-glow);
    filter: blur(120px);
    border-radius: 50%;
    transition: box-shadow 0.3s ease;
}

.hero-visual-glow:hover {
    box-shadow: var(--shadow-primary-border);
}

.hero-visual-card {
    position: relative;
    background: var(--color-bg-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 16px;
    overflow: hidden;
}

.hero-visual-card img {
    border-radius: 12px;
    opacity: 0.8;
    transition: opacity 0.7s ease;
    width: 100%;
}

.hero-visual-card:hover img {
    opacity: 1;
}

.hero-live-feed {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(var(--color-bg-surface-elevated-rgb, 20, 20, 20), 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: 16px;
}

.hero-about {
    position: relative;
    z-index: 10;
    padding-top: 16px;
}

.hero-about-text {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--color-text-muted);
    border-left: 1px solid var(--color-accent);
    padding-left: 10px;
}

.hero-about-text strong {
    color: var(--color-accent);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-step {
    position: relative;
    text-align: center;
}

.process-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--color-accent-glow);
    border: 1px solid var(--color-success-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin: 0 auto 16px;
    position: relative;
}

.process-step-icon .material-symbols-outlined {
    font-size: 30px;
}

.process-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-accent);
    color: var(--color-text-on-primary);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.process-step-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.process-step-desc {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefit-card {
    background: var(--color-bg-surface-container);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    border-color: var(--color-success-border);
    box-shadow: var(--shadow-primary-glow);
}

.benefit-card-number {
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 24px;
    opacity: 0.2;
    color: var(--color-accent);
}

.benefit-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.benefit-card-text {
    color: var(--color-text-muted);
}

.benefit-card-wide {
    grid-column: span 2;
}

.benefit-card-wide .benefit-card-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
}

.benefit-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-on-surface);
}

.benefit-list-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

/* ============================================
   PROBLEMS SECTION
   ============================================ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.problem-card {
    background: var(--color-bg-surface);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-card-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.problem-card-label.error {
    color: var(--color-text-error);
}

.problem-card-label.solution {
    color: var(--color-accent);
}

.problem-card-label .material-symbols-outlined {
    font-size: 24px;
}

.problem-card-label .text-label {
    color: inherit;
}

.problem-card-text {
    color: var(--color-text-on-surface);
    font-weight: 600;
}

.problem-card-text strong {
    display: block;
    margin-bottom: 4px;
}

.problem-card-divider {
    height: 1px;
    background: var(--color-border);
    width: 100%;
}

.problem-card-solution {
    color: var(--color-text-muted);
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience-card {
    background: var(--color-bg-surface-container);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    background: var(--color-bg-surface-elevated);
}

.audience-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.audience-card:hover .audience-card-icon {
    transform: scale(1.1);
}

.audience-card-icon .material-symbols-outlined {
    font-size: 30px;
}

.audience-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.audience-card-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ============================================
   CAPABILITIES BENTO GRID
   ============================================ */
.capability-card {
    background: var(--color-bg-surface-elevated);
    border: 1px solid var(--color-border);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.capability-card:hover {
    border-color: var(--color-success-border);
    box-shadow: var(--shadow-primary-border);
}

.capability-card-icon {
    color: var(--color-accent);
    font-size: 40px;
    margin-bottom: 16px;
}

.capability-card-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.capability-card-text {
    color: var(--color-text-muted);
}

.capability-card-media {
    background: var(--color-bg-surface);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.capability-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capability-checklist {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.capability-checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-on-surface-variant);
}

.capability-checklist-item .material-symbols-outlined {
    color: var(--color-accent);
    font-size: 20px;
}

.capability-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.capability-shield-group {
    display: flex;
    gap: 16px;
}

.capability-shield {
    width: 48px;
    height: 48px;
    background: var(--color-bg-surface-container);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.capability-shield .material-symbols-outlined {
    color: #ffffff;
    opacity: 0.5;
}

/* ============================================
   EQUIPMENT SELECTION SECTION
   ============================================ */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.equipment-card {
    background: var(--color-bg-surface-elevated);
    border: 1px solid var(--color-border);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.equipment-card:hover {
    background: var(--color-bg-surface);
    border-color: var(--color-success-border);
    box-shadow: var(--shadow-primary-border);
    transform: translateY(-4px);
}

.equipment-card-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-card-icon {
    transform: scale(1.1);
}

.equipment-card-icon .material-symbols-outlined {
    font-size: 30px;
}

.equipment-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.equipment-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.equipment-cta {
    text-align: center;
    margin-top: 48px;
    padding: 24px 32px;
    background: var(--color-bg-surface-elevated);
    border: 1px solid var(--color-border);
    border-radius: 16px;
}

.equipment-cta p {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

/* ============================================
   DEMO / INTEGRATION SECTION
   ============================================ */
.demo-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 64px;
}

.demo-flow-card {
    background: var(--color-bg-surface-container);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    width: 256px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-flow-card:hover {
    border-color: var(--color-success-border);
    box-shadow: var(--shadow-primary-glow);
}

.demo-flow-card .material-symbols-outlined {
    color: var(--color-accent);
    font-size: 40px;
    margin-bottom: 16px;
}

.demo-flow-card-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.demo-flow-card-text {
    font-size: 12px;
    color: var(--color-text-muted);
}

.demo-flow-arrow {
    color: var(--color-accent);
    font-size: 40px;
}

/* ============================================
   LEAD FORM SECTION
   ============================================ */
.form-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.form-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-step {
    display: flex;
    gap: 24px;
}

.form-step-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-bg-surface-container);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-accent);
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.form-step-title {
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.form-step-text {
    color: var(--color-text-muted);
}

.form-card {
    background: var(--color-bg-surface-elevated);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    position: relative;
}

.form-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--color-accent);
    color: var(--color-text-on-primary);
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    transform: rotate(3deg);
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--color-bg-surface);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    color: var(--color-text-on-surface);
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-accent);
}

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

.form-submit {
    width: 100%;
    background: var(--color-accent);
    color: var(--color-text-on-primary);
    padding: 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    filter: brightness(1.1);
}

.form-submit:active {
    transform: scale(0.98);
}

.form-legal {
    font-size: 10px;
    color: var(--color-text-muted);
    text-align: center;
}

.form-legal a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-legal a:hover {
    text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-bg-surface-container-lowest);
    border-top: 1px solid var(--color-border);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-brand-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text-primary);
}

.footer-desc {
    color: var(--color-text-muted);
    max-width: 24rem;
    margin-bottom: 24px;
}

.footer-requisites-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.footer-requisites {
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-column-title {
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 24px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

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

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.footer-contact .material-symbols-outlined {
    font-size: 12px;
}

.footer-contact a {
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    transition: 0.3s;
    background: var(--color-text-primary);
}

.mobile-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    top: 80px;
    width: 100%;
    height: calc(100vh - 80px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
    background: var(--color-bg-body);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li a {
    display: block;
    padding: 16px 8px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
    color: var(--color-text-primary);
}

.mobile-menu-nav li a:hover {
    background: var(--color-accent-glow);
    color: var(--color-accent);
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.mobile-menu-phone {
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
    color: var(--color-text-primary);
}

.mobile-menu-phone:hover {
    color: var(--color-accent);
}

.mobile-menu-email {
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.mobile-menu-email:hover {
    color: var(--color-accent);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.is-open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: var(--glass-modal-overlay);
}

.modal-dialog {
    position: relative;
    width: min(820px, 100%);
    max-height: min(82vh, 760px);
    border-radius: 16px;
    box-shadow: var(--shadow-modal);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-bg-surface-elevated);
    border: 1px solid var(--color-border);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--color-border);
}

.modal-header h2 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.25;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: var(--color-text-primary);
}

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: var(--color-bg-surface-container);
    color: var(--color-text-primary);
}

.modal-close:hover {
    background: var(--color-accent-glow);
    color: var(--color-accent);
}

.modal-content {
    padding: 24px 28px 28px;
    overflow-y: auto;
    line-height: 1.75;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.modal-content h2,
.modal-content h3 {
    color: var(--color-text-primary);
}

.modal-content h2 {
    font-size: 1.1rem;
    margin: 1.4rem 0 0.5rem;
}

.modal-content h3 {
    font-size: 1rem;
    margin: 1.2rem 0 0.5rem;
}

.modal-content p {
    margin-bottom: 1rem;
}

.modal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    list-style: disc;
}

.modal-content li {
    margin-bottom: 0.35rem;
}

/* ============================================
   VIDEO MODAL
   ============================================ */
.modal-video .modal-dialog {
    width: min(1000px, 100%);
    max-height: none;
    background: #000;
    border-color: rgba(255, 255, 255, 0.15);
    overflow: visible;
}

.modal-video .modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: var(--color-bg-surface-elevated);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-modal);
}

.modal-video .modal-video-wrapper {
    width: min(100%, calc((100vh - 80px) * 16 / 9));
    max-height: calc(100vh - 80px);
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

@media (max-width: 560px) {
    .modal-video .modal-close {
        top: -14px;
        right: 50%;
        transform: translateX(50%);
    }
}

/* ============================================
   FORM STATUS MESSAGES
   ============================================ */
.status-msg {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}

.status-success {
    display: block;
    background: var(--color-success-bg);
    color: var(--color-accent);
    border: 1px solid var(--color-success-border);
}

.status-error {
    display: block;
    background: var(--color-error-bg);
    color: var(--color-text-error);
    border: 1px solid var(--color-error-border);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 900;
    width: min(980px, calc(100vw - 2rem));
    transform: translateX(-50%);
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    box-shadow: var(--shadow-cookie);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--glass-cookie-bg);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.cookie-banner button {
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 12px 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: var(--color-accent);
    color: var(--color-text-on-primary);
}

.cookie-banner button:hover {
    filter: brightness(1.1);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 950;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        visibility 0.4s ease,
        box-shadow 0.3s ease;
    background: var(--gradient-primary);
    color: var(--color-text-on-primary);
    box-shadow: var(--shadow-accent);
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent-hover);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   CALL BUTTON
   ============================================ */
.call-button {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 950;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--gradient-primary);
    color: var(--color-text-on-primary);
    box-shadow: var(--shadow-accent);
}

.call-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent-hover);
}

.call-button:active {
    transform: translateY(-1px);
}

.call-button svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-left {
    text-align: left;
    margin-bottom: 64px;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-accent);
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    margin-top: 16px;
}

/* ============================================
   PROBLEMS SECTION HEADER
   ============================================ */
.problems-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    gap: 32px;
}

.problems-header-title {
    max-width: 42rem;
}

.problems-header-aside {
    color: var(--color-text-muted);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-left: 1px solid var(--color-accent);
    padding-left: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .col-span-4,
    .col-span-8,
    .col-span-12 {
        grid-column: span 1;
    }

    .benefit-card-wide {
        grid-column: span 1;
    }

    .form-section-grid {
        gap: 48px;
    }

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

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

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }

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

    .hero-visual {
        display: none;
    }

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

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

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

    .problems-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-flow {
        flex-direction: column;
    }

    .demo-flow-arrow {
        transform: rotate(90deg);
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

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

    .mobile-toggle {
        display: block;
    }

    .header-nav {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-brand-text {
        display: none;
    }

    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-banner button {
        width: 100%;
    }

    .scroll-to-top {
        width: 46px;
        height: 46px;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

    .call-button {
        width: 46px;
        height: 46px;
        bottom: 1.25rem;
        left: 1.25rem;
    }

    .call-button svg {
        width: 20px;
        height: 20px;
    }

    .modal {
        padding: 16px;
    }

    .modal-header,
    .modal-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 850px) {
    .header-brand-text {
        display: inline;
    }
}

/* ============================================
   INDIGO THEME OVERRIDES (for distributes.php)
   ============================================ */
.page-indigo .scroll-to-top {
    background: linear-gradient(135deg, #4338ca, #6366F1) !important;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35) !important;
}

.page-indigo .scroll-to-top:hover {
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5) !important;
}

.page-indigo .call-button {
    background: linear-gradient(135deg, #4338ca, #6366F1) !important;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35) !important;
    color: white !important;
}

.page-indigo .call-button:hover {
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5) !important;
}

.page-indigo .cookie-banner button {
    background: #6366F1 !important;
    color: white !important;
}

.page-indigo .cookie-banner button:hover {
    background: #818cf8 !important;
}

.page-indigo .modal-close:hover {
    background: rgba(99, 102, 241, 0.15) !important;
    color: #818cf8 !important;
}

.page-indigo .status-success {
    background: rgba(99, 102, 241, 0.1) !important;
    color: #818cf8 !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
}

/* ============================================
   DISTRIBUTES PAGE — HERO
   ============================================ */
.distributes-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    overflow: hidden;
}

.distributes-hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 600px;
    background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), transparent);
    pointer-events: none;
    filter: blur(120px);
}

.distributes-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.distributes-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.distributes-hero-title .text-indigo {
    color: #6366F1;
}

.distributes-hero-text {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 36rem;
}

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

.distributes-hero-visual {
    position: relative;
}

.distributes-hero-visual-glow {
    position: absolute;
    inset: -16px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 32px;
    filter: blur(16px);
    transition: background 0.3s ease;
}

.distributes-hero-visual:hover .distributes-hero-visual-glow {
    background: rgba(99, 102, 241, 0.3);
}

.distributes-hero-card {
    position: relative;
    background: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    overflow: hidden;
    padding: 32px;
}

.distributes-hero-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.distributes-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
    opacity: 0.7;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.distributes-hero-visual:hover .distributes-hero-badges {
    filter: grayscale(0);
}

.distributes-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: var(--color-bg-surface-container);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.distributes-hero-badge span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
}

/* ============================================
   DISTRIBUTES PAGE — BENEFITS
   ============================================ */
.benefit-card-indigo {
    padding: 32px;
    border-radius: 20px;
    background: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.benefit-card-indigo:hover {
    border-color: #6366F1;
    box-shadow: 0 0 50px -5px rgba(99, 102, 241, 0.3);
}

.benefit-card-indigo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366F1;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.benefit-card-indigo:hover .benefit-card-indigo-icon {
    transform: scale(1.1);
}

.benefit-card-indigo-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text-primary);
}

.benefit-card-indigo-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ============================================
   DISTRIBUTES PAGE — AUDIENCE CARDS
   ============================================ */
.audience-card-large {
    position: relative;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.audience-card-large:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.audience-card-large-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.audience-card-large:hover .audience-card-large-bg {
    opacity: 0.6;
}

.audience-card-large-content {
    position: relative;
    z-index: 10;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.audience-card-large-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.audience-card-large-text {
    color: var(--color-text-muted);
    max-width: 24rem;
}

.audience-card-gradient {
    background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.2), transparent);
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.audience-card-gradient .material-symbols-outlined {
    font-size: 48px;
    color: #6366F1;
    margin-bottom: 24px;
}

.audience-card-wide {
    grid-column: span 3;
}

.audience-card-wide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    height: 100%;
    padding: 40px;
}

.audience-card-icons {
    display: flex;
    justify-content: space-around;
    opacity: 0.5;
}

.audience-card-icons .material-symbols-outlined {
    font-size: 96px;
}

/* ============================================
   DISTRIBUTES PAGE — TOOLS
   ============================================ */
.tool-card {
    background: var(--color-bg-surface);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 30px -10px rgba(99, 102, 241, 0.15);
}

.tool-card-icon {
    color: #6366F1;
    font-size: 24px;
    margin-bottom: 16px;
}

.tool-card-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.tool-card-text {
    font-size: 12px;
    color: var(--color-text-muted);
}

.tools-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tools-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tools-checklist-item .material-symbols-outlined {
    color: #6366F1;
}

/* ============================================
   DISTRIBUTES PAGE — PROCESS STEPS
   ============================================ */
.process-step-circle {
    position: relative;
    text-align: center;
}

.process-step-circle-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-bg-surface-container);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.process-step-circle:hover .process-step-circle-number {
    border-color: #6366F1;
}

.process-step-circle-number.active {
    background: #6366F1;
    border-color: #6366F1;
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.process-step-circle-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.process-step-circle-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

.process-step-circle-line {
    display: none;
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: 100%;
    height: 2px;
    background: var(--color-border);
}

/* ============================================
   DISTRIBUTES PAGE — TECH ADVANTAGES
   ============================================ */
.tech-advantages-card {
    background: #fff;
    backdrop-filter: blur(12px);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.tech-advantage-item {
    display: flex;
    gap: 16px;
}

.tech-advantage-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-advantage-icon .material-symbols-outlined {
    font-size: 16px;
    color: var(--color-text-primary);
}

.tech-advantage-title {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-text-primary);
}

.tech-advantage-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

.tech-advantages-media img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================
   DISTRIBUTES PAGE — PARTNER FORM
   ============================================ */
.partner-form-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    background: #fff;
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 40px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    position: relative;
}

@media (min-width: 768px) {
    .partner-form-wrapper {
        padding: 64px;
    }
}

.partner-form-rocket {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    background: #6366F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
}

.partner-form-rocket .material-symbols-outlined {
    font-size: 40px;
    color: white;
}

.partner-form-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--color-text-primary);
}

.partner-form-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.partner-form-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.partner-form-field label {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.partner-form-input,
.partner-form-select,
.partner-form-textarea {
    width: 100%;
    background: var(--color-bg-surface-container);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 12px 16px;
    color: var(--color-text-on-surface);
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.partner-form-input:focus,
.partner-form-select:focus,
.partner-form-textarea:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 1px #6366F1;
}

.partner-form-textarea {
    resize: vertical;
    min-height: 128px;
}

.partner-form-submit {
    width: 100%;
    background: #6366F1;
    color: white;
    font-weight: 700;
    padding: 20px;
    border-radius: 20px;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-form-submit:hover {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
}

.partner-form-submit:active {
    transform: scale(0.95);
}

.partner-form-legal {
    font-size: 10px;
    text-align: center;
    color: var(--color-text-muted);
}

.partner-form-legal a {
    color: #6366F1;
    text-decoration: underline;
}

.partner-form-legal a:hover {
    text-decoration: none;
}

/* ============================================
   DISTRIBUTES PAGE — FAQ
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    overflow: hidden;
}

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

.faq-question .material-symbols-outlined {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.is-open .material-symbols-outlined {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 32px 24px;
    color: var(--color-text-muted);
    font-size: 14px;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    margin: 0 32px 24px;
}

.faq-answer.is-hidden {
    display: none;
}

/* ============================================
   DISTRIBUTES PAGE — FOOTER OVERRIDES
   ============================================ */
.page-indigo .footer-nav a:hover,
.page-indigo .footer-contact a:hover {
    color: #6366F1;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-indigo {
    color: #6366F1;
}

.bg-indigo-5 {
    background: rgba(99, 102, 241, 0.05);
}

.glass-indigo {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
}

.glass-indigo-hover:hover {
    border-color: #6366F1;
    box-shadow: 0 0 50px -5px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.btn-indigo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #6366F1;
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-indigo:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
}

.btn-indigo-sm {
    padding: 12px 24px;
    font-size: 0.875rem;
    border-radius: 12px;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: var(--color-bg-surface-container);
}

/* ============================================
   RESPONSIVE — DISTRIBUTES
   ============================================ */
@media (max-width: 1024px) {
    .audience-card-wide {
        grid-column: span 1;
    }

    .audience-card-wide-inner {
        grid-template-columns: 1fr;
    }

    .tech-advantages-card {
        padding: 32px;
    }
}

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

    .distributes-hero-visual {
        display: none;
    }

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

    .process-step-circle-line {
        display: none !important;
    }

    .audience-card-wide-inner {
        grid-template-columns: 1fr;
    }

    .audience-card-icons .material-symbols-outlined {
        font-size: 48px;
    }

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

@media (min-width: 768px) {
    .process-step-circle-line {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
