/* ----------------------------------------------------
   DESIGN SYSTEM TOKENS (Stitch Luminous Minimalist)
   ---------------------------------------------------- */
:root {
    /* Foundation Colors */
    --color-background: #050505;
    --color-surface-card: #0a0a0a;
    --color-grid-line: #1a1a1a;
    --color-grid-line-glow: rgba(255, 255, 255, 0.02);
    
    /* Brand Accents */
    --color-primary: #0070ff;       /* Electric Blue */
    --color-secondary: #bf00ff;     /* Neon Purple */
    --color-primary-rgb: 0, 112, 255;
    --color-secondary-rgb: 191, 0, 255;
    --color-gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    
    /* Typography Palette */
    --color-text-primary: #f0f0f0;
    --color-text-secondary: #a1a1a1;
    --color-border-card: #1a1a1a;
    --color-border-hover: rgba(0, 112, 255, 0.3);

    /* Typography Scale */
    --font-display: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Radii Scale */
    --radius-standard: 8px;       /* 0.5rem - Bento cards */
    --radius-interactive: 4px;    /* 0.25rem - Inputs/chips */
    --radius-full: 9999px;        /* Pills and tags */
    --radius-xl: 16px;            /* Sections and larger boxes */

    /* Grid & Spacing */
    --spacing-grid-unit: 8px;
    --spacing-gutter: 24px;
    --spacing-margin-desktop: 64px;
    --spacing-margin-mobile: 16px;
    --container-max: 1200px;
}

/* ----------------------------------------------------
   RESET & SYSTEM BASE
   ---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    /* Grid Line Overlay Pattern */
    background-image: 
        linear-gradient(var(--color-grid-line-glow) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-grid-line-glow) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Base Ambient Glows */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: auto;
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------- */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background-color: rgba(5, 5, 5, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.header-container {
    max-width: var(--container-max);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--spacing-margin-desktop);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 112, 255, 0.2);
    display: inline-block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--color-text-primary);
    transition: transform 0.2s ease;
}

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

.nav-item {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-item:hover, .nav-item.active {
    color: var(--color-text-primary);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gradient-primary);
    box-shadow: 0 0 8px var(--color-primary);
}

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

/* i18n Language Toggle style */
.lang-toggle-container {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 2px 6px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: var(--color-text-primary);
}

.lang-btn.active {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(0, 112, 255, 0.5);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 10px;
    margin: 0 4px;
    pointer-events: none;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.mobile-toggle span {
    font-size: 28px;
}

/* ----------------------------------------------------
   BUTTON SYSTEM
   ---------------------------------------------------- */
.btn-primary {
    background: var(--color-gradient-primary);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-full);
    padding: 12px 28px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(191, 0, 255, 0.35), 0 0 40px rgba(0, 112, 255, 0.2);
}

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

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.btn-secondary:active {
    transform: scale(0.97);
}

/* w-full utility */
.w-full {
    width: 100%;
}

/* ----------------------------------------------------
   MAIN ROUTER & VIEWS
   ---------------------------------------------------- */
.main-wrapper {
    flex-grow: 1;
    z-index: 10;
    position: relative;
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-view {
    display: none;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 64px var(--spacing-margin-desktop) 128px;
}

.page-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.page-view.fade-out {
    opacity: 0;
    transform: translateY(-40px);
}

/* ----------------------------------------------------
   HOME VIEW & HERO
   ---------------------------------------------------- */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 64px;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-grid-line);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.glowing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulse-dot 2s infinite;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}

.gradient-text {
    background: var(--color-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtext {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

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

.hero-btn {
    padding: 16px 36px;
}

/* Scroll-in CSS Delays */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0ms);
}

/* ----------------------------------------------------
   BENTO GRID SYSTEM
   ---------------------------------------------------- */
.bento-container {
    margin-top: 64px;
}

.bento-header {
    margin-bottom: 48px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.decorative-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-grid-line);
    position: relative;
}

.line-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-gutter);
    grid-auto-rows: minmax(280px, auto);
}

.bento-card {
    background-color: var(--color-surface-card);
    border: 1px solid var(--color-border-card);
    border-radius: var(--radius-standard);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.005);
    height: 280px; /* Enforce uniform, compact height */
}

/* Glowing Border tracking layout */
.glow-tracker {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        250px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
        var(--card-glow-color, rgba(0, 112, 255, 0.08)),
        transparent 80%
    );
    transition: background 0.1s ease;
}

.bento-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.02) 100%
    );
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bento-card:hover::before {
    background: linear-gradient(
        135deg,
        rgba(0, 112, 255, 0.25) 0%,
        transparent 50%,
        rgba(191, 0, 255, 0.15) 100%
    );
}

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

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

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

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

