/* ============================================================
   ROQS AI — Design Tokens & Base Styles  ·  v2 "Premium Engineering"
   Headlines: Inter   ·   UI / Body: Public Sans
   ============================================================ */

:root {
  /* ----- Accent ----- */
  --color-orange:   #F04A1D;

  /* ----- Neutral palette · material / cool-neutral ----- */
  --color-graphite: #242424;
  --color-body:     #666A68;
  --color-muted:    #8B8E8C;
  --color-line:     #DCDDD8;

  /* ----- Surface system ----- */
  --surface-1:      #FFFFFF;
  --surface-2:      #F6F6F4;
  --surface-3:      #F1F2F0;

  /* ----- Semantic ----- */
  --bg:             var(--surface-2);
  --text-headline:  var(--color-graphite);
  --text-body:      var(--color-body);
  --text-label:     var(--color-muted);
  --border-color:   var(--color-line);
  --cta:            var(--color-orange);

  /* ----- Typography ----- */
  --font-heading:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-ui:        'Public Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* ----- Spacing scale ----- */
  --space-xs: 8px;  --space-s: 16px;  --space-m: 24px;  --space-l: 40px;
  --space-xl: 64px; --space-xxl: 96px; --space-section: 120px;

  /* ----- Layout ----- */
  --container-max:   1440px;
  --content-max:     720px;
  --content-wide:    820px;
  --side-margin:     80px;
  --side-margin-mob: 20px;

  /* ----- Shape ----- */
  --radius-sm:        4px;
  --radius-md:        6px;
  --ui-input-height:  56px;
  --ui-button-height: 56px;
  --border-1:         1px solid var(--color-line);
  --border-strong:    1px solid var(--color-graphite);

  /* ----- Elevation ----- */
  --shadow-subtle:   0 1px 2px rgba(0, 0, 0, 0.04);

  /* ----- Motion ----- */
  --motion-duration: 200ms;
  --motion-ease:     ease-out;
}

/* ============================================================
   Reset
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 26px;
  color: var(--text-body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Typography
   ============================================================ */

h1, .h1, h2, .h2, h3, .h3 {
  font-family: var(--font-heading);
  color: var(--text-headline);
}

h1, .h1 { font-size: 72px; line-height: 76px; letter-spacing: -0.02em; font-weight: 600; margin: 0 0 32px; }
h2, .h2 { font-size: 40px; line-height: 44px; letter-spacing: -0.01em; font-weight: 500; margin: 0 0 20px; }
h3, .h3 { font-size: 24px; line-height: 28px; letter-spacing: 0; font-weight: 500; margin: 0 0 12px; }

p { margin: 0 0 16px; }
.body-l { font-size: 18px; line-height: 28px; }
.body   { font-size: 16px; line-height: 26px; }

.label {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-orange);
  margin: 0 0 12px;
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 40px; line-height: 42px; margin-bottom: 20px; }
  h2, .h2 { font-size: 28px; line-height: 32px; margin-bottom: 16px; }
  h3, .h3 { font-size: 18px; line-height: 22px; }
  .label  { font-size: 11px; line-height: 14px; }
}

@media (max-width: 480px) {
  h1, .h1 { font-size: 32px; line-height: 36px; }
  h2, .h2 { font-size: 24px; line-height: 28px; }
  h3, .h3 { font-size: 16px; line-height: 20px; }
}

/* ============================================================
   Layout
   ============================================================ */

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--side-margin); }
@media (max-width: 768px) { .container { padding: 0 var(--side-margin-mob); } }

.content-narrow { max-width: var(--content-max); }
.content-wide   { max-width: var(--content-wide); }

.section { padding: var(--space-section) 0; }
@media (max-width: 768px) { .section { padding: var(--space-xl) 0; } }

.on-surface-1 { background: var(--surface-1); border-top: var(--border-1); border-bottom: var(--border-1); }
.on-surface-3 { background: var(--surface-3); border-top: var(--border-1); border-bottom: var(--border-1); }

/* Hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
  .hero-grid .hero-image { order: -1; }
}

/* Card grid */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-m); }
@media (max-width: 1024px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  { .card-grid { grid-template-columns: 1fr; } }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 1024px) { .two-col { grid-template-columns: 1fr; gap: var(--space-l); } }

/* ============================================================
   Components
   ============================================================ */

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--ui-button-height);
  padding: 0 var(--space-m);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--motion-duration) var(--motion-ease);
}

.btn-primary { background: var(--color-orange); color: #FFFFFF; }
.btn-primary:hover  { filter: brightness(0.95); }
.btn-primary:active { filter: brightness(0.90); }

.btn-secondary { background: transparent; color: var(--color-graphite); border: var(--border-1); }
.btn-secondary:hover  { border-color: var(--color-graphite); }
.btn-secondary:active { background: var(--surface-3); }

/* Cards */
.card {
  padding: var(--space-m);
  background: var(--surface-1);
  border: var(--border-1);
  border-radius: var(--radius-md);
  height: 100%;
}

.card .label {
  color: var(--color-orange);
}

.card h3 { margin-bottom: var(--space-s); }
.card p { color: var(--text-body); margin: 0; }

/* Status indicator */
.status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  border: var(--border-1);
  padding: 7px 14px;
  margin-bottom: var(--space-l);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-m) 0;
  background: var(--bg);
  border-bottom: var(--border-1);
}

.logo-img {
  height: 24px;
  width: auto;
}

/* Footer */
.site-footer {
  padding: var(--space-xl) 0 var(--space-l);
  border-top: var(--border-1);
  background: var(--surface-1);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-l);
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}

.footer-column h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-label);
  margin: 0 0 var(--space-m);
}

.footer-address {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-body);
  font-style: normal;
}

.footer-address p {
  margin: 0;
}

.footer-address a {
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--motion-duration) var(--motion-ease);
}

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

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

.footer-links li {
  margin-bottom: var(--space-s);
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--motion-duration) var(--motion-ease);
}

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

.social-links {
  display: flex;
  gap: var(--space-s);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: var(--border-1);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  text-decoration: none;
  transition: all var(--motion-duration) var(--motion-ease);
}

.social-link:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

/* Made in Mainz Badge */
.made-in-badge-v3 {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-body);
}

.made-in-badge-v3 img {
  width: 20px;
  height: 20px;
}

.footer-divider {
  position: relative;
  margin-top: var(--space-xl);
  border-top: var(--border-1);
  text-align: center;
}

.footer-badge-wrapper {
  position: relative;
  top: -12px;
  display: inline-block;
  background: var(--surface-1);
  padding: 0 var(--space-m);
}

.footer-bottom {
  padding-top: var(--space-m);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 20px;
  color: var(--text-label);
  text-align: center;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-l) 0;
}

.feature-list li {
  padding: var(--space-s) 0;
  border-bottom: var(--border-1);
  font-size: 18px;
  line-height: 28px;
  color: var(--text-body);
}

.feature-list li:first-child { padding-top: 0; }
.feature-list li:last-child { border-bottom: none; }

/* Check list with icons */
.check-list {
  list-style: none;
  padding: 0;
  margin: var(--space-m) 0 0;
}

.check-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-s);
  align-items: center;
  padding: var(--space-s) 0;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 26px;
  color: var(--text-body);
}

.check-list img {
  width: 32px;
  height: 32px;
}

/* Card header with icon */
.card-header {
  display: grid;
  grid-template-columns: 1fr 80px;
  gap: var(--space-m);
  align-items: start;
  margin-bottom: var(--space-m);
}

.card-header h3 {
  margin: 0;
  line-height: 1.2;
}

.category-icon {
  width: 80px;
  height: 80px;
}

