/* ==================================================================
   Wdróż.AI — Premium Landing Page Styles
   Mobile-first, glassmorphism, smooth animations
   ================================================================== */

/* === CSS VARIABLES === */
:root {
    /* Brand Colors */
    --primary: #1A3A5C;
    --accent: #D4A574;
    --success: #7A9E7E;
    --text-dark: #3D3D3D;
    --text-light: #F5F3EF;
    --bg-light: #F5F3EF;
    --bg-dark: #0A0F1C;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1A3A5C 0%, #2B5A8C 100%);
    --gradient-accent: linear-gradient(135deg, #D4A574 0%, #E8C9A0 100%);
    --gradient-text: linear-gradient(135deg, #1A3A5C, #D4A574, #7A9E7E);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-bg-light: rgba(255, 255, 255, 0.92);
    --glass-border-light: rgba(26, 58, 92, 0.18);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(26, 58, 92, 0.3);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 800;
}

h2 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-light {
    background: var(--bg-light);
}

.section-dark {
    background: var(--bg-dark);
    color: #FFFFFF;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: #FFFFFF;
}

/* Dark section text — targeted to avoid overriding white-bg cards */
.section-dark .section-subtitle,
.section-dark .section-title,
.section-dark .pricing-note,
.section-dark .pricing-note p {
    color: rgba(255, 255, 255, 0.93);
}

/* Ensure white-background cards keep dark text in dark sections */
.section-dark .price-card,
.section-dark .price-card h3,
.section-dark .price-card h4,
.section-dark .price-card p,
.section-dark .price-card li,
.section-dark .price-card span,
.section-dark .price-card label,
.section-dark .comparison-col,
.section-dark .comparison-col p,
.section-dark .comparison-col li,
.section-dark .comparison-col span {
    color: #3D3D3D !important;
}

.section-dark .price-name {
    color: #1A3A5C !important;
    font-weight: 700;
}

.section-dark .price-value {
    color: #1A3A5C !important;
}

.section-dark .price-features li {
    color: #3D3D3D !important;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

/* === GRADIENT TEXT === */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === GLASS CARDS === */
.glass-card {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 58, 92, 0.12);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s ease;
}

.section-dark .glass-card {
    background: rgba(26, 58, 92, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.section-dark .glass-card h3,
.section-dark .glass-card h4 {
    color: #FFFFFF;
}

.section-dark .glass-card p,
.section-dark .glass-card li,
.section-dark .glass-card span {
    color: rgba(255, 255, 255, 0.95);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* === BUTTONS === */
.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.cta-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(26, 58, 92, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 58, 92, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.section-dark .cta-btn-secondary {
    color: white;
    border-color: white;
}

.cta-btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.section-dark .cta-btn-secondary:hover {
    background: white;
    color: var(--primary);
}

/* Outline button — visible on white cards in dark sections */
.cta-btn-outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.cta-btn-outline:hover {
    background: var(--primary);
    color: white !important;
}

.cta-btn-large {
    padding: 18px 48px;
    font-size: 17px;
}

.cta-btn-nav {
    padding: 10px 24px;
    font-size: 14px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
}

.navbar.scrolled,
.navbar.nav-open {
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: white;
    text-decoration: none;
}

.logo-accent {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* === MOBILE STICKY CTA === */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: var(--spacing-sm);
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-cta .cta-btn {
    width: 100%;
}

/* === COOKIE BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(10, 15, 28, 0.98);
    backdrop-filter: blur(20px);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-content p {
    color: white;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-btn {
    padding: 10px 24px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--accent);
    color: white;
}

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

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

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blob-float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: #1A3A5C;
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #D4A574;
    top: 40%;
    right: -5%;
    animation-delay: -5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: #7A9E7E;
    bottom: 10%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-title {
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-signals {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
}

.trust-icon {
    color: var(--success);
    font-size: 18px;
}

.hero-proof-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.proof-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    text-align: center;
}

.proof-stat {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

/* === HERO VISUAL - DASHBOARD MOCKUP === */
.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.dashboard-header {
    display: flex;
    gap: 8px;
    margin-bottom: var(--spacing-sm);
}

.dash-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dash-dot:nth-child(1) {
    background: #EF4444;
}

.dash-dot:nth-child(2) {
    background: #F59E0B;
}

.dash-dot:nth-child(3) {
    background: #10B981;
}

.dashboard-content {
    display: grid;
    gap: var(--spacing-sm);
}

.dash-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
}

.dash-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
}

.dash-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.dash-chart {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    transition: width 1.5s ease;
}

/* === PAIN GRID === */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.pain-card {
    text-align: center;
}

.pain-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.pain-title {
    font-size: 20px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.pain-text {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* === SOLUTION GRID === */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.solution-card {
    text-align: center;
}

.solution-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.solution-title {
    font-size: 22px;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.solution-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.solution-stat {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--glass-border);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

/* === COMPARISON GRID === */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-col {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.comparison-header {
    text-align: center;
    font-size: 24px;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--bg-light);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--bg-light);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.comparison-label {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 4px;
}

.comparison-value {
    font-weight: 600;
    font-size: 15px;
}

.comparison-value.bad {
    color: #EF4444;
}

.comparison-value.good {
    color: var(--success);
}

/* === PROCESS STEPPER === */
.process-stepper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    grid-column: span 1;
    text-align: center;
}

.process-connector {
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 32px;
}

.process-connector::after {
    content: '→';
    font-size: 24px;
    color: var(--accent);
    font-weight: 700;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 4px 16px rgba(26, 58, 92, 0.3);
}

.step-content {
    padding: 0 var(--spacing-xs);
}

.step-title {
    font-size: 18px;
    color: white;
    margin-bottom: var(--spacing-xs);
}

.step-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* === FOUNDER TRUST STRIP === */
.founder-strip-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-md);
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.strip-icon {
    font-size: 48px;
}

.strip-title {
    font-size: 22px;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.strip-description {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
}

.strip-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.section-dark .badge {
    background: var(--glass-bg);
    color: white;
}

/* === CASE STUDIES === */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.case-card {
    display: flex;
    flex-direction: column;
}

.case-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(26, 58, 92, 0.15);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    width: fit-content;
}

.section-dark .case-tag {
    background: var(--glass-bg);
    color: var(--accent);
}

.case-title {
    font-size: 20px;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.case-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.case-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.case-result {
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.result-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.case-solution {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
}

/* === FOUNDER FULL === */
.founder-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founder-quote {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.quote-mark {
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.quote-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin: var(--spacing-md) 0;
}

.quote-mark-end {
    transform: rotate(180deg);
    display: inline-block;
}

.founder-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.founder-role {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.85;
}

.founder-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    align-items: start;
}

.price-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    color: var(--text-dark);
}

/* Force dark text inside pricing cards (even in dark sections) */
.price-card h3,
.price-card h4,
.price-card p,
.price-card li,
.price-card span,
.price-card label {
    color: var(--text-dark);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.price-card-popular {
    border: 3px solid var(--accent);
    transform: scale(1.05);
}

.price-card-popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.price-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-sm);
}

.price-name {
    font-size: 24px;
    margin-bottom: 4px;
    color: var(--primary) !important;
    font-weight: 700;
}

.price-subtitle {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: var(--spacing-md);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin: var(--spacing-md) 0;
}

.price-custom {
    font-size: 28px;
}

.price-desc {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
}

.price-features {
    list-style: none;
    text-align: left;
    margin: var(--spacing-md) 0;
}

.price-features li {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3D3D3D !important;
    font-weight: 500;
}

.price-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-card .cta-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: var(--spacing-lg) auto 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--bg-light);
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    gap: var(--spacing-sm);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .arrow {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--spacing-md);
}

.faq-answer p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active {
    border-left: 3px solid var(--primary);
    padding-left: var(--spacing-sm);
    margin-left: calc(-1 * var(--spacing-sm));
}

/* === CONTACT / FINAL CTA === */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-wrapper {
    margin-top: var(--spacing-lg);
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 15px;
    color: white;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

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

.contact-form button {
    width: 100%;
    margin-top: var(--spacing-sm);
}

.form-status {
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    margin-top: var(--spacing-sm);
}

.form-status.success {
    background: rgba(122, 158, 126, 0.2);
    color: #7A9E7E;
    border: 1px solid rgba(122, 158, 126, 0.3);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.15);
    color: #FCA5A5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-alt {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.contact-alt a {
    color: var(--accent);
    text-decoration: underline;
}

/* === FOOTER === */
.footer {
    background: #04060B;
    color: #E8E8E8 !important;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

/* Nuclear footer text fix */
.footer p,
.footer span,
.footer li,
.footer div,
.footer label {
    color: #E0E0E0 !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
    color: #D0D0D0 !important;
    opacity: 1 !important;
}

.footer-contact {
    font-size: 14px;
    color: #D0D0D0 !important;
}

.footer-contact p {
    margin-bottom: var(--spacing-xs);
    color: #D0D0D0 !important;
}

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

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links h4 {
    color: white;
    font-size: 16px;
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
}

/* === ANIMATIONS === */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: if JS doesn't load or observer fails, show everything */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.counter {
    display: inline-block;
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 991px) {
    .hero-grid,
    .solution-grid,
    .cases-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .process-stepper {
        grid-template-columns: 1fr;
    }
    
    .process-connector {
        padding: var(--spacing-sm) 0;
    }
    
    .process-connector::after {
        content: '↓';
    }
    
    .price-card-popular {
        transform: none;
    }
    
    .price-card-popular:hover {
        transform: translateY(-8px);
    }
    
    .founder-strip-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .strip-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 48px;
        --spacing-lg: 32px;
    }
    
    .section {
        padding: var(--spacing-lg) 0;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 var(--spacing-lg);
    }
    
    .hero-grid {
        gap: var(--spacing-md);
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .hero-proof-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(10, 15, 28, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        padding: var(--spacing-xs) 0;
    }
    
    .cta-btn-nav {
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-badges {
        align-items: center;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .dashboard-mockup {
        padding: var(--spacing-sm);
    }
    
    .dash-value {
        font-size: 24px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cta-btn-large {
        padding: 16px 32px;
        font-size: 15px;
    }
    
    .glass-card {
        padding: var(--spacing-md);
    }
    
    .proof-stat {
        font-size: 20px;
    }
    
    .quote-mark {
        font-size: 60px;
    }
    
    .quote-text {
        font-size: 16px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .mobile-sticky-cta,
    .cookie-banner,
    .hero-bg {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section-dark {
        background: white;
        color: black;
    }
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.2);
        --glass-border: rgba(255, 255, 255, 0.4);
        --glass-bg-light: rgba(26, 58, 92, 0.1);
        --glass-border-light: rgba(26, 58, 92, 0.2);
    }
}

/* ===== LEGAL PAGES ===== */
.legal-page-body {
    background: var(--white);
    color: var(--text-dark);
    min-height: 100vh;
    padding: var(--spacing-lg) 0;
}

.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-page h1 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--accent);
}

.legal-page h2 {
    font-size: 22px;
    color: var(--primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-page h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.legal-page p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.legal-page ul {
    margin: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-md);
    padding-left: var(--spacing-sm);
}

.legal-page li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.legal-page a {
    color: var(--accent);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    background: rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(212, 165, 116, 0.2);
    transform: translateX(-4px);
}

/* ===== 404 PAGE ===== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.error-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) var(--spacing-md);
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--accent) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.error-title {
    font-size: 32px;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.error-subtitle {
    font-size: 18px;
    opacity: 0.85;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.error-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-subtitle {
        font-size: 16px;
    }
}
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.urgency-text {
    font-size: 15px;
    color: var(--primary);
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
    }
}

/* (Duplicate footer styles removed — using primary footer block above) */