/* Card Icons */
.card-icon-container {
    width: 48px;
    height: 48px;
    background-color: rgba(0, 112, 255, 0.05);
    border: 1px solid rgba(0, 112, 255, 0.15);
    border-radius: var(--radius-standard);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.card-icon-container.purple-glow {
    background-color: rgba(191, 0, 255, 0.05);
    border-color: rgba(191, 0, 255, 0.15);
}

.icon-glow {
    color: var(--color-primary);
    font-size: 24px;
}

.purple-glow .icon-glow {
    color: var(--color-secondary);
}

.card-body {
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.card-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

/* Badges list */
.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.bento-card:hover .badge {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
}

/* ----------------------------------------------------
   SERVICES VIEW & TIMELINE
   ---------------------------------------------------- */
.services-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.services-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.services-subtext {
    font-size: 18px;
    color: var(--color-text-secondary);
}

/* Deep Dive Columns */
.deep-dive-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 96px;
}

.deep-dive-card {
    background-color: var(--color-surface-card);
    border: 1px solid var(--color-border-card);
    border-radius: var(--radius-standard);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.deep-dive-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.deep-dive-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.service-icon {
    font-size: 28px;
    color: var(--color-primary);
}

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

.deep-dive-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
}

.deep-dive-list {
    list-style: none;
}

.deep-dive-list li {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    padding-left: 20px;
    position: relative;
}

.deep-dive-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-family: var(--font-display);
}

.deep-dive-card:nth-child(2) .deep-dive-list li::before {
    color: var(--color-secondary);
}

.deep-dive-list li strong {
    color: var(--color-text-primary);
    font-weight: 500;
}

/* Timeline Layout */
.timeline-container {
    margin-top: 128px;
}

.timeline-header {
    text-align: center;
    margin-bottom: 64px;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

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

.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 0;
}

/* Timeline center line background */
.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        var(--color-primary) 0%,
        var(--color-secondary) 100%
    );
    opacity: 0.15;
}

.timeline-step {
    display: flex;
    margin-bottom: 64px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-visual {
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 24px;
    position: relative;
}

/* Animated timeline indicator dots */
.timeline-dot {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-background);
    border: 2px solid var(--color-border-card);
    transition: all 0.5s ease;
    z-index: 2;
}

.timeline-dot.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 12px var(--color-primary);
}

.timeline-step:nth-child(even) .timeline-dot.active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    box-shadow: 0 0 12px var(--color-secondary);
}

.timeline-phase {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
}

.timeline-dot.active + .timeline-phase {
    color: var(--color-text-primary);
}

.timeline-content {
    flex: 1;
    padding-left: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    max-width: 480px;
}

/* ----------------------------------------------------
   CONTACT SPLIT VIEW & FORMS
   ---------------------------------------------------- */
.contact-split-screen {
    display: flex;
    min-height: calc(100vh - 200px);
}

.contact-form-side {
    width: 50%;
    display: flex;
    align-items: center;
    padding-right: var(--spacing-gutter);
}

.form-wrapper {
    width: 100%;
    max-width: 460px;
}

.form-header {
    margin-bottom: 32px;
}

.form-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--color-text-secondary);
}

.glowing-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.field-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

/* Transparent Inputs with custom Neon glows */
.transparent-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border-card);
    border-radius: var(--radius-interactive);
    padding: 14px 16px;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.transparent-input::placeholder {
    color: rgba(255, 255, 255, 0.15);
}

.transparent-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.02);
}

.text-area {
    resize: none;
}

/* Neon glow border lines beneath fields */
.focus-glow-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 0 10px var(--color-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.transparent-input:focus ~ .focus-glow-border {
    width: 100%;
}

.transparent-input:focus ~ .field-label {
    color: var(--color-primary);
}

.inline-icon {
    font-size: 16px;
    vertical-align: middle;
}

/* Right Side Image Setup */
.contact-asset-side {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: var(--spacing-gutter);
}

.asset-ambient-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--color-primary-rgb), 0.12), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.asset-image-container {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-standard);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--color-surface-card);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.stitch-generated-asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    mix-blend-mode: screen;
    filter: grayscale(10%) contrast(105%);
}

.hologram-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: 1px solid transparent;
    background: linear-gradient(
        135deg,
        rgba(0, 112, 255, 0.1) 0%,
        transparent 50%,
        rgba(191, 0, 255, 0.1) 100%
    );
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.02);
}

/* ----------------------------------------------------
   FOOTER SECTION
   ---------------------------------------------------- */
.compliance-footer {
    border-top: 1px solid var(--color-grid-line);
    background-color: var(--color-background);
    padding: 64px var(--spacing-margin-desktop) 32px;
    z-index: 10;
    position: relative;
}