@media (max-width: 768px) {
  .card-header {
    grid-template-columns: 1fr 64px;
    gap: var(--space-s);
  }

  .category-icon {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .card-header {
    grid-template-columns: 1fr;
    gap: var(--space-s);
  }

  .category-icon {
    width: 64px;
    height: 64px;
  }
}

.card hr {
  border: 0;
  height: 1px;
  background: var(--border-color);
  margin: var(--space-m) 0;
}

/* Image container */
.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Supplier logos */
.supplier-section {
  padding: var(--space-xl) 0;
  border-top: var(--border-1);
  border-bottom: var(--border-1);
  background: var(--surface-1);
}

@media (max-width: 768px) {
  .supplier-section {
    padding: var(--space-l) 0;
  }
}

.supplier-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: var(--space-m);
}

.supplier-logo {
  height: 32px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.3;
  transition: opacity var(--motion-duration) var(--motion-ease);
}

.supplier-logo:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .supplier-logos {
    gap: var(--space-l);
  }

  .supplier-logo {
    height: 28px;
  }
}

@media (max-width: 480px) {
  .supplier-logos {
    gap: var(--space-m);
  }

  .supplier-logo {
    height: 24px;
  }
}

.section-image {
  width: 100%;
  border-radius: var(--radius-md);
  border: var(--border-1);
  overflow: hidden;
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Centered content block */
.centered-content {
  max-width: var(--content-wide);
  margin: 0 auto;
  text-align: left;
}

/* Worker showcase grid - 4 columns */
.worker-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-m);
  margin-top: var(--space-xl);
}

@media (max-width: 1200px) {
  .worker-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.worker-card {
  padding: var(--space-m);
  background: var(--surface-1);
  border: var(--border-1);
  border-radius: var(--radius-md);
}

.worker-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-m);
}

.worker-card .label {
  color: var(--color-orange);
  display: block;
  margin-bottom: var(--space-s);
}

.worker-card h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: var(--space-s);
}

.worker-card .body {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0;
}

.worker-card .body + .body {
  margin-top: var(--space-s);
}

/* Process chain */
.process-chain {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-s);
  margin: var(--space-xl) auto;
  max-width: 900px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.process-icon {
  font-size: 32px;
  color: var(--color-muted);
  transition: color var(--motion-duration) var(--motion-ease);
}

.process-icon.active {
  color: var(--color-orange);
}

.process-label {
  font-family: var(--font-ui);
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-muted);
  text-align: center;
  transition: color var(--motion-duration) var(--motion-ease);
}

.process-step:has(.process-icon.active) .process-label {
  color: var(--color-orange);
}

.process-arrow {
  color: var(--color-line);
  font-size: 16px;
  margin-top: -12px;
}

/* Card hover effects */
.worker-card {
  transition: box-shadow var(--motion-duration) var(--motion-ease);
}

.worker-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .process-chain {
    gap: 4px;
    max-width: 100%;
  }

  .process-icon {
    font-size: 24px;
  }

  .process-label {
    font-size: 10px;
    line-height: 12px;
  }

  .process-arrow {
    font-size: 12px;
  }
}

@media (max-width: 580px) {
  .process-chain {
    gap: 2px;
  }

  .process-icon {
    font-size: 20px;
  }

  .process-arrow {
    font-size: 10px;
  }

  .process-label {
    font-size: 9px;
    line-height: 11px;
  }
}

@media (max-width: 480px) {
  .process-chain {
    gap: 0px;
  }

  .process-icon {
    font-size: 18px;
  }

  .process-arrow {
    font-size: 8px;
    margin-top: -8px;
  }

  .process-label {
    font-size: 8px;
    line-height: 10px;
  }
}

/* Accordion */
.accordion {
  max-width: var(--content-wide);
  margin: var(--space-xl) 0 0;
}

.accordion-item {
  border-bottom: var(--border-1);
}

.accordion-item:first-child {
  border-top: var(--border-1);
}

.accordion-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-m) 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--text-headline);
  transition: color var(--motion-duration) var(--motion-ease);
}

.accordion-button:hover {
  color: var(--color-orange);
}

.accordion-icon {
  font-size: 16px;
  color: var(--color-muted);
  transition: transform var(--motion-duration) var(--motion-ease);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--motion-duration) var(--motion-ease);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-m) 0 var(--space-l);
}

@media (max-width: 768px) {
  .accordion-inner {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
}

.accordion-column h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-orange);
  margin: 0 0 var(--space-s);
}

