:root {
  --color-void: #050505;
  --color-carbon: #121212;
  --color-ash: #262626;
  --color-terminal: #E5E5E5;
  --color-flux-orange: #FF3E00;
  --font-display: 'Creato Display', Arial, sans-serif;
  --font-subtitle: 'Lora', 'Creato Display', Arial, sans-serif;
  --font-body: 'Creato Display', Arial, sans-serif;
  --font-title: var(--font-display);
  --font-mono: var(--font-body);
  --border-structural: 1px solid rgba(255, 255, 255, 0.15);
  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
}

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

*::selection {
  background-color: var(--color-flux-orange) !important;
  color: var(--color-void) !important;
}

*::-moz-selection {
  background-color: var(--color-flux-orange) !important;
  color: var(--color-void) !important;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: var(--color-void);
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  color: var(--color-terminal);
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-terminal);
}

h1 {
  font-family: var(--font-title);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
}

h2 {
  font-family: var(--font-subtitle);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
}

h1 {
  letter-spacing: 0;
}

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

img, svg {
  max-width: 100%;
  display: block;
}

button,
input[type="button"],
input[type="submit"],
.btn,
.btn-mechanical {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.system-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-flux-orange);
  background: rgba(255, 62, 0, 0.05);
  border: var(--border-subtle);
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
}

.btn-mechanical {
  background: transparent;
  border: 1px solid var(--color-flux-orange);
  color: var(--color-flux-orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: none;
}

.btn-mechanical:hover {
  background: var(--color-flux-orange);
  color: var(--color-void);
  box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 0.9);
  transform: translate(-2px, -2px);
}

.btn-mechanical-secondary {
  background: transparent;
  border: 1px solid var(--color-terminal);
  color: var(--color-terminal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: none;
}

.btn-mechanical-secondary:hover {
  background: var(--color-terminal);
  color: var(--color-void);
  box-shadow: 4px 4px 0px 0px var(--color-flux-orange);
  transform: translate(-2px, -2px);
}

header.site-header {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-structural);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  width: 90%;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-logo span {
  color: var(--color-flux-orange);
}

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

nav.main-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(229, 229, 229, 0.6);
}

nav.main-nav a:hover, nav.main-nav a.active {
  color: var(--color-flux-orange);
}

.lang-switch {
  display: flex;
  gap: 5px;
  border-left: var(--border-subtle);
  padding-left: 20px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: rgba(229, 229, 229, 0.4);
  cursor: pointer;
}

.lang-btn.active {
  color: var(--color-flux-orange);
}

