/* ============================================
   Elviora Website - Main Styles
   Modern, Non-typical Design System
   ============================================ */

:root {
    /* Color Palette */
    --color-primary: #1e1b4b;
    --color-primary-light: #312e81;
    --color-primary-dark: #0f172a;
    --color-secondary: #14b8a6;
    --color-accent: #f97316;
    --color-accent-hover: #ea580c;
    --color-surface: #f8fafc;
    --color-surface-dark: #1e293b;
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-white: #ffffff;
    
    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ============================================
   Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

section {
    padding: 5rem 0;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    font-size: 1.75rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-white) !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: none;
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, #fb923c 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, var(--color-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
    color: var(--color-white);
}

.btn-outline-light {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

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

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

.btn-primary:hover {
    background: var(--color-primary-light);
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    color: var(--color-white);
    padding: 8rem 0 6rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.accent-text {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual img {
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Hero Decorative Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, transparent 70%);
    bottom: 20%;
    left: 5%;
    animation: float 20s ease-in-out infinite reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: float 18s ease-in-out infinite;
}

/* ============================================
   Section Styles
   ============================================ */

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.bg-light {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ============================================
   Career Path Visualizer
   ============================================ */

.career-path-section {
    background: var(--color-white);
}

.career-path-visualizer {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    overflow-x: auto;
}

.path-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 800px;
}

.path-node {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 200px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.path-node:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary);
}

.path-node.monetization {
    background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
    border-color: var(--color-accent);
}

.node-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.path-node h4 {
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.path-node p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.node-duration,
.node-earning {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-surface);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.node-earning {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-accent);
}

.path-branches {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.path-connector {
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    margin: 1rem 0;
}

.career-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* ============================================
   Micro-lab Cards
   ============================================ */

.microlab-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(30, 27, 75, 0.1);
}

.microlab-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-secondary);
}

.lab-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.microlab-card h5 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.microlab-card p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.lab-tech {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: rgba(20, 184, 166, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-secondary);
}

/* ============================================
   Earnings Simulator
   ============================================ */

.earnings-simulator-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.simulator-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.simulator-card h4 {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.form-range {
    height: 8px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    border-radius: 10px;
}

.form-range::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: var(--color-white);
    border: 3px solid var(--color-accent);
    box-shadow: var(--shadow-md);
}

.range-value {
    text-align: center;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0.5rem;
    font-size: 1.125rem;
}

.simulator-result {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    border: 2px solid var(--color-accent);
}

.result-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
}

.result-note {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.result-adjusted {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 0.75rem;
}

/* ============================================
   Testimonials
   ============================================ */

.reverse-testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.reverse-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.before-section,
.after-section {
    padding: 1rem;
    border-radius: var(--radius-md);
}

.before-section {
    background: rgba(100, 116, 139, 0.1);
}

.after-section {
    background: rgba(20, 184, 166, 0.1);
}

.before-section h5,
.after-section h5 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.before-section p,
.after-section p {
    font-size: 0.875rem;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.metric {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-accent);
}

.divider-arrow {
    font-size: 1.5rem;
    color: var(--color-secondary);
    font-weight: 700;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--color-primary);
}

.author-location {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   Community Map
   ============================================ */

.map-visualization {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.world-map-svg {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hotspot {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hotspot:hover {
    transform: scale(1.2);
    opacity: 1 !important;
}

@keyframes pulseSpot {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 0.4; }
}

.pulse {
    animation: pulseSpot 3s ease-in-out infinite;
}

.connection-line {
    stroke-dasharray: 5, 5;
    animation: dash 30s linear infinite;
}

@keyframes dash {
    to { stroke-dashoffset: -1000; }
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.map-stat-item .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.map-stat-item .stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   Toolstack Strip
   ============================================ */

.toolstack-section {
    overflow: hidden;
}

.toolstack-scroll {
    overflow: hidden;
    position: relative;
}

.toolstack-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-logo {
    font-size: 2rem;
}

.tool-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-120px * 10 - 20rem)); }
}

.toolstack-track:hover {
    animation-play-state: paused;
}

/* ============================================
   Blueprint Section
   ============================================ */

.blueprint-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.blueprint-step {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.blueprint-step:hover {
    border-color: var(--color-secondary);
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.step-header:hover {
    background: rgba(20, 184, 166, 0.05);
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
    min-width: 50px;
}

.step-header h4 {
    flex: 1;
    color: var(--color-primary);
    margin: 0;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.blueprint-step.active .toggle-icon {
    transform: rotate(180deg);
}

.step-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blueprint-step.active .step-content {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

.step-content p {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
    padding-left: 0;
}

.step-content li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.step-content li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ============================================
   Workshop Cards
   ============================================ */

.workshop-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.workshop-date {
    text-align: center;
    min-width: 70px;
}

.date-month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

.date-day {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.workshop-content h5 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.workshop-content p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.workshop-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.workshop-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.workshop-meta svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.cta-box h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--color-surface-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5, .footer h6 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.newsletter-form .input-group {
    max-width: 400px;
}

.newsletter-form .form-control {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border: none;
    padding: 0.75rem 1rem;
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================
   Cookie Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 27, 75, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--color-white);
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   Forms & Inputs
   ============================================ */

.form-control,
.form-select {
    border: 2px solid rgba(30, 27, 75, 0.2);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-check-input {
    border: 2px solid rgba(30, 27, 75, 0.3);
}

.form-check-input:checked {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.invalid-feedback {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.was-validated .form-control:invalid {
    border-color: #dc2626;
}

.was-validated .form-control:valid {
    border-color: #16a34a;
}

/* ============================================
   Utility Classes
   ============================================ */

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

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

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.rounded-4 { border-radius: var(--radius-xl); }

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .before-after-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .divider-arrow {
        transform: rotate(90deg);
    }
    
    .workshop-card {
        flex-direction: column;
        text-align: center;
    }
    
    .path-branches {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .simulator-card {
        padding: 1.5rem;
    }
    
    .result-value {
        font-size: 2.5rem;
    }
    
    .map-stats {
        gap: 1.5rem;
    }
    
    .blueprint-accordion {
        padding: 0 1rem;
    }
}

/* ============================================
   Animations & Transitions
   ============================================ */

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .footer,
    .cta-section {
        display: none;
    }
}


.navbar-brand img{
    max-width: 200px;
}

html{
    overflow-x: hidden;
}

.faq-question h5{
    margin-bottom: 0;
}