/* CSS Design System - Reger AI Technology */

:root {
    /* HSL Color Palette */
    --bg-dark: HSL(220, 20%, 8%);
    --bg-card: HSL(220, 15%, 12%);
    --bg-card-hover: HSL(220, 15%, 16%);
    --border-color: HSL(220, 12%, 18%);
    --border-color-hover: HSL(220, 12%, 26%);
    
    /* Text Colors */
    --text-main: HSL(210, 20%, 98%);
    --text-muted: HSL(210, 10%, 70%);
    --text-bright: HSL(0, 0%, 100%);
    
    /* Accents adapted from the Logo */
    --accent-global: HSL(345, 55%, 48%); /* Logo Burgundy Red */
    --accent-global-glow: HSLA(345, 55%, 48%, 0.15);
    
    --accent-logan: HSL(195, 55%, 52%); /* Logo Ice Blue */
    --accent-logan-glow: HSLA(195, 55%, 52%, 0.15);
    
    --accent-orin: HSL(345, 55%, 48%); /* Logo Burgundy Red */
    --accent-orin-glow: HSLA(345, 55%, 48%, 0.15);
    
    --accent-doc: HSL(220, 10%, 70%); /* Logo Metallic Silver */
    --accent-doc-glow: HSLA(220, 10%, 70%, 0.15);
    
    /* Layout & Fonts */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
    border: 1px solid var(--accent-global);
    background-color: var(--accent-global-glow);
    color: var(--accent-global);
    margin-bottom: 1.5rem;
}

/* Headers & Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-global);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--accent-global-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px hsla(345, 55%, 48%, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--border-color);
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: hsla(220, 25%, 8%, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-main);
}

.btn-nav {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--accent-global);
    color: var(--accent-global);
    background-color: transparent;
    border-radius: var(--border-radius-md);
}

.btn-nav:hover {
    background-color: var(--accent-global);
    color: var(--bg-dark);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 30%, HSL(220, 25%, 12%) 0%, var(--bg-dark) 70%);
}

.hero-bg-glows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background-color: var(--accent-global);
    top: -100px;
    left: calc(50% - 200px);
}

.glow-2 {
    width: 300px;
    height: 300px;
    background-color: var(--accent-logan);
    bottom: -50px;
    left: 10%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    background: linear-gradient(135deg, var(--text-bright) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

/* Section Common Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-global);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
}

/* Services / Consulting & Lecturing */
.services {
    padding: 100px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-global), var(--accent-logan));
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 30px hsla(220, 25%, 4%, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: var(--border-color);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-global);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-bullets {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-bullets li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.service-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-global);
}

/* Products Section (Logan, Orin, Doc) */
.products {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, HSL(220, 25%, 10%) 50%, var(--bg-dark) 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.product-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.product-badge {
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-md);
    border: 1px solid transparent;
}

/* Badges specifically for Logan/Orin/Doc */
.badge-logan {
    border-color: var(--accent-logan);
    background-color: var(--accent-logan-glow);
    color: var(--accent-logan);
}

.badge-orin {
    border-color: var(--accent-orin);
    background-color: var(--accent-orin-glow);
    color: var(--accent-orin);
}

.badge-doc {
    border-color: var(--accent-doc);
    background-color: var(--accent-doc-glow);
    color: var(--accent-doc);
}

.product-name {
    font-size: 1.85rem;
    margin-bottom: 1rem;
}

.product-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.product-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.feat-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feat-bullet {
    font-size: 1.2rem;
    font-weight: 800;
}

.font-logan { color: var(--accent-logan); }
.font-orin { color: var(--accent-orin); }
.font-doc { color: var(--accent-doc); }

/* Glow-Hover effect for product cards */
.product-logan:hover {
    border-color: var(--accent-logan);
    box-shadow: 0 0 25px var(--accent-logan-glow);
    transform: translateY(-5px);
}

.product-orin:hover {
    border-color: var(--accent-orin);
    box-shadow: 0 0 25px var(--accent-orin-glow);
    transform: translateY(-5px);
}

.product-doc:hover {
    border-color: var(--accent-doc);
    box-shadow: 0 0 25px var(--accent-doc-glow);
    transform: translateY(-5px);
}

/* Workflow Simulator Section */
.simulator {
    padding: 100px 0;
}

.sim-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.sim-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sim-nav-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.sim-nav-btn:hover {
    border-color: var(--border-color-hover);
}

.sim-nav-btn.active {
    border-color: var(--accent-global);
    box-shadow: 0 0 15px var(--accent-global-glow);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--bg-dark);
    background-color: var(--text-main);
    flex-shrink: 0;
}

.step-num-logan { background-color: var(--accent-logan); }
.step-num-orin { background-color: var(--accent-orin); }
.step-num-doc { background-color: var(--accent-doc); }

.step-text {
    display: flex;
    flex-direction: column;
}

.step-text strong {
    font-size: 0.9rem;
    color: var(--text-main);
}

