/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* CSS Custom Properties */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff00ff;
    --accent-color: #00ff88;
    --background-dark: #0a0a0a;
    --surface-dark: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: rgba(0, 212, 255, 0.3);
    --glow-color: rgba(0, 212, 255, 0.5);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.6s ease;
    --max-width: 1200px;
    --section-padding: 120px;
    /* Industry card accent colors */
    --industry-accent-orange: #ff8c42;
    --industry-accent-green: #00e676;
    --industry-accent-purple: #b388ff;
    --industry-accent-blue: #448aff;
    --industry-accent-amber: #ffca28;
    --industry-accent-gold: #ffd54f;
    --industry-accent-slate: #90a4ae;
    --industry-accent-violet: #7c4dff;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--background-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    padding: 20px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Neural Network Background */
.neural-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

#neuralCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.3;
    display: block;
}

/* Floating Navigation - FIXED */
.floating-nav {
    position: fixed;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 12px 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-nav.visible {
    opacity: 1;
    visibility: visible;
}

.floating-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.floating-nav a {
    display: block;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 20px;
    transition: var(--transition-fast);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.floating-nav a:hover,
.floating-nav a.active {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

/* Back to Home Section */
.back-home-section {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 1000;
}

.back-home-section .btn-wrapper {
    display: flex;
    justify-content: flex-start;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 212, 255, 0.1);
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 0.1s ease;
}

/* FIXED Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px 60px;
}

.hero-content {
    z-index: 2;
    max-width: 1000px;
    width: 100%;
}

.stero-tiles-container {
    margin-bottom: 80px;
}

.stero-tiles {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tile {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-slow);
    transform-style: preserve-3d;
    position: relative;
    box-shadow: 0 0 20px var(--glow-color);
}

.tile-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    transition: var(--transition-slow);
    border-radius: 8px;
}

.tile-face.front {
    color: var(--primary-color);
}

.tile-face.back {
    color: var(--secondary-color);
    transform: rotateY(180deg);
}

.tile:hover {
    transform: rotateY(180deg) scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.tile.flipped {
    transform: rotateY(180deg);
    border-color: var(--secondary-color);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.labs-text {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: 6px;
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 20px;
}

.labs-letter {
    display: inline-block;
    animation: letterFloat 3s ease-in-out infinite;
}

.labs-letter:nth-child(1) {
    animation-delay: 0s;
}

.labs-letter:nth-child(2) {
    animation-delay: 0.2s;
}

.labs-letter:nth-child(3) {
    animation-delay: 0.4s;
}

.labs-letter:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

/* FIXED Hero Title */
.hero-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 600;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    color: var(--text-primary);
}

.title-line {
    display: block;
    margin-bottom: 8px;
}

.title-line:last-child {
    margin-bottom: 0;
}

/* Enhanced Buttons - FIXED */
.enhanced-button {
    position: relative;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    border-radius: 35px;
    cursor: pointer;
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px var(--glow-color);
    overflow: hidden;
    text-decoration: none;
    min-width: 250px;
    margin-top: 20px;
}

.enhanced-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.enhanced-button:hover::before {
    left: 100%;
}

.enhanced-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--glow-color);
}

.enhanced-button:active {
    transform: translateY(-1px);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    position: relative;
    z-index: 1;
    transition: var(--transition-medium);
}

.enhanced-button:hover .button-icon {
    transform: translateX(5px);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Sections */
.solutions-section,
.technologies-section,
.lab-section,
.about-section,
.contact-section {
    padding: var(--section-padding) 0;
    position: relative;
    z-index: 1;
}

.technologies-section {
    background: rgba(0, 0, 0, 0.3);
}

.lab-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 20, 40, 0.8));
    overflow: hidden;
}

.contact-section {
    background: rgba(0, 0, 0, 0.5);
}

/* Animated Titles */
.animated-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
    line-height: 1.2;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    animation: titleReveal 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
    margin-right: 8px;
}

.title-word:nth-child(1) {
    animation-delay: 0.1s;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.title-word:nth-child(3) {
    animation-delay: 0.3s;
}

.title-word:nth-child(4) {
    animation-delay: 0.4s;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    perspective: 1500px;
    /* Adds 3D space for children */
    max-width: 1200px;
    margin: 0 auto;
}

.enhanced-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
    position: relative;
    transform-style: preserve-3d;
    /* Enables 3D transforms for children */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-medium);
}

.enhanced-card:hover {
    /* The main transform is now handled by JavaScript for the interactive tilt effect. */
    /* We keep the border and shadow effects on hover. */
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(0, 212, 255, 0.3);
}

.enhanced-card:hover .card-glow {
    opacity: 1;
}

.enhanced-card:hover .card-content {
    transform: translateZ(40px);
    /* Push content forward for depth on hover */
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-medium);
    /* Animate the content's z-transform */
}

.card-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.enhanced-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.enhanced-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 25px;
}

