:root {
  --ink: #17212b;
  --muted: #61717d;
  --line: #dce5e8;
  --paper: #f7faf8;
  --white: #ffffff;
  --green: #2e7d5b;
  --green-dark: #1f6045;
  --solar: #f4b63f;
  --sky: #dceff1;
  --shadow: 0 18px 60px rgba(22, 42, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(247, 250, 248, 0.92);
  border-bottom: 1px solid rgba(220, 229, 232, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  image-rendering: auto;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switch span {
  min-width: 32px;
  padding: 6px 8px;
  text-align: center;
  border-radius: 999px;
}

.language-switch [aria-current="true"] {
  color: var(--white);
  background: var(--green);
}

.nav a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 6vw, 80px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 25, 33, 0.91) 0%, rgba(13, 25, 33, 0.78) 42%, rgba(13, 25, 33, 0.22) 100%),
    url("assets/media/hero-digital-twin.jpg") center / cover no-repeat;
}

.hero > *,
.split > *,
.contact-layout > * {
  min-width: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 25, 33, 0.18), rgba(13, 25, 33, 0.62));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.6vw, 4.6rem);
  line-height: 1.02;
}

h2 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero-text {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.ghost {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 0;
}

.proof-strip div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.proof-strip dt {
  font-size: 1.6rem;
  font-weight: 900;
}

.proof-strip dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 80px);
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.offer-grid,
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.offer-grid article,
.tool-panel,
.quote-box {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-grid article p {
  color: var(--muted);
  margin-bottom: 0;
}

.price-card {
  background: var(--green) !important;
  color: var(--white);
}

.price-card span {
  display: block;
  margin-bottom: 12px;
  opacity: 0.82;
}

.price-card strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.price-card p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-weight: 900;
}

.timeline strong {
  display: block;
  margin-bottom: 8px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.quote-box {
  background: #eef7ef;
  font-size: 1.2rem;
}

.recognition-grid {
  display: grid;
  gap: 14px;
}

.quote-box span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-box small {
  color: var(--muted);
}

.media-section {
  background: var(--paper);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 16px;
}

.media-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(22, 42, 54, 0.08);
}

.media-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-grid figure:first-child img {
  aspect-ratio: 16 / 10;
}

.media-grid figcaption {
  padding: 14px 16px 16px;
  color: var(--ink);
  font-weight: 800;
}

.tools {
  background: #eef4f1;
}

.form,
.contact-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input[type="checkbox"] {
  width: 22px;
  height: 22px;
}

.compact {
  grid-template-columns: 1fr;
}

.crm-board {
  display: grid;
  gap: 10px;
}

.lead-card {
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lead-card strong {
  display: block;
}

.lead-card small {
  color: var(--muted);
}

.quote-output {
  margin-top: 16px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-output:empty {
  display: none;
}

.status {
  min-height: 24px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 80px);
  color: var(--muted);
  background: var(--ink);
}

.footer strong,
.footer a {
  color: var(--white);
}

.footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-page {
  max-width: 940px;
  min-height: 70vh;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 80px);
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-page p {
  color: var(--muted);
}

.legal-notice {
  padding: 16px 18px;
  background: #fff7df;
  border: 1px solid #f0d88c;
  border-radius: 8px;
  color: #6b5310 !important;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .tool-grid,
  .media-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .nav,
  .language-switch,
  .header-cta {
    display: none;
  }

  .proof-strip,
  .offer-grid,
  .tool-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.7rem;
    overflow-wrap: anywhere;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(13, 25, 33, 0.93) 0%, rgba(13, 25, 33, 0.78) 58%, rgba(13, 25, 33, 0.58) 100%),
      url("assets/media/hero-digital-twin.jpg") center / cover no-repeat;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