.accordion-column p {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 26px;
  color: var(--text-body);
  margin: 0;
}

/* Product benefits - 3 column grid */
.product-benefits {
  margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-l);
}

@media (max-width: 1024px) {
  .product-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-l);
  }
}

@media (max-width: 768px) {
  .product-benefits {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }
}

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

.benefit-icon {
  font-size: 32px;
  color: var(--color-orange);
  margin-bottom: var(--space-s);
}

.benefit-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--text-headline);
  margin: 0 0 var(--space-xs);
}

.benefit-item p {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-body);
  margin: 0;
}

.product-image {
  width: 100%;
  border-radius: var(--radius-md);
}

/* Founder cards */
.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-l);
  margin-top: var(--space-xl);
}

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

.founder-card {
  padding: var(--space-m);
  background: var(--surface-1);
  border: var(--border-1);
  border-radius: var(--radius-md);
  text-align: left;
}

.founder-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--surface-3);
  margin: 0 0 var(--space-m);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-avatar i {
  font-size: 48px;
  color: var(--color-muted);
}

.founder-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: var(--text-headline);
  margin: 0 0 var(--space-s);
}

.founder-card .founder-title {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--color-orange);
  margin-bottom: var(--space-m);
}

.founder-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.founder-card li {
  padding: var(--space-xs) 0 var(--space-xs) var(--space-m);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-body);
  position: relative;
}

.founder-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-muted);
}

/* CTA Section */
.cta-section {
  padding: var(--space-section) 0;
}

@media (max-width: 768px) {
  .cta-section {
    padding: var(--space-xl) 0;
  }
}

.cta-section h2 {
  margin-bottom: var(--space-m);
}

.cta-section .body-l {
  margin: 0 0 var(--space-l);
  max-width: var(--content-max);
}

.cta-buttons {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-m);
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface-1);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 200ms ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: var(--space-m);
  right: var(--space-m);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: color var(--motion-duration) var(--motion-ease);
}

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

.modal-header {
  margin-bottom: var(--space-l);
}

.modal-header h2 {
  margin-bottom: var(--space-s);
}

.modal-header .body {
  color: var(--text-body);
  margin: 0;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-m);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-label);
}

.form-input {
  height: var(--ui-input-height);
  padding: 0 var(--space-m);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 26px;
  color: var(--text-headline);
  background: var(--surface-2);
  border: var(--border-1);
  border-radius: var(--radius-sm);
  transition: all var(--motion-duration) var(--motion-ease);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-orange);
  background: var(--surface-1);
}

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

.form-input.error {
  border-color: #E53E3E;
}

textarea.form-input {
  height: auto;
  padding: var(--space-s) var(--space-m);
  resize: vertical;
  min-height: 100px;
}

.form-message {
  padding: var(--space-s) var(--space-m);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 22px;
  border-radius: var(--radius-sm);
  display: none;
}

.form-message.success {
  display: block;
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #86EFAC;
}

.form-message.error {
  display: block;
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.btn-full {
  width: 100%;
}

.form-note {
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 16px;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .modal-content {
    padding: var(--space-l);
    max-height: 95vh;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: var(--space-m);
  }
}

/* ============================================================
   Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   CONSTRUQT Specific Components
   ============================================================ */

/* Infrastructure Panels */
.infrastructure-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}

.panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel-label {
  position: absolute;
  bottom: var(--space-m);
  left: var(--space-m);
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .panel-label {
    font-size: 18px;
    line-height: 22px;
  }
}

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}

@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: var(--border-1);
  aspect-ratio: 16/10;
}

.industry-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--motion-duration) var(--motion-ease);
}

.industry-card:hover .industry-image {
  transform: scale(1.05);
}

.industry-card h3 {
  position: absolute;
  bottom: var(--space-m);
  left: var(--space-m);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0;
}

/* Value Grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-l);
}

@media (max-width: 1024px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--text-headline);
  margin: 0;
}

.value-item p {
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-body);
  margin: 0;
}