.footer-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 36px;
    height: 36px;
    margin-right: 0;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--color-text-primary);
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--color-text-secondary);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.contact-icon {
    font-size: 18px;
    color: var(--color-primary);
}

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

.contact-item a:hover {
    color: var(--color-text-primary);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.legal-link {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--color-text-primary);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    border-top: 1px solid var(--color-grid-line);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.social-links {
    display: flex;
    gap: 24px;
}

.social-icon-link {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon-link:hover {
    color: var(--color-primary);
}

/* ----------------------------------------------------
   GDPR COMPLIANCE COOKIE CONSENT SYSTEM
   ---------------------------------------------------- */
.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: calc(var(--container-max) + 48px);
    margin: 0 auto;
    background-color: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--color-border-card);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.01);
    border-radius: var(--radius-standard);
    padding: 20px 24px;
    z-index: 99;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.cookie-banner-text {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.cookie-banner-icon {
    font-size: 28px;
    color: var(--color-primary);
}

.cookie-banner-text p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-primary {
    background-color: var(--color-text-primary);
    color: var(--color-background);
    border: none;
    border-radius: var(--radius-interactive);
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-primary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(250, 250, 250, 0.3);
}

.btn-cookie-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
    border-radius: var(--radius-interactive);
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.02);
}

/* Cookie modal style */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal.visible {
    display: flex;
}

.cookie-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cookie-modal-container {
    position: relative;
    width: 90%;
    max-width: 480px;
    background-color: var(--color-surface-card);
    border: 1px solid var(--color-border-card);
    border-radius: var(--radius-standard);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 10;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal.visible .cookie-modal-container {
    transform: scale(1);
    opacity: 1;
}

.cookie-modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--color-grid-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
}

.cookie-modal-close-btn {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
}

.cookie-modal-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-modal-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

.cookie-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-option-title {
    font-size: 14px;
    font-weight: 500;
}

/* Custom toggles checkboxes */
.cookie-toggle-wrapper {
    position: relative;
}

.cookie-checkbox {
    display: none;
}

.cookie-toggle-label {
    display: block;
    width: 44px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-toggle-label::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--color-text-primary);
    top: 3px;
    left: 3px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-checkbox:checked + .cookie-toggle-label {
    background-color: var(--color-primary);
}

.cookie-checkbox:checked + .cookie-toggle-label::after {
    left: 23px;
}

.cookie-toggle-label.disabled {
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.03);
}

.cookie-toggle-label.disabled::after {
    background-color: rgba(255, 255, 255, 0.3);
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid var(--color-grid-line);
}

/* ----------------------------------------------------
   MOBILE RESPONSIVENESS DRAWERS & QUERIES
   ---------------------------------------------------- */
.mobile-menu-drawer {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 80px);
    background-color: var(--color-surface-card);
    border-left: 1px solid var(--color-border-card);
    z-index: 95;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-item {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-item.active {
    color: var(--color-primary);
}

.mobile-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-lang {
    align-self: center;
}

/* ----------------------------------------------------
   KEYFRAMES KEY PARAMS
   ---------------------------------------------------- */
@keyframes pulse-dot {
    0% { transform: scale(1); box-shadow: 0 0 10px var(--color-primary); }
    50% { transform: scale(1.2); box-shadow: 0 0 20px var(--color-primary), 0 0 30px rgba(0, 112, 255, 0.2); }
    100% { transform: scale(1); box-shadow: 0 0 10px var(--color-primary); }
}

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

/* ----------------------------------------------------
   RESPONSIVE MEDIA QUERIES (COLLAPSE / GRIDS)
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 var(--spacing-margin-mobile);
    }
    
    .page-view {
        padding-left: var(--spacing-margin-mobile);
        padding-right: var(--spacing-margin-mobile);
    }

    .bento-grid {
        gap: 16px;
    }
    
    .deep-dive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vertical-timeline::before {
        left: 20px;
    }

    .timeline-visual {
        width: auto;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-dot {
        left: 14px;
        right: auto;
    }

    .timeline-phase {
        margin-left: 48px;
    }

    .timeline-content {
        padding-left: 24px;
    }
    
    .compliance-footer {
        padding-left: var(--spacing-margin-mobile);
        padding-right: var(--spacing-margin-mobile);
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .col-span-8, .col-span-4 {
        grid-column: span 1;
    }
    
    .contact-split-screen {
        flex-direction: column;
    }

    .contact-form-side, .contact-asset-side {
        width: 100%;
        padding: 0;
    }

    .contact-asset-side {
        margin-top: 48px;
        height: 320px;
    }

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

    .footer-legal-links {
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: flex-start;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner-actions {
        justify-content: flex-end;
    }
}
