/* ===================================
   D-NOVA PLATFORM - PREMIUM DESIGN
   Automotive Control Platform
   =================================== */

/* ===== VARIABLES ===== */
:root {
    /* Colors - Premium Automotive Palette */
    --color-pure-white: #ffffff;
    --color-ice-white: #f8f9fa;
    --color-ice-blue: #00d4ff;
    --color-cyan-subtle: #0099cc;
    
    --color-black: #000000;
    --color-graphite: #0a0a0a;
    --color-anthracite: #1a1a1a;
    --color-charcoal: #2a2a2a;
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;
    
    --color-accent: var(--color-ice-blue);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-subtle: rgba(255, 255, 255, 0.04);
    
    /* Typography - Space Grotesk / Inter */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-headline: 'Inter', sans-serif;
    
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-black: 900;
    
    /* Spacing - Generous */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 10rem;
    
    /* Timing */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.marketing-body {
    font-family: var(--font-primary);
    background: var(--color-black);
    color: var(--color-text-primary);
    line-height: 1.6;
    font-weight: var(--weight-regular);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===================================
   HERO SECTION - Pierwsze 3 sekundy
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-black);
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: var(--space-md);
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
}

.brand-dnova {
    color: var(--color-white);
}

.brand-divider {
    color: var(--color-ice-blue);
}

.brand-product {
    color: var(--color-ice-blue);
}

.hero-headline {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.headline-line {
    display: block;
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Buttons */
.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--duration) var(--ease);
}

.btn-hero-primary {
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-white);
}