.hero {
  width: 90%;
  margin: 60px auto 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: none;
  background-color: var(--color-void);
  background-image: 
    linear-gradient(45deg, rgba(229, 229, 229, 0.008) 25%, transparent 25%), 
    linear-gradient(-45deg, rgba(229, 229, 229, 0.008) 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, rgba(229, 229, 229, 0.008) 75%), 
    linear-gradient(-45deg, transparent 75%, rgba(229, 229, 229, 0.008) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0;
  position: relative;
  overflow: hidden;
}

.hero-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-content {
  width: 100%;
  padding: 60px 20px 40px 20px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.04;
  margin-bottom: 20px;
}

.hero-content h1 span.highlight {
  color: var(--color-flux-orange);
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 300;
  color: rgba(229, 229, 229, 0.6);
  margin-bottom: 30px;
  text-transform: none;
  letter-spacing: 0;
}

.hero-description {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(229, 229, 229, 0.7);
  max-width: 580px;
  margin: 0 auto 40px auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-image {
  flex: 1;
  width: 100%;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  order: 1;
  position: relative;
  z-index: 1;
}

.hero-image picture,
.hero-image img {
  width: 100%;
  height: 100%;
}

.hero-image picture {
  display: block;
}

.hero-image img {
  object-fit: cover;
  object-position: top center;
  border: none;
  box-shadow: none;
  filter: grayscale(1) contrast(1.1);
}

@media (min-width: 992px) {
  .hero-container {
    flex-direction: row;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
  }
  .hero {
    padding: 0;
  }
  .hero-content {
    flex: 1;
    max-width: 50%;
    padding: 80px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content h1 {
    font-size: clamp(30px, 3.4vw, 38px);
    line-height: 1.04;
  }
  .hero-description {
    margin: 0 0 40px 0;
    max-width: 100%;
  }
  .hero-actions {
    justify-content: flex-start;
  }
  .hero-image {
    max-width: 50%;
    height: auto;
    margin-top: 0;
  }
}

.stats-bar {
  border-top: var(--border-structural);
  border-bottom: var(--border-structural);
  background: var(--color-carbon);
  margin: 0 auto 80px auto;
}

.stats-container {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: var(--border-structural);
  border-right: var(--border-structural);
}

.stat-block {
  padding: 40px;
  border-right: var(--border-structural);
}

.stat-block:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 800;
  color: var(--color-flux-orange);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--color-terminal);
}

.stat-desc {
  font-size: 11px;
  color: rgba(229, 229, 229, 0.5);
}

.section-wrapper {
  width: 90%;
  margin: 100px auto;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h1,
.section-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.section-header p {
  color: rgba(229, 229, 229, 0.5);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--color-carbon);
  border: var(--border-structural);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card-large {
  grid-column: span 8;
}

.bento-card-small {
  grid-column: span 4;
}

.bento-card-full {
  grid-column: span 12;
}

.bento-card-title {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.1;
}

.bento-card-desc {
  color: rgba(229, 229, 229, 0.65);
  font-size: 13px;
  margin-bottom: 30px;
}

.bento-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.bento-card-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(229, 229, 229, 0.3);
  letter-spacing: 0.1em;
}

.cta-section {
  border-top: var(--border-structural);
  background: var(--color-carbon);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-section h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(229, 229, 229, 0.6);
  margin-bottom: 40px;
}

footer.site-footer {
  border-top: var(--border-structural);
  background: var(--color-void);
  padding: 40px 0;
}

.footer-container {
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(229, 229, 229, 0.4);
}

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

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

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1160px;
  margin: 0 auto;
  background: var(--color-carbon);
  border: 1px solid var(--color-flux-orange);
  z-index: 1000;
  padding: 30px;
  box-shadow: 6px 6px 0px 0px rgba(5,5,5,0.9);
}

.cookie-banner-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cookie-banner-text h3 {
  font-size: 18px;
  color: var(--color-flux-orange);
  margin-bottom: 10px;
}

.cookie-banner-text p {
  color: rgba(229, 229, 229, 0.8);
  font-size: 12px;
}

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

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

.btn-cookie-accept {
  background: var(--color-flux-orange);
  color: var(--color-void);
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 10px 20px;
  cursor: pointer;
}

.btn-cookie-necessary {
  background: transparent;
  color: var(--color-terminal);
  border: 1px solid rgba(229, 229, 229, 0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 10px 20px;
  cursor: pointer;
}

.btn-cookie-settings {
  background: transparent;
  color: rgba(229, 229, 229, 0.6);
  border: none;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.cookies-settings-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 600px;
  background: var(--color-carbon);
  border: var(--border-structural);
  z-index: 1002;
  box-shadow: 8px 8px 0px 0px rgba(5,5,5,0.9);
}

.cookies-settings-modal.show {
  display: block;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.85);
  z-index: 1001;
}

.modal-overlay.show {
  display: block;
}

.modal-header {
  border-bottom: var(--border-structural);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 20px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: rgba(229, 229, 229, 0.5);
  font-family: var(--font-mono);
  font-size: 20px;
  cursor: pointer;
}

.modal-body {
  padding: 30px;
  max-height: 400px;
  overflow-y: auto;
}