.step-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.sim-display {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.sim-slide {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    width: 100%;
}

.sim-slide.active {
    display: grid;
}

/* Simulator Visualizations */
.sim-visual {
    background-color: HSL(220, 25%, 5%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
    position: relative;
    overflow: hidden;
}

/* Slide 1 - Logan visual */
.pi-board {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-logan);
}

.pi-led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.green-blink {
    background-color: var(--accent-logan);
    box-shadow: 0 0 10px var(--accent-logan);
    animation: blink 1s infinite;
}

.pi-text {
    font-size: 0.8rem;
    font-weight: 700;
}

.data-stream {
    font-family: monospace;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid HSL(220, 20%, 12%);
}

.data-row span:first-child {
    color: var(--text-muted);
}

.data-row .val {
    color: var(--accent-logan);
    font-weight: 700;
}

/* Slide 2 - Orin visual */
.orin-alert-box {
    border: 1px solid var(--accent-orin);
    background-color: hsla(345, 55%, 48%, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.alert-header {
    background-color: var(--accent-orin);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-body {
    padding: 1rem;
}

.guide-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.guide-steps {
    font-size: 0.75rem;
    padding-left: 1.2rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.guide-steps li.completed {
    text-decoration: line-through;
    color: hsla(210, 12%, 70%, 0.4);
}

.guide-steps li.active-step {
    color: var(--accent-orin);
    font-weight: 700;
    animation: pulse 1.5s infinite;
}

/* Slide 3 - Doc visual */
.doc-chart-box {
    width: 100%;
}

.chart-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-doc);
}

.chart-mockup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bar-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
}

.bar-label {
    width: 60px;
    font-weight: 600;
}

.bar-track {
    flex-grow: 1;
    height: 12px;
    background-color: var(--bg-card);
    border-radius: 9999px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 9999px;
    transition: var(--transition-smooth);
}

.purple-fill {
    background-color: var(--accent-doc);
    box-shadow: 0 0 10px var(--accent-doc-glow);
}

.bar-val {
    width: 45px;
    text-align: right;
    font-weight: 700;
}

/* Info side of slides */
.sim-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sim-info h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.color-logan { color: var(--accent-logan); }
.color-orin { color: var(--accent-orin); }
.color-doc { color: var(--accent-doc); }

.sim-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.sim-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    min-width: 100px;
}

.stat-box strong {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-box span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-portrait-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.about-image-container {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.about-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%; /* Focused on face and shoulder line */
    transition: var(--transition-smooth);
}

.about-image-container:hover .about-portrait {
    transform: scale(1.03);
}

.about-quote-box {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color-hover);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
}

.about-quote-box p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-global);
}

.about-info h2 {
    margin-bottom: 1.5rem;
}

.about-metrics {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-item strong {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-global);
}

.metric-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: HSL(220, 25%, 6%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.contact-info-panel {
    padding: 4rem;
    background: radial-gradient(circle at 10% 10%, HSL(220, 20%, 15%) 0%, var(--bg-card) 80%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h2 {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background-color: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-panel {
    padding: 4rem;
    border-left: 1px solid var(--border-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-global);
    box-shadow: 0 0 10px var(--accent-global-glow);
}

.form-feedback {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    min-height: 20px;
}

.form-feedback.success { color: var(--accent-global); }
.form-feedback.error { color: HSL(0, 80%, 60%); }

/* Footer */
.footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Vision & Ökosystem Section */
.vision-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, HSL(220, 15%, 6%) 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.vision-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-global), var(--accent-logan));
    opacity: 0;
    transition: var(--transition-smooth);
}

.vision-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: 0 10px 30px hsla(220, 25%, 4%, 0.5);
}

.vision-card:hover::before {
    opacity: 1;
}

.vision-icon {
    width: 50px;
    height: 50px;
    background-color: var(--border-color);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-global);
    margin-bottom: 1.5rem;
}

.vision-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.vision-bullets {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vision-bullets li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.vision-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-global);
}

/* Privacy Banner */
.privacy-banner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color-hover);
    border-left: 4px solid var(--accent-global);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.privacy-icon {
    font-size: 2rem;
    line-height: 1;
}

.privacy-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.privacy-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sim-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sim-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .sim-nav-btn {
        flex: 1 0 240px;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-panel {
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-dark);
        border-top: 1px solid var(--border-color);
        transition: var(--transition-smooth);
        padding: 3rem 1.5rem;
    }
    
    .nav.open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
    }
    
    .burger-menu.open .burger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .burger-menu.open .burger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.open .burger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sim-slide {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .privacy-banner {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.75rem;
    }
}

/* Legal Pages Styling */
.legal-section {
    padding: 140px 0 80px 0;
    min-height: 80vh;
    background-color: var(--bg-dark);
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-content h2 {
    color: var(--text-bright);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: var(--text-bright);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

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

.legal-content li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-logan);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.legal-content a:hover {
    color: var(--text-bright);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
}

/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(13, 17, 23, 0.95);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem 2rem;
    z-index: 9999;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1232px;
    margin: 0 auto;
}

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

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text h4 {
    color: var(--text-bright);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.cookie-banner-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

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

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 1.25rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .cookie-banner-buttons {
        width: 100%;
    }
    
    .cookie-banner-buttons .btn {
        flex: 1;
        text-align: center;
    }
}