.feature {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    white-space: nowrap;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.card-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-medium);
}

.card-link:hover::before {
    width: 100%;
}

.card-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Technologies Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.enhanced-tech {
    text-align: center;
    position: relative;
    padding: 20px;
}

.tech-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: techIconFloat 3s ease-in-out infinite;
}

.enhanced-tech h3 {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.enhanced-tech p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.tech-item {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    transition: var(--transition-medium);
    cursor: pointer;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}

.tech-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 6px;
    display: block;
}

.tech-item span {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* FIXED Lab Section */
.lab-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.lab-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 400px;
}

.holographic-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
}

.holographic-shape {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.wireframe-shape {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.shape-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
}

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

.layer-2 {
    transform: rotateY(45deg);
    border-color: var(--secondary-color);
    animation: pulse 3s ease-in-out infinite 1s;
}

.layer-3 {
    transform: rotateX(45deg);
    border-color: var(--accent-color);
    animation: pulse 3s ease-in-out infinite 2s;
}

.energy-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: energyPulse 4s ease-in-out infinite;
}

.lab-text {
    max-width: 500px;
}

.lab-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.lab-subtitle {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.lab-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* FIXED Innovation Metrics */
.innovation-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.metric {
    text-align: center;
    padding: 25px 15px;
    background: var(--surface-dark);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.metric:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    display: block;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    font-weight: 600;
}

/* FIXED Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 10px;
    background: var(--surface-dark);
    border-radius: 35px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    margin-top: 30px;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the newsletter CTA button larger and perfectly centered */
.newsletter-form .btn-wrapper {
    display: flex;
    align-items: center;
}

.newsletter-form .btn {
    font-size: 1rem;
    padding: 0.6em 1.2em;
}

.newsletter-form .btn-svg {
    height: 24px;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--glow-color);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.enhanced-viz {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid var(--border-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-grid {
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.2) 1px, transparent 1px);
    background-size: 25px 25px;
    animation: gridMove 6s linear infinite;
    opacity: 0.7;
}

.data-streams {
    background: radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.3) 0%, transparent 50%);
    animation: dataFlow 8s ease-in-out infinite;
}

.viz-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.viz-title {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.viz-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.about-story {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.story-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--surface-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    margin-top: 5px;
}

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

.story-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--surface-dark);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #101010;
    /* Match .btn base color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-primary);
    flex-shrink: 0;
    border: 1px solid #fff2;
    /* Same subtle border as .btn */
    box-shadow:
        inset 0px 1px 1px rgba(255, 255, 255, 0.2),
        inset 0px 2px 2px rgba(255, 255, 255, 0.15),
        inset 0px 4px 4px rgba(255, 255, 255, 0.1),
        inset 0px 8px 8px rgba(255, 255, 255, 0.05),
        inset 0px 16px 16px rgba(255, 255, 255, 0.05),
        0px -1px 1px rgba(0, 0, 0, 0.02),
        0px -2px 2px rgba(0, 0, 0, 0.03),
        0px -4px 4px rgba(0, 0, 0, 0.05),
        0px -8px 8px rgba(0, 0, 0, 0.06),
        0px -16px 16px rgba(0, 0, 0, 0.08);
}

.contact-details h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 14px;
}

.contact-form {
    background: var(--surface-dark);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}


.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    /* background: rgba(19, 0, 0, 0.848);
     */
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    transition: var(--transition-medium);
    backdrop-filter: blur(5px);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);

}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-group select option {
    /* background-color: black;
     */
    color: white;
    background-color: black;
}

.submit-button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Center and slightly enlarge contact form submit button */
.contact-form .btn-wrapper {
    display: block;
    text-align: center;
}

.contact-form .btn.submit-button {
    display: inline-flex;
    font-size: 1.05rem;
    padding: 0.8em 2.2em;
}

/* Keep contact CTA text on a single line */
.contact-form .txt-1,
.contact-form .txt-2 {
    white-space: nowrap;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px var(--glow-color);
}

.submit-button:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    border-top: 1px solid var(--border-color);
}

.footer-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin-bottom: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    text-align: center;
}

.brand-title {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.brand-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--surface-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-medium);
    text-decoration: none;
    color: var(--text-secondary);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-tech {
    font-size: 12px;
    color: var(--text-muted);
}