.btn-hero-primary:hover {
    background: var(--color-ice-blue);
    border-color: var(--color-ice-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-blue-glow);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-hint-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.section-problem {
    padding: var(--space-xxl) 0;
    background: var(--color-black);
}

.problem-statement {
    text-align: center;
}

.statement-line {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.statement-line strong {
    color: var(--color-pure-white);
    font-weight: var(--weight-semibold);
}

.statement-emphasis {
    color: var(--color-text-muted);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.section-solution {
    padding: var(--space-xxl) 0;
    background: var(--color-graphite);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.solution-pillar {
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid var(--color-border-subtle);
    background: var(--color-black);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.solution-pillar:hover {
    border-color: var(--color-border);
    transform: translateY(-5px);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    color: var(--color-ice-blue);
    margin-bottom: var(--space-md);
    stroke-width: 1;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.01em;
    color: var(--color-pure-white);
    margin-bottom: var(--space-sm);
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ===================================
   TECH TEASE SECTION
   =================================== */

.section-tech-tease {
    padding: var(--space-xxl) 0;
    background: var(--color-black);
}

.tech-statement {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.tech-line {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.tech-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.diagram-block {
    width: 100%;
    max-width: 600px;
    padding: var(--space-lg);
    background: var(--color-anthracite);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.diagram-block:hover {
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.block-label {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    color: var(--color-pure-white);
    margin-bottom: var(--space-xs);
}

.block-tech {
    display: block;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

.diagram-flow {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.tech-cta {
    text-align: center;
}

.link-arrow {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: var(--weight-medium);
    color: var(--color-accent);
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.link-arrow:hover {
    transform: translateX(5px);
    color: var(--color-pure-white);
}

/* ===================================
   EXPERIENCE SECTION
   =================================== */

.section-experience {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--color-graphite);
    overflow: hidden;
}

.experience-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.experience-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-anthracite) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    font-style: italic;
}

.experience-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: var(--space-xl) 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.experience-statement {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.experience-statement strong {
    color: var(--color-pure-white);
    font-weight: var(--weight-semibold);
}

/* ===================================
   AUDIENCE SECTION
   =================================== */

.section-audience {
    padding: var(--space-xxl) 0;
    background: var(--color-black);
}

.audience-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--weight-bold);
    text-align: center;
    color: var(--color-pure-white);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.audience-segment {
    padding: var(--space-lg);
    border-left: 2px solid var(--color-border);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.audience-segment:hover {
    border-left-color: var(--color-accent);
    transform: translateX(10px);
}

.audience-segment h3 {
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    color: var(--color-pure-white);
    margin-bottom: var(--space-sm);
}

.audience-segment p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===================================
   GATEWAY SECTION - Przejście
   =================================== */

.section-gateway {
    padding: var(--space-xxl) 0;
    background: linear-gradient(to bottom, var(--color-black) 0%, var(--color-graphite) 100%);
}

.gateway-boundary {
    margin-bottom: var(--space-xl);
}

.boundary-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--color-accent) 50%,
        transparent 100%
    );
}

.gateway-content {
    text-align: center;
}

.gateway-statement {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.gateway-statement strong {
    color: var(--color-pure-white);
    font-weight: var(--weight-semibold);
}

.btn-gateway {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.02em;
    color: var(--color-black);
    background: var(--color-pure-white);
    border: 1px solid var(--color-pure-white);
    text-decoration: none;
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.btn-gateway:hover {
    background: transparent;
    color: var(--color-pure-white);
    transform: translateY(-3px);
}

/* ===================================
   D-NOVA - BEAM-MASTER
   Premium BMW Matrix LED & Laser Adapter
   =================================== */

:root {
    /* Colors */
    --color-black: #000000;
    --color-graphite: #0a0a0a;
    --color-dark: #1a1a1a;
    
    --color-ice-blue: #00d4ff;
    --color-blue-glow: rgba(0, 212, 255, 0.3);
    
    --color-white: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #808080;
    
    --color-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Animation */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.marketing-body {
    font-family: var(--font-primary);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* JAŚNIEJSZY FILTER */
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: var(--space-md);
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
}

.brand-dnova {
    color: var(--color-white);
}

.brand-divider {
    color: var(--color-ice-blue);
}

.brand-product {
    color: var(--color-ice-blue);
}

.hero-headline {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.headline-line {
    display: block;
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--duration) var(--ease);
}

.btn-hero-primary {
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-white);
}

.btn-hero-primary:hover {
    background: var(--color-ice-blue);
    border-color: var(--color-ice-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-blue-glow);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-hint-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.section-problem {
    padding: var(--space-xxl) 0;
    background: var(--color-black);
}

.problem-statement {
    text-align: center;
}

.statement-line {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.statement-line strong {
    color: var(--color-pure-white);
    font-weight: var(--weight-semibold);
}

.statement-emphasis {
    color: var(--color-text-muted);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.section-solution {
    padding: var(--space-xxl) 0;
    background: var(--color-graphite);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.solution-pillar {
    text-align: center;
    padding: var(--space-lg);
    border: 1px solid var(--color-border-subtle);
    background: var(--color-black);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.solution-pillar:hover {
    border-color: var(--color-border);
    transform: translateY(-5px);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    color: var(--color-ice-blue);
    margin-bottom: var(--space-md);
    stroke-width: 1;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: var(--weight-semibold);
    letter-spacing: -0.01em;
    color: var(--color-pure-white);
    margin-bottom: var(--space-sm);
}

.pillar-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* ===================================
   TECH TEASE SECTION
   =================================== */

.section-tech-tease {
    padding: var(--space-xxl) 0;
    background: var(--color-black);
}

.tech-statement {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.tech-line {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.tech-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.diagram-block {
    width: 100%;
    max-width: 600px;
    padding: var(--space-lg);
    background: var(--color-anthracite);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.diagram-block:hover {
    border-color: var(--color-accent);
    transform: translateX(10px);
}

.block-label {
    display: block;
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    color: var(--color-pure-white);
    margin-bottom: var(--space-xs);
}

.block-tech {
    display: block;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

.diagram-flow {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.tech-cta {
    text-align: center;
}

.link-arrow {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: var(--weight-medium);
    color: var(--color-accent);
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.link-arrow:hover {
    transform: translateX(5px);
    color: var(--color-pure-white);
}

/* ===================================
   EXPERIENCE SECTION
   =================================== */

.section-experience {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--color-graphite);
    overflow: hidden;
}

.experience-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.experience-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-anthracite) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    font-style: italic;
}

.experience-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: var(--space-xl) 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.experience-statement {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.experience-statement strong {
    color: var(--color-pure-white);
    font-weight: var(--weight-semibold);
}

/* ===================================
   AUDIENCE SECTION
   =================================== */

.section-audience {
    padding: var(--space-xxl) 0;
    background: var(--color-black);
}

.audience-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--weight-bold);
    text-align: center;
    color: var(--color-pure-white);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.audience-segment {
    padding: var(--space-lg);
    border-left: 2px solid var(--color-border);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.audience-segment:hover {
    border-left-color: var(--color-accent);
    transform: translateX(10px);
}

.audience-segment h3 {
    font-size: 1.25rem;
    font-weight: var(--weight-semibold);
    color: var(--color-pure-white);
    margin-bottom: var(--space-sm);
}

.audience-segment p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===================================
   GATEWAY SECTION - Przejście
   =================================== */

.section-gateway {
    padding: var(--space-xxl) 0;
    background: linear-gradient(to bottom, var(--color-black) 0%, var(--color-graphite) 100%);
}

.gateway-boundary {
    margin-bottom: var(--space-xl);
}

.boundary-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--color-accent) 50%,
        transparent 100%
    );
}

.gateway-content {
    text-align: center;
}

.gateway-statement {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.gateway-statement strong {
    color: var(--color-pure-white);
    font-weight: var(--weight-semibold);
}

.btn-gateway {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: var(--weight-medium);
    letter-spacing: 0.02em;
    color: var(--color-black);
    background: var(--color-pure-white);
    border: 1px solid var(--color-pure-white);
    text-decoration: none;
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.btn-gateway:hover {
    background: transparent;
    color: var(--color-pure-white);
    transform: translateY(-3px);
}

/* ===================================
   D-NOVA - BEAM-MASTER
   Premium BMW Matrix LED & Laser Adapter
   =================================== */

:root {
    /* Colors */
    --color-black: #000000;
    --color-graphite: #0a0a0a;
    --color-dark: #1a1a1a;
    
    --color-ice-blue: #00d4ff;
    --color-blue-glow: rgba(0, 212, 255, 0.3);
    
    --color-white: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-text-muted: #808080;
    
    --color-border: rgba(255, 255, 255, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    
    /* Animation */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.marketing-body {
    font-family: var(--font-primary);
    background: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* JAŚNIEJSZY FILTER */
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1100px;
    padding: var(--space-md);
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    color: var(--color-text-secondary);
}

.brand-dnova {
    color: var(--color-white);
}

.brand-divider {
    color: var(--color-ice-blue);
}

.brand-product {
    color: var(--color-ice-blue);
}

.hero-headline {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.headline-line {
    display: block;
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--duration) var(--ease);
}

.btn-hero-primary {
    background: var(--color-white);
    color: var(--color-black);
    border: 2px solid var(--color-white);
}

.btn-hero-primary:hover {
    background: var(--color-ice-blue);
    border-color: var(--color-ice-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--color-blue-glow);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-hint-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-hint-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===================================
   SECTIONS WITH VIDEO BACKGROUNDS
   =================================== */

.section-with-bg {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.section-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* JAŚNIEJSZY FILTER */
    filter: brightness(0.5) contrast(1.05);
}

.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.section-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: var(--space-xl) 0;
}

/* ===================================
   STANDARD SECTIONS
   =================================== */

.section-dark {
    background: var(--color-black);
    padding: var(--space-xl) 0;
}

.section-light {
    background: var(--color-graphite);
    padding: var(--space-xl) 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-statement {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.5;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--space-md);
}

.section-statement strong {
    color: var(--color-ice-blue);
    font-weight: 600;
}

.section-note {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   PROCESS STEPS (JAK TO DZIAŁA)
   =================================== */

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    text-align: center;
    transition: all var(--duration) var(--ease);
}

.process-step:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--color-ice-blue);
    transform: translateY(-5px);
}

.step-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-ice-blue);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.1em;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

.process-arrow {
    font-size: 2rem;
    color: var(--color-ice-blue);
    flex-shrink: 0;
}

/* ===================================
   BENEFIT CALLOUT
   =================================== */

.benefit-callout {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    text-align: center;
}

.benefit-callout h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-ice-blue);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.benefit-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.benefit-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--color-ice-blue);
    font-weight: 700;
}

.benefit-list strong {
    color: var(--color-white);
}

/* ===================================
   FUNCTIONS GRID
   =================================== */

.functions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.function-card {
    padding: var(--space-lg);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all var(--duration) var(--ease);
}

.function-card:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--color-ice-blue);
    transform: translateY(-5px);
}

.function-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-md);
    color: var(--color-ice-blue);
}

.function-icon svg {
    width: 100%;
    height: 100%;
}

.function-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
}

.function-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ===================================
   FUNCTIONS GRID - HORIZONTAL (4 w rzędzie)
   =================================== */

.functions-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

@media (max-width: 1200px) {
    .functions-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .functions-grid-horizontal {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   MODELS GRID - ORGANIZED
   =================================== */

.models-grid-organized {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.model-card-m {
    border-color: var(--color-ice-blue);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, var(--color-dark) 100%);
}

.model-card-m:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, var(--color-dark) 100%);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

@media (max-width: 1200px) {
    .models-grid-organized {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .models-grid-organized {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .models-grid-organized {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CTA SECTION
   =================================== */

.section-cta {
    padding: var(--space-xl) 0;
    background: linear-gradient(to bottom, var(--color-black), var(--color-graphite));
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--duration) var(--ease);
}

.btn-cta-primary {
    background: var(--color-ice-blue);
    color: var(--color-black);
    border: 2px solid var(--color-ice-blue);
}

.btn-cta-primary:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--color-blue-glow);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-border);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-3px);
}

.cta-info {
    margin-top: var(--space-lg);
    color: var(--color-text-secondary);
}

.cta-info p {
    margin: 0.25rem 0;
}

/* ===================================
   GLOBAL BACKGROUND VIDEO
   =================================== */

#global-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#global-bg-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) blur(8px) contrast(1.1);
    transform: scale(1.1);
    will-change: transform;
}

/* Gradient overlay dla lepszej czytelności */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ===================================
   FOOTER ENHANCEMENT
   =================================== */

.marketing-footer {
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    padding: var(--space-xl) 0 var(--space-md);
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.footer-section h3 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-ice-blue);
    margin-bottom: var(--space-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

.footer-section a:hover {
    color: var(--color-white);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: var(--space-lg) auto 0;
    padding: var(--space-md) var(--space-md) 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* ===================================
   SECTION BACKGROUNDS ENHANCEMENT
   =================================== */

.section-with-bg {
    position: relative;
    background: transparent !important;
}

.section-with-bg .section-bg-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Dark sections have more overlay */
.section-dark {
    background: rgba(0, 0, 0, 0.6);
}

.section-light {
    background: rgba(10, 10, 10, 0.6);
}

/* ===================================
   SECTION SEPARATORS & TRANSITIONS
   =================================== */

/* Odstęp między hero a manifesto */
.hero-section {
    margin-bottom: 0;
}

/* Czarny separator między sekcjami z video */
.section-separator {
    height: 150px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 1) 50%,
        rgba(0, 0, 0, 0.95) 100%
    );
    position: relative;
    z-index: 1;
}

/* Sekcje z video mają większe pady dla smooth transition */
.section-with-bg {
    padding-top: var(--space-xxl);
    padding-bottom: var(--space-xxl);
}

/* Enhanced overlay dla lepszego przejścia między filmami */
.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

/* Hero overlay - ciemniejszy na dole dla płynnego przejścia */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 70%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

/* Fade effect na górze każdej sekcji */
.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        transparent 100%
    );
    z-index: 5;
    pointer-events: none;
}

/* Fade effect na dole każdej sekcji */
.section-with-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1) 0%,
        transparent 100%
    );
    z-index: 5;
    pointer-events: none;
}

/* Section content ponad fade overlays */
.section-content {
    position: relative;
    z-index: 10;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
    :root {
        --space-xxl: 8rem;
    }
}

@media (max-width: 768px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 5rem;
        --space-xxl: 6rem;
    }
    
    .hero-actions,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .functions-grid {
        grid-template-columns: 1fr;
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-list {
        text-align: center;
    }
    
    .benefit-list li {
        padding-left: 0;
    }
    
    .benefit-list li::before {
        position: static;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   MANIFESTO SECTION - POETRY STYLE
   =================================== */

.section-title-manifesto {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.manifesto-statement {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--space-lg);
}

.manifesto-statement strong {
    color: var(--color-ice-blue);
    font-weight: 600;
    display: block;
    margin-top: var(--space-sm);
}

.manifesto-detail {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   ENHANCED TYPOGRAPHY FOR POETRY
   =================================== */

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Process steps - shorter descriptions */
.process-step p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
}

/* Function cards - shorter descriptions */
.function-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* Service scope - cleaner descriptions */
.scope-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* CTA info - tagline style */
.cta-info p:last-child {
    font-style: italic;
    color: var(--color-text-muted);
}