.cookie-option-row {
  border-bottom: var(--border-subtle);
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cookie-option-row:last-child {
  border-bottom: none;
}

.cookie-option-details h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-terminal);
  margin-bottom: 5px;
}

.cookie-option-details p {
  font-size: 11px;
  color: rgba(229, 229, 229, 0.5);
}

.modal-footer {
  border-top: var(--border-structural);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.legal-layout {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.legal-content h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(229, 229, 229, 0.4);
  margin-bottom: 40px;
  border-bottom: var(--border-structural);
  padding-bottom: 15px;
}

.legal-text {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(229, 229, 229, 0.75);
}

.legal-text h2 {
  font-size: 20px;
  margin: 40px 0 15px;
  color: var(--color-flux-orange);
}

.legal-text p {
  margin-bottom: 20px;
}

.legal-text ul {
  margin: 15px 0 20px 20px;
}

.legal-text li {
  margin-bottom: 10px;
}

.cases-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.case-card {
  background: var(--color-carbon);
  border: var(--border-structural);
  padding: 40px;
}

.case-card-header {
  border-bottom: var(--border-subtle);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.case-header-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.case-card-header h3 {
  font-size: 24px;
}

.case-card-body {
  font-size: 13px;
  color: rgba(229, 229, 229, 0.7);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.case-card-body h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-flux-orange);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.case-tech-badge {
  display: inline-block;
  background: rgba(229, 229, 229, 0.05);
  border: var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  margin-top: 15px;
}

@media (max-width: 900px) {
  .header-container, .hero, .stats-container, .section-wrapper, .footer-container {
    width: calc(100% - 32px);
  }
  .header-container {
    padding: 12px 10px;
  }
  .site-logo {
    font-size: 16px;
    gap: 4px;
  }
  nav.main-nav ul {
    gap: 15px;
  }
  .hero {
    margin: 40px auto 0 auto;
  }
  .hero-content {
    padding: 40px 15px 30px 15px;
  }
  .hero-content h1 {
    font-size: clamp(23px, 5.4vw, 32px);
    line-height: 1.1;
    letter-spacing: 0.015em;
    margin-bottom: 20px;
  }
  .hero-description {
    margin-bottom: 30px;
  }
  .hero-image {
    height: 300px;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .stat-block {
    padding: 25px 20px;
    border-right: none;
    border-bottom: var(--border-structural);
  }
  .stat-block:last-child {
    border-bottom: none;
  }
  .section-wrapper {
    margin: 60px auto;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-header h1,
  .section-header h2 {
    font-size: clamp(22px, 6vw, 30px);
  }
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .bento-card {
    padding: 25px 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .bento-card-large, .bento-card-small, .bento-card-full, .bento-card-half {
    grid-column: span 1;
  }
  .bento-card-title {
    font-size: 20px;
  }
  .case-card {
    padding: 25px 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .case-header-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .case-card-header h3 {
    font-size: clamp(16px, 5vw, 20px) !important;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .case-card-body {
    gap: 15px;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-section h2 {
    font-size: clamp(18px, 5.8vw, 26px);
    line-height: 1.2;
  }
  .legal-content h1 {
    font-size: clamp(24px, 7vw, 34px);
  }
  .cookie-banner-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cookie-banner-actions {
    flex-wrap: wrap;
  }
  .footer-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
  }
  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .lang-switch {
    border-left: none;
    padding-left: 0;
    margin-top: 5px;
  }
  .hero-content h1 {
    font-size: clamp(20px, 6vw, 24px);
    line-height: 1.15;
    letter-spacing: 0.015em;
  }
  .hero-actions, .service-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn-mechanical, .hero-actions .btn-mechanical-secondary,
  .service-actions .btn-mechanical, .service-actions .btn-mechanical-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(19px, 6vw, 23px);
    line-height: 1.15;
    letter-spacing: 0.015em;
  }
  .ml-input-group {
    flex-direction: column;
  }
  .ml-input-group button {
    width: 100%;
  }
  .cookie-banner {
    padding: 20px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-banner-actions button {
    width: 100%;
    text-align: center;
  }
}

.ml-modal-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ml-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(4px);
}

.ml-modal-container {
  background: var(--color-carbon);
  border: var(--border-structural);
  max-width: 520px;
  width: 100%;
  padding: 30px;
  position: relative;
  z-index: 2;
}

.ml-modal-container h3 {
  font-family: var(--font-mono);
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--color-flux-orange);
}

.ml-modal-container p {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(229, 229, 229, 0.7);
  margin-bottom: 25px;
  line-height: 1.5;
}

.ml-close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  background: transparent;
  color: rgba(229, 229, 229, 0.5);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.ml-close-btn:hover {
  color: var(--color-flux-orange);
}

.ml-input-group {
  display: flex;
  gap: 10px;
}

.ml-input-group input {
  flex: 1;
  background: var(--color-void);
  border: var(--border-structural);
  color: rgba(229, 229, 229, 0.85);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.ml-input-group input:focus {
  outline: none;
  border-color: var(--color-flux-orange);
}

.ml-error-msg {
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 15px;
  color: #ff3333 !important;
}

.bento-card-half {
  grid-column: span 6;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.service-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.service-detail-card {
  background: var(--color-carbon);
  border: var(--border-structural);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-detail-card h3 {
  font-size: 28px;
  color: var(--color-flux-orange);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.service-detail-card h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-terminal);
  margin-bottom: 20px;
  text-transform: none;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0.85;
}

.service-detail-card p.service-desc {
  font-size: 13px;
  color: rgba(229, 229, 229, 0.7);
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-benefits-wrap {
  border-top: var(--border-subtle);
  padding-top: 25px;
  margin-top: auto;
}

.service-benefits-wrap h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-flux-orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(229, 229, 229, 0.75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.benefits-list li::before {
  content: "//";
  color: var(--color-flux-orange);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .services-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-detail-card {
    padding: 30px 20px;
  }
  .service-detail-card h3 {
    font-size: 24px;
  }
}

.cookie-privacy-trigger {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-carbon);
  border: 1px solid var(--color-flux-orange);
  color: var(--color-flux-orange);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px 0px rgba(5, 5, 5, 0.9);
  transition: none;
}

.cookie-privacy-trigger:hover {
  background: var(--color-flux-orange);
  color: var(--color-void);
  box-shadow: 4px 4px 0px 0px rgba(255, 255, 255, 0.9);
  transform: translate(-2px, -2px);
}

@media (max-width: 900px) {
  .cookie-privacy-trigger {
    display: none !important;
  }
  .chat-trigger, .chat-window, .chat-tooltip {
    display: none !important;
  }
}

.chat-tooltip {
  position: fixed;
  bottom: 33px;
  right: 95px;
  z-index: 1000;
  background: var(--color-void);
  border: 1px solid var(--color-flux-orange);
  color: var(--color-flux-orange);
  padding: 8px 12px;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 3px 3px 0px 0px rgba(5, 5, 5, 0.9);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.chat-tooltip.show {
  opacity: 1;
  transform: translateX(0);
}

.chat-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--color-void);
  border-top: 1px solid var(--color-flux-orange);
  border-right: 1px solid var(--color-flux-orange);
}


.chat-trigger {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: var(--color-carbon);
  border: 1px solid var(--color-flux-orange);
  color: var(--color-flux-orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px 0px rgba(5, 5, 5, 0.9);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.chat-trigger:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px 0px var(--color-flux-orange);
  background: var(--color-flux-orange);
  color: var(--color-void);
}

.chat-window {
  position: fixed;
  bottom: 95px;
  right: 25px;
  z-index: 1000;
  width: 360px;
  height: 500px;
  max-height: calc(100vh - 120px);
  background: var(--color-carbon);
  border: 1px solid var(--color-flux-orange);
  display: flex;
  flex-direction: column;
  box-shadow: 6px 6px 0px 0px rgba(5, 5, 5, 0.9);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chat-window.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-header {
  background: var(--color-void);
  border-bottom: var(--border-structural);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00FF66;
  box-shadow: 0 0 8px #00FF66;
  animation: chat-pulse 2s infinite;
}

.chat-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-terminal);
}

.chat-title-ia {
  color: var(--color-flux-orange);
}

.chat-close {
  background: transparent;
  border: none;
  color: rgba(229, 229, 229, 0.5);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.chat-close:hover {
  color: var(--color-flux-orange);
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-flux-orange) var(--color-void);
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.5;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.chat-msg-header {
  font-size: 9px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.chat-msg-user {
  align-self: flex-end;
  background: rgba(229, 229, 229, 0.05);
  border: var(--border-subtle);
  color: var(--color-terminal);
}

.chat-msg-user .chat-msg-header {
  color: rgba(229, 229, 229, 0.4);
  text-align: right;
}

.chat-msg-sofia {
  align-self: flex-start;
  background: rgba(255, 62, 0, 0.03);
  border: var(--border-structural);
  border-left: 2px solid var(--color-flux-orange);
  color: var(--color-terminal);
}

.chat-msg-sofia .chat-msg-header {
  color: var(--color-flux-orange);
}

.chat-input-area {
  border-top: var(--border-structural);
  padding: 12px 15px;
  display: flex;
  gap: 10px;
  background: var(--color-void);
}

.chat-input {
  flex: 1;
  background: var(--color-carbon);
  border: var(--border-structural);
  color: var(--color-terminal);
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.chat-input:focus {
  outline: none;
  border-color: var(--color-flux-orange);
}

.chat-submit {
  background: transparent;
  border: 1px solid var(--color-flux-orange);
  color: var(--color-flux-orange);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
}

.chat-submit:hover {
  background: var(--color-flux-orange);
  color: var(--color-void);
}

.chat-msg-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
  align-items: flex-start;
}

@keyframes chat-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.chat-loading-dots::after {
  content: '.';
  display: inline-block;
  animation: chatLoadingDots 1.5s steps(4, end) infinite;
}

@keyframes chatLoadingDots {
  0%, 100% {
    content: '.';
  }
  33% {
    content: '..';
  }
  66% {
    content: '...';
  }
}

.chat-verification-box {
  margin-top: 15px;
  border-top: 1px dashed rgba(255, 62, 0, 0.2);
  padding-top: 12px;
}

.chat-verification-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--color-flux-orange);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.chat-verification-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.chat-verification-form .btn-mechanical {
  width: 32px;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-verification-form .btn-mechanical .material-symbols-outlined {
  font-size: 20px;
}

.chat-verification-input {
  flex: 1;
  background: var(--color-void);
  border: var(--border-structural);
  color: var(--color-terminal);
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chat-verification-input:focus {
  outline: none;
  border-color: var(--color-flux-orange);
}

.chat-verification-status {
  font-family: var(--font-mono);
  font-size: 10px;
  margin-top: 8px;
  color: rgba(229, 229, 229, 0.5);
}

.chat-status-error {
  color: #ff3333 !important;
}

.chat-status-success {
  color: #00FF66 !important;
}

.article-content a {
  color: var(--color-flux-orange);
  text-decoration: underline;
}

.article-content a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.article-content h1.article-h {
  font-size: 32px;
  font-weight: 800;
}
.article-content h2.article-h {
  font-size: 24px;
  font-weight: 700;
}
.article-content h3.article-h {
  font-size: 18px;
  font-weight: 600;
}

.article-wrapper,
.article-wrapper h1,
.article-content,
.article-content .article-h {
  min-width: 0;
}

.article-wrapper h1,
.article-content .article-h {
  hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
}

/* Public content pages */
.content-section {
  margin-top: 0;
  margin-bottom: 90px;
}

.section-header-left {
  text-align: left;
  margin-left: 0;
}

.problem-grid,
.proof-grid,
.content-grid,
.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.problem-card,
.proof-card,
.content-card,
.fit-card {
  border: var(--border-structural);
  background: var(--color-carbon);
  padding: 30px;
  min-width: 0;
}

.problem-card h3,
.proof-card h3,
.content-card h2,
.content-card h3,
.fit-card h2 {
  margin-bottom: 14px;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.1;
}

.problem-card p,
.proof-card p,
.content-card p,
.fit-card p,
.page-intro,
.page-copy p,
.page-copy li {
  color: rgba(229, 229, 229, 0.76);
  line-height: 1.8;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--color-flux-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: start;
}

.numbered-steps {
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 12px;
}

.numbered-steps li {
  counter-increment: steps;
  border-bottom: var(--border-subtle);
  padding: 16px 0 16px 52px;
  position: relative;
  color: rgba(229, 229, 229, 0.82);
}

.numbered-steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 16px;
  color: var(--color-flux-orange);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: var(--border-structural);
  background: var(--color-carbon);
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
}

.faq-list details p {
  margin-top: 14px;
  color: rgba(229, 229, 229, 0.76);
}

.author-note {
  margin: 28px auto 0;
  max-width: 900px;
  font-size: 11px;
  color: rgba(229, 229, 229, 0.5);
  text-transform: uppercase;
}

.content-page {
  width: 90%;
  max-width: 1120px;
  margin: 140px auto 100px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 11px;
  color: rgba(229, 229, 229, 0.58);
}

.breadcrumbs a {
  color: var(--color-flux-orange);
  text-decoration: underline;
}

.page-hero {
  max-width: 880px;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  margin-bottom: 24px;
}

.page-intro {
  max-width: 760px;
  font-size: 16px;
  margin-bottom: 28px;
}

.page-copy {
  display: grid;
  gap: 70px;
}

.page-copy section > h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1;
  margin-bottom: 20px;
}

.page-copy ul {
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.related-links {
  margin-top: 24px;
}

.related-links a {
  border: var(--border-structural);
  background: var(--color-carbon);
  padding: 22px;
  color: var(--color-flux-orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-cta {
  border: 1px solid var(--color-flux-orange);
  background: rgba(255, 62, 0, 0.06);
  padding: clamp(28px, 5vw, 52px);
}

.page-cta h2 {
  margin-bottom: 14px;
}

.page-cta p {
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .proof-grid,
  .problem-grid,
  .content-grid,
  .related-links,
  .split-section {
    grid-template-columns: 1fr;
  }

  .main-nav ul {
    gap: 14px;
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .page-hero h1 {
    font-size: clamp(24px, 6.4vw, 28px);
    line-height: 1.08;
  }

  .article-wrapper h1 {
    font-size: clamp(22px, 6.2vw, 24px) !important;
    line-height: 1.08 !important;
  }

  .article-content h2.article-h {
    font-size: clamp(18px, 4.9vw, 20px);
    line-height: 1.15;
  }

  .header-container {
    width: 94%;
    min-height: 80px;
    height: auto;
    padding: 12px 0;
    gap: 12px;
  }

  .site-logo {
    font-size: 12px;
    max-width: 100px;
  }

  .main-nav ul {
    gap: 9px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .lang-switch {
    width: 100%;
    text-align: right;
  }

  .content-page {
    width: 92%;
    margin-top: 120px;
  }

  .problem-card,
  .proof-card,
  .content-card,
  .fit-card {
    padding: 24px;
  }
}

/* Global button token: Creato Display Bold, 14px, uppercase. */
body button,
body input[type="button"],
body input[type="submit"],
body .btn,
body .btn-mechanical {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