/* Human-touch helper text */
.hero-subtext {
    margin-top: 20px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.contact-intro {
    max-width: 720px;
    margin: 0 auto 40px auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.contact-note {
    display: inline-block;
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 12px;
}

.newsletter-note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 12px;
}

.contact-footnote {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.btn-wrapper-subscribe {
    position: relative;
    display: inline-block;
    padding-top: 20px;
}

/* 3D glow button (.btn) - exact Uiverse.io version */
.btn-wrapper {
    position: relative;
    display: inline-block;

}

.btn {
    --border-radius: 24px;
    --padding: 4px;
    --transition: 0.4s;
    --button-color: #101010;
    /* Same as background */
    --highlight-color-hue: 210deg;

    user-select: none;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0.6em 1.2em;
    font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
    font-size: 1em;
    font-weight: 400;

    background-color: var(--button-color);

    box-shadow:
        inset 0px 1px 1px rgba(255, 255, 255, 0.2),
        inset 0px 2px 2px rgba(255, 255, 255, 0.15),
        inset 0px 4px 4px rgba(255, 255, 255, 0.1),
        inset 0px 8px 8px rgba(255, 255, 255, 0.05),
        inset 0px 16px 16px rgba(255, 255, 255, 0.05),
        0px -1px 1px rgba(0, 0, 0, 0.02),
        0px -2px 2px rgba(0, 0, 0, 0.03),
        0px -4px 4px rgba(0, 0, 0, 0.05),
        0px -8px 8px rgba(0, 0, 0, 0.06),
        0px -16px 16px rgba(0, 0, 0, 0.08);

    border: solid 1px #fff2;
    border-radius: var(--border-radius);
    cursor: pointer;

    transition:
        box-shadow var(--transition),
        border var(--transition),
        background-color var(--transition);
}

.btn::before {
    content: "";
    position: absolute;
    top: calc(0px - var(--padding));
    left: calc(0px - var(--padding));
    width: calc(100% + var(--padding) * 2);
    height: calc(100% + var(--padding) * 2);
    border-radius: calc(var(--border-radius) + var(--padding));
    pointer-events: none;
    background-image: linear-gradient(0deg, #0004, #000a);

    z-index: -1;
    transition:
        box-shadow var(--transition),
        filter var(--transition);
    box-shadow:
        0 -8px 8px -6px #0000 inset,
        0 -16px 16px -8px #00000000 inset,
        1px 1px 1px #fff2,
        2px 2px 2px #fff1,
        -1px -1px 1px #0002,
        -2px -2px 2px #0001;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
    background-image: linear-gradient(0deg,
            #fff,
            hsl(var(--highlight-color-hue), 100%, 70%),
            hsla(var(--highlight-color-hue), 100%, 70%, 50%),
            8%,
            transparent);
    background-position: 0 0;
    opacity: 0;
    transition:
        opacity var(--transition),
        filter var(--transition);
}

.btn-letter {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff5;
    width: fit-content;
    animation: letter-anim 2s ease-in-out infinite;
    transition:
        color var(--transition),
        text-shadow var(--transition),
        opacity var(--transition);
}

@keyframes letter-anim {
    50% {
        text-shadow: 0 0 3px #fff8;
        color: #fff;
    }
}

.btn-svg {
    flex-grow: 1;
    height: 24px;
    margin-right: 0.5rem;
    fill: #e8e8e8;
    animation: flicker 2s linear infinite;
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 2px #fff9);
    transition:
        fill var(--transition),
        filter var(--transition),
        opacity var(--transition);
}

@keyframes flicker {
    50% {
        opacity: 0.3;
    }
}

.txt-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.txt-1 {
    position: relative;
    word-spacing: -1em;
}

.txt-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    word-spacing: -1em;
}

.txt-1 {
    animation: appear-anim 1s ease-in-out forwards;
}

.txt-2 {
    opacity: 0;
}

@keyframes appear-anim {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.btn:focus .txt-1 {
    animation: opacity-anim 0.3s ease-in-out forwards;
    animation-delay: 1s;
}

.btn:focus .txt-2 {
    animation: opacity-anim 0.3s ease-in-out reverse forwards;
    animation-delay: 1s;
}

@keyframes opacity-anim {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.btn:focus .btn-letter {
    animation:
        focused-letter-anim 1s ease-in-out forwards,
        letter-anim 1.2s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

@keyframes focused-letter-anim {

    0%,
    100% {
        filter: blur(0px);
    }

    50% {
        transform: scale(2);
        filter: blur(10px) brightness(150%) drop-shadow(-36px 12px 12px hsl(var(--highlight-color-hue), 100%, 70%));
    }
}

.btn:focus .btn-svg {
    animation-duration: 1.2s;
    animation-delay: 0.2s;
}

.btn:focus::before {
    box-shadow:
        0 -8px 12px -6px #fff3 inset,
        0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 20%) inset,
        1px 1px 1px #fff3,
        2px 2px 2px #fff1,
        -1px -1px 1px #0002,
        -2px -2px 2px #0001;
}

.btn:focus::after {
    opacity: 0.6;
    mask-image: linear-gradient(0deg, #fff, transparent);
    filter: brightness(100%);
}

.btn-letter:nth-child(1),
.btn:focus .btn-letter:nth-child(1) {
    animation-delay: 0s;
}

.btn-letter:nth-child(2),
.btn:focus .btn-letter:nth-child(2) {
    animation-delay: 0.08s;
}

.btn-letter:nth-child(3),
.btn:focus .btn-letter:nth-child(3) {
    animation-delay: 0.16s;
}

.btn-letter:nth-child(4),
.btn:focus .btn-letter:nth-child(4) {
    animation-delay: 0.24s;
}

.btn-letter:nth-child(5),
.btn:focus .btn-letter:nth-child(5) {
    animation-delay: 0.32s;
}

.btn-letter:nth-child(6),
.btn:focus .btn-letter:nth-child(6) {
    animation-delay: 0.4s;
}

.btn-letter:nth-child(7),
.btn:focus .btn-letter:nth-child(7) {
    animation-delay: 0.48s;
}

.btn-letter:nth-child(8),
.btn:focus .btn-letter:nth-child(8) {
    animation-delay: 0.56s;
}

.btn-letter:nth-child(9),
.btn:focus .btn-letter:nth-child(9) {
    animation-delay: 0.64s;
}

.btn-letter:nth-child(10),
.btn:focus .btn-letter:nth-child(10) {
    animation-delay: 0.72s;
}

.btn-letter:nth-child(11),
.btn:focus .btn-letter:nth-child(11) {
    animation-delay: 0.8s;
}

.btn-letter:nth-child(12),
.btn:focus .btn-letter:nth-child(12) {
    animation-delay: 0.88s;
}

.btn-letter:nth-child(13),
.btn:focus .btn-letter:nth-child(13) {
    animation-delay: 0.96s;
}

.btn-letter:nth-child(n+14),
.btn:focus .btn-letter:nth-child(n+14) {
    animation-delay: 1.04s;
}

.btn:focus .btn-letter:nth-child(n+14) {
    animation-delay: 0s, 1s;
}

/* Longer CTA labels on service pages */
.hero-section .btn .txt-1,
.hero-section .btn .txt-2 {
    white-space: nowrap;
}

.hero-section .btn-wrapper .btn {
    padding: 0.6em 1.6em;
}

.btn:active {
    border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 70%);
    background-color: hsla(var(--highlight-color-hue), 50%, 20%, 0.5);
}

.btn:active::before {
    box-shadow:
        0 -8px 12px -6px #fffa inset,
        0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 80%) inset,
        1px 1px 1px #fff4,
        2px 2px 2px #fff2,
        -1px -1px 1px #0002,
        -2px -2px 2px #0001;
}

.btn:active::after {
    opacity: 1;
    mask-image: linear-gradient(0deg, #fff, transparent);
    filter: brightness(200%);
}

.btn:active .btn-letter {
    text-shadow: 0 0 1px hsla(var(--highlight-color-hue), 100%, 90%, 90%);
    animation: none;
}

.btn:hover {
    border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 40%);
}

.btn:hover::before {
    box-shadow:
        0 -8px 8px -6px #fffa inset,
        0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 30%) inset,
        1px 1px 1px #fff2,
        2px 2px 2px #fff1,
        -1px -1px 1px #0002,
        -2px -2px 2px #0001;
}

.btn:hover::after {
    opacity: 1;
    mask-image: linear-gradient(0deg, #fff, transparent);
}

.btn:hover .btn-svg {
    fill: #fff;
    filter: drop-shadow(0 0 3px hsl(var(--highlight-color-hue), 100%, 70%)) drop-shadow(0 -4px 6px #0009);
    animation: none;
}

/* Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes letterFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes techIconFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes energyPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(25px, 25px);
    }
}

@keyframes dataFlow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 30px;
    }

    .floating-nav {
        display: none;
    }

    .lab-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 80px 20px 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .tile {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .stero-tiles {
        gap: 12px;
    }

    .labs-text {
        font-size: 24px;
        letter-spacing: 4px;
    }

    .animated-title,
    .section-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .enhanced-card {
        padding: 30px 25px;
    }

    .innovation-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .metric {
        padding: 20px 15px;
    }

    .metric-value {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }

    .enhanced-viz {
        max-width: 100%;
        height: 250px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .footer-bottom {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }

    .hero-section {
        padding: 60px 16px 30px;
    }

    .hero-title {
        font-size: 28px;
    }

    .tile {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .stero-tiles {
        gap: 8px;
    }

    .labs-text {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .enhanced-button {
        min-width: 200px;
        padding: 16px 30px;
    }

    .innovation-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .metric-value {
        font-size: 24px;
    }

    .metric-label {
        font-size: 10px;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #ffffff;
        --secondary-color: #ffffff;
        --text-primary: #ffffff;
        --text-secondary: #ffffff;
        --border-color: #ffffff;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-element {
        animation: none;
    }

    .holographic-shape {
        animation: none;
    }

    .tech-icon {
        animation: none;
    }
}

/* Enhanced Solution Cards */
.card-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-card:hover .icon-particles {
    opacity: 1;
}

/* Service Page Specific Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-family: 'Orbitron', monospace;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

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

/* Audit redesign additions */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
}

.cta-button-secondary {
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.trusted-by-section {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-by-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.trusted-by-items {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.trusted-by-item {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 8px;
}

.process-step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary-color);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

.process-step h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.case-study-card .card-content p {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.testimonial-card .testimonial-quote {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-card .testimonial-author {
    color: var(--primary-color);
    font-size: 14px;
}

.faq-section {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
}

/* Audit v2 additions */
.section-intro {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

.outcome-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}

.outcome-chip {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid rgba(0, 212, 255, 0.35);
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.08);
}

.hero-outcome-chips {
    margin-bottom: 24px;
}


/* ── Homepage Industry Poster Strip ── */
.industry-strip-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    overflow: hidden;
}

.industry-strip-container {
    position: relative;
    z-index: 1;
}

.industry-strip-intro {
    text-align: center;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.industry-strip-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    padding: 8px 24px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.industry-strip-scroll::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.industry-poster-card.enhanced-card {
    padding: 0;
    text-align: left;
    overflow: hidden;
    height: 320px;
    min-height: 320px;
    max-height: 320px;
}

.industry-poster-card {
    flex: 0 0 280px;
    width: 280px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-poster-card:hover {
    transform: scale(1.02);
}

.industry-poster-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 18px 16px 14px;
    overflow: hidden;
    box-sizing: border-box;
}

.industry-poster-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: var(--card-accent, var(--accent-primary));
    flex-shrink: 0;
}

.industry-poster-card[data-accent="orange"] { --card-accent: var(--industry-accent-orange); }
.industry-poster-card[data-accent="green"] { --card-accent: var(--industry-accent-green); }
.industry-poster-card[data-accent="purple"] { --card-accent: var(--industry-accent-purple); }
.industry-poster-card[data-accent="blue"] { --card-accent: var(--industry-accent-blue); }
.industry-poster-card[data-accent="gold"] { --card-accent: var(--industry-accent-gold); }
.industry-poster-card[data-accent="amber"] { --card-accent: var(--industry-accent-amber); }
.industry-poster-card[data-accent="slate"] { --card-accent: var(--industry-accent-slate); }
.industry-poster-card[data-accent="violet"] { --card-accent: var(--industry-accent-violet); }

.industry-poster-card__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
    flex-shrink: 0;
}

.industry-poster-card__tagline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0 0 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.industry-poster-card__divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 6px 0;
    flex-shrink: 0;
}

.industry-poster-card__capabilities {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.industry-poster-card__capabilities li {
    font-size: 0.76rem;
    color: var(--text-secondary);
    padding: 2px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.industry-poster-card__capabilities li::before {
    content: '•';
    color: var(--card-accent, var(--accent-primary));
    margin-right: 8px;
}

.industry-poster-card__trust {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 6px 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.industry-poster-card__link {
    margin-top: auto;
    font-size: 0.82rem;
    flex-shrink: 0;
    justify-content: flex-start;
}

@media (min-width: 1280px) {
    .industry-strip-scroll {
        flex-wrap: wrap;
        overflow: visible;
        justify-content: center;
        max-width: 1200px;
        margin-inline: auto;
        gap: 20px;
        padding-bottom: 8px;
    }

    .industry-poster-card {
        flex: 0 0 calc(25% - 15px);
        width: calc(25% - 15px);
        max-width: 280px;
    }
}

/* ── Industry Page ── */
.industry-page-body {
    --industry-accent: var(--accent-primary);
}

.industry-page-body[data-industry-accent="orange"] { --industry-accent: var(--industry-accent-orange); }
.industry-page-body[data-industry-accent="green"] { --industry-accent: var(--industry-accent-green); }
.industry-page-body[data-industry-accent="purple"] { --industry-accent: var(--industry-accent-purple); }
.industry-page-body[data-industry-accent="blue"] { --industry-accent: var(--industry-accent-blue); }
.industry-page-body[data-industry-accent="gold"] { --industry-accent: var(--industry-accent-gold); }
.industry-page-body[data-industry-accent="amber"] { --industry-accent: var(--industry-accent-amber); }
.industry-page-body[data-industry-accent="slate"] { --industry-accent: var(--industry-accent-slate); }
.industry-page-body[data-industry-accent="violet"] { --industry-accent: var(--industry-accent-violet); }

.industry-subnav {
    position: sticky;
    top: 72px;
    z-index: 900;
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 16px;
}

.industry-subnav ul {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0 auto;
    padding: 10px 0;
    max-width: 1100px;
    overflow-x: auto;
    scrollbar-width: none;
}

.industry-subnav ul::-webkit-scrollbar {
    display: none;
}

.industry-subnav a {
    display: block;
    padding: 8px 14px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.2s, background 0.2s;
}

.industry-subnav a:hover,
.industry-subnav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.industry-subnav a.is-active {
    box-shadow: inset 0 0 0 1px var(--industry-accent);
    color: var(--industry-accent);
}

.industry-hero__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 2rem;
    color: var(--industry-accent);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.2));
}

.industry-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.industry-hero__cta-secondary {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: color 0.2s;
}

.industry-hero__cta-secondary:hover {
    color: var(--industry-accent);
}

.industry-section {
    padding: var(--section-padding) 0;
    scroll-margin-top: 120px;
}

.industry-challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.industry-challenge-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--industry-accent);
    margin: 14px 0 4px;
    font-weight: 600;
}

.industry-challenge-card__label:first-of-type {
    margin-top: 8px;
}

.industry-solutions-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.industry-solution-feature {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: stretch;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

.industry-solution-feature__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.industry-solution-feature__header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.industry-solution-feature__desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.industry-solution-feature__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.industry-solution-feature__cols h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0 0 8px;
}

.industry-solution-feature__cols ul {
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
}

.industry-solution-screenshot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px dashed rgba(255, 255, 255, 0.12);
    min-height: 180px;
    color: var(--industry-accent);
    font-size: 2.5rem;
}

.industry-solution-screenshot span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.industry-architecture-flow {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.industry-architecture-layer {
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.industry-architecture-layer__label {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}

.industry-architecture-arrow {
    color: var(--industry-accent);
    font-size: 0.85rem;
    opacity: 0.7;
}

.industry-case-study__label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--industry-accent);
    margin-bottom: 8px;
}

.industry-tech-grid .enhanced-tech h3 {
    font-size: 0.95rem;
}

.industry-final-cta .section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    max-width: 720px;
    margin-inline: auto;
}

.industry-final-cta__actions {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .industry-poster-card.enhanced-card {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
    }

    .industry-poster-card {
        flex: 0 0 85vw;
        width: 85vw;
    }

    .industry-subnav {
        top: 60px;
    }

    .industry-solution-feature {
        grid-template-columns: 1fr;
    }

    .industry-solution-feature__cols {
        grid-template-columns: 1fr;
    }

    .industry-section {
        scroll-margin-top: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .industry-poster-card {
        transition: none;
    }

    .industry-poster-card:hover {
        transform: none;
    }
}

.case-study-disclaimer {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
    max-width: 720px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.case-study-card__field {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

.process-deliverables {
    margin-top: 10px;
    font-size: 13px;
    color: var(--primary-color);
    opacity: 0.85;
}

.stats-bar {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-bar-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

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

.stat-value-bar {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    color: var(--primary-color);
}

.stat-label-bar {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-cta-group {
    justify-content: center;
    margin-bottom: 32px;
}

.footer-cta {
    margin-top: 20px;
}

.footer-connect {
    margin-top: 28px;
}

.footer-connect h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-weight: 600;
}

/* =============================================================================
   BLOG — Card Meta & Badges
   ============================================================================= */

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-card__date {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 255, 136, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.blog-card__dl-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.blog-card__dl-count i {
    color: var(--primary-color);
    font-size: 10px;
}

.blog-card__excerpt {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 18px;
}

/* Empty state */
.blog-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}

.blog-empty-state i {
    font-size: 48px;
    color: rgba(0, 212, 255, 0.3);
    margin-bottom: 20px;
    display: block;
}

.blog-empty-state h3 {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.blog-empty-state p {
    font-size: 14px;
}

/* =============================================================================
   BLOG — Article Detail
   ============================================================================= */

.blog-article-section {
    padding-top: 20px;
}

.blog-article-container {
    max-width: 800px;
}

.blog-article-header {
    margin-bottom: 40px;
}

.blog-article__title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.25;
    margin-top: 16px;
}

.blog-article__body {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 50px;
}

.blog-article__body p {
    margin-bottom: 22px;
}

/* =============================================================================
   BLOG — Download Card
   ============================================================================= */

.blog-download-card {
    margin-top: 30px;
    margin-bottom: 60px;
}

.blog-download-card__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.blog-download-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.blog-download-card__text {
    flex: 1;
    min-width: 200px;
}

.blog-download-card__text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.blog-download-card__text p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-download-card__stats {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(0, 212, 255, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

/* =============================================================================
   ADMIN — Login Page
   ============================================================================= */

.admin-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.admin-login-card {
    width: 100%;
    max-width: 420px;
}

.admin-login-card__content {
    text-align: center;
}

.admin-login-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 255, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.admin-login-card__title {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.admin-login-card__subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.admin-login-form {
    text-align: left;
}

.admin-login-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.admin-login-form label i {
    margin-right: 6px;
    color: var(--primary-color);
}

.admin-login-btn {
    width: 100%;
}

/* Notification banner */
.admin-notification {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 22px;
}

.admin-notification--success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--accent-color);
}

.admin-notification--error {
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.4);
    color: #ff6b6b;
}

/* =============================================================================
   ADMIN — Dashboard
   ============================================================================= */

.admin-dashboard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 24px 60px;
}

.admin-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.admin-dashboard-header__title {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-dashboard-header__title i {
    font-size: 28px;
    color: var(--primary-color);
}

.admin-dashboard-header__title h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-logout-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.admin-logout-link:hover {
    color: #ff6b6b;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 900px) {
    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.admin-panel {
    position: relative;
}

.admin-panel__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.admin-panel__count {
    margin-left: auto;
    background: rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
}

/* Admin form */
.admin-form .form-group {
    margin-bottom: 18px;
}

.admin-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.admin-form__hint {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 8px;
}

.admin-form__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 18px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.admin-form__divider::before,
.admin-form__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0, 212, 255, 0.15);
}

/* Admin posts list */
.admin-posts-panel {
    max-height: calc(100vh - 220px);
    overflow-y: auto;
}

.admin-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-post-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.admin-post-row:hover {
    background: rgba(0, 212, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.2);
}

.admin-post-row__info {
    flex: 1;
    min-width: 0;
}

.admin-post-row__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.admin-post-row__title a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
    word-break: break-word;
}

.admin-post-row__title a:hover {
    color: var(--primary-color);
}

.admin-post-row__status {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.admin-post-row__status--live {
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: var(--accent-color);
}

.admin-post-row__status--draft {
    background: rgba(255, 165, 0, 0.12);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #ffa500;
}

.admin-post-row__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--text-muted);
}

.admin-post-row__clicks {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(0, 212, 255, 0.08);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.admin-post-row__url a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    word-break: break-all;
    transition: color var(--transition-fast);
}

.admin-post-row__url a:hover {
    color: var(--primary-color);
}

.admin-post-row__no-download {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
    font-style: italic;
}

.admin-post-row__delete {
    background: rgba(255, 60, 60, 0.1);
    border: 1px solid rgba(255, 60, 60, 0.25);
    color: #ff6b6b;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.admin-post-row__delete:hover {
    background: rgba(255, 60, 60, 0.25);
    border-color: rgba(255, 60, 60, 0.5);
    transform: scale(1.08);
}

.admin-post-row__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.admin-post-row__edit {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
    color: var(--accent-cyan, #00d4ff);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.admin-post-row__edit:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: scale(1.08);
}

.admin-edit-wrapper {
    max-width: 900px;
}

.admin-edit-panel {
    margin-top: 8px;
}

.admin-edit-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 24px;
}

.admin-edit-cancel {
    color: var(--text-muted, #94a3b8);
    text-decoration: none;
    font-size: 14px;
}

.admin-edit-cancel:hover {
    color: var(--text-primary, #e2e8f0);
}

.admin-blog-editor {
    min-height: 280px;
    background: rgba(10, 15, 30, 0.85);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.admin-blog-editor .ql-toolbar.ql-snow {
    background: rgba(15, 23, 42, 0.9);
    border: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px 10px 0 0;
}

.admin-blog-editor .ql-container.ql-snow {
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.admin-blog-editor .ql-editor {
    min-height: 240px;
    color: #e2e8f0;
}

.admin-blog-editor .ql-editor.ql-blank::before {
    color: rgba(148, 163, 184, 0.7);
    font-style: normal;
}

.admin-blog-editor .ql-snow .ql-stroke {
    stroke: #94a3b8;
}

.admin-blog-editor .ql-snow .ql-fill {
    fill: #94a3b8;
}

.admin-blog-editor .ql-snow .ql-picker-label {
    color: #94a3b8;
}

.admin-blog-editor .ql-snow.ql-toolbar button:hover .ql-stroke,
.admin-blog-editor .ql-snow.ql-toolbar button.ql-active .ql-stroke {
    stroke: #00d4ff;
}

.admin-blog-editor .ql-snow.ql-toolbar button:hover .ql-fill,
.admin-blog-editor .ql-snow.ql-toolbar button.ql-active .ql-fill {
    fill: #00d4ff;
}

.blog-article__body--rich p {
    margin-bottom: 1.25em;
    line-height: 1.75;
}

.blog-article__body--rich h2,
.blog-article__body--rich h3 {
    margin: 1.5em 0 0.75em;
    color: var(--text-primary, #e2e8f0);
}

.blog-article__body--rich ul,
.blog-article__body--rich ol {
    margin: 1em 0 1.25em 1.5em;
    line-height: 1.7;
}

.blog-article__body--rich blockquote {
    margin: 1.25em 0;
    padding: 12px 20px;
    border-left: 3px solid var(--accent-cyan, #00d4ff);
    background: rgba(0, 212, 255, 0.06);
    color: var(--text-muted, #94a3b8);
}

.blog-article__body--rich a {
    color: var(--accent-cyan, #00d4ff);
}

.blog-article__body--rich code {
    background: rgba(0, 0, 0, 0.35);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

.blog-article__body--rich pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.25em 0;
}

/* =============================================================================
   OUR CLIENTS — Hero Stats
   ============================================================================= */

.clients-hero-section {
    min-height: 55vh;
    padding-bottom: 40px;
}

.clients-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 44px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 20px 32px;
    backdrop-filter: blur(10px);
}

.clients-hero-stat {
    text-align: center;
    padding: 0 36px;
}

.clients-hero-stat__value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.clients-hero-stat__label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.clients-hero-stat__divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.3), transparent);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .clients-hero-stats {
        gap: 16px;
        padding: 20px 20px;
    }
    .clients-hero-stat {
        padding: 0 16px;
    }
    .clients-hero-stat__divider {
        display: none;
    }
}

/* =============================================================================
   OUR CLIENTS — Cards Grid
   ============================================================================= */

.clients-section {
    padding-top: 30px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 28px;
}

@media (max-width: 560px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Client card ── */
.client-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-6px);
}

/* Accent glow overrides */
.client-card__glow--green  { background: radial-gradient(circle at 30% 20%, rgba(0, 255, 136, 0.12), transparent 70%); }
.client-card__glow--purple { background: radial-gradient(circle at 30% 20%, rgba(160, 32, 240, 0.12), transparent 70%); }
.client-card__glow--magenta{ background: radial-gradient(circle at 30% 20%, rgba(255, 0, 200, 0.12), transparent 70%); }
.client-card__glow--amber  { background: radial-gradient(circle at 30% 20%, rgba(255, 180, 0, 0.12), transparent 70%); }
.client-card__glow--orange { background: radial-gradient(circle at 30% 20%, rgba(255, 100, 0, 0.12), transparent 70%); }

/* ── Header row ── */
.client-card__header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

/* Icon */
.client-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.client-card__icon--cyan    { background: linear-gradient(135deg, rgba(0,212,255,.2), rgba(0,212,255,.05)); border: 1px solid rgba(0,212,255,.4);   color: #00d4ff; }
.client-card__icon--green   { background: linear-gradient(135deg, rgba(0,255,136,.2), rgba(0,255,136,.05)); border: 1px solid rgba(0,255,136,.4);   color: #00ff88; }
.client-card__icon--purple  { background: linear-gradient(135deg, rgba(160,32,240,.2), rgba(160,32,240,.05)); border: 1px solid rgba(160,32,240,.4); color: #a020f0; }
.client-card__icon--magenta { background: linear-gradient(135deg, rgba(255,0,200,.2), rgba(255,0,200,.05)); border: 1px solid rgba(255,0,200,.4);   color: #ff00c8; }
.client-card__icon--amber   { background: linear-gradient(135deg, rgba(255,180,0,.2), rgba(255,180,0,.05)); border: 1px solid rgba(255,180,0,.4);   color: #ffb400; }
.client-card__icon--orange  { background: linear-gradient(135deg, rgba(255,100,0,.2), rgba(255,100,0,.05)); border: 1px solid rgba(255,100,0,.4);   color: #ff6400; }

.client-card__title-group {
    flex: 1;
    min-width: 0;
}

.client-card__name {
    font-family: 'Orbitron', monospace;
    font-size: clamp(17px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.client-card__industry {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ── Status badge ── */
.client-card__status-row {
    margin-bottom: 18px;
}

.client-card__status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.client-card__status--completed {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.35);
    color: var(--accent-color);
}

.client-card__status--ongoing {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: var(--primary-color);
}

.client-card__status--pilot {
    background: rgba(255, 180, 0, 0.1);
    border: 1px solid rgba(255, 180, 0, 0.35);
    color: #ffb400;
}

/* Pulsing dot for ongoing */
.client-card__status--ongoing i {
    animation: pulse-dot 1.6s ease-in-out infinite;
}

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

/* ── Blurb / quote ── */
.client-card__blurb {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    border-left: 3px solid rgba(0, 212, 255, 0.4);
    padding-left: 14px;
    margin-bottom: 16px;
}

/* ── About ── */
.client-card__about {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.client-card__about p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}

/* ── Results ── */
.client-card__results {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0, 255, 136, 0.06);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.client-card__results i {
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.client-card__results span {
    font-size: 13px;
    color: rgba(0, 255, 136, 0.85);
    line-height: 1.6;
    font-weight: 500;
}

/* ── Tags ── */
.client-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.client-card__tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    transition: border-color 0.2s, color 0.2s;
}

.client-card:hover .client-card__tag {
    border-color: rgba(0, 212, 255, 0.25);
    color: rgba(255, 255, 255, 0.6);
}

/* ── External links ── */
.client-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 6px;
}

.client-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.client-card__link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.client-card__link i:first-child {
    font-size: 14px;
}

.client-card__link-ext {
    font-size: 9px !important;
    opacity: 0.5;
}

/* ── CTA section ── */
.clients-cta-section {
    margin-top: 40px;
    text-align: center;
}

.clients-cta-section .contact-intro {
    max-width: 560px;
    margin: 0 auto;
}
