:root {
  --yellow: #ffd22e;
  --yellow-dark: #f4b800;
  --ink: #283033;
  --muted: #687174;
  --line: #e7eaeb;
  --soft: #f7f8f6;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(40, 48, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(231, 234, 235, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
}

.brand img {
  width: auto;
  max-width: 148px;
  height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--yellow-dark);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.language-switch button {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: 900 12px/1 "Montserrat", Arial, sans-serif;
}

.language-switch button[aria-pressed="true"] {
  background: var(--yellow);
  color: var(--ink);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font: 900 20px/1 "Montserrat", Arial, sans-serif;
  box-shadow: 0 10px 24px rgba(244, 184, 0, 0.28);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 110px 0 72px;
  background: #11181a;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 22, 24, 0.9) 0%, rgba(16, 22, 24, 0.76) 48%, rgba(16, 22, 24, 0.28) 100%),
    url("../img/hero-bg.jpeg") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  background: var(--white);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow-dark);
  font: 800 13px/1.4 "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro-grid h2,
.contact-copy h2 {
  margin: 0;
  color: inherit;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  line-height: 1.05;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(56px, 8vw, 112px);
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: 800 14px/1 "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--yellow-dark);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--yellow);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  gap: 1px;
  margin: 56px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stats div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  color: var(--yellow);
  font: 900 28px/1 "Montserrat", Arial, sans-serif;
}

.hero-stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.hero-card {
  display: grid;
  gap: 18px;
}

.service-ticket {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.ticket-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.service-ticket strong {
  display: block;
  font: 900 30px/1.12 "Montserrat", Arial, sans-serif;
}

.service-ticket p {
  margin: 14px 0 20px;
  color: var(--muted);
}

.ticket-link {
  color: var(--ink);
  font-weight: 900;
  border-bottom: 3px solid var(--yellow);
}

.quick-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-list span {
  padding: 14px 12px;
  border-radius: 6px;
  background: rgba(255, 210, 46, 0.92);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.intro-band {
  padding: 72px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.contact-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.intro-grid p:last-child {
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.features {
  padding: 0 0 76px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
}

.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.feature-item h3,
.service-list h3,
.process-grid h3 {
  margin: 22px 0 10px;
  font: 900 21px/1.2 "Montserrat", Arial, sans-serif;
}

.feature-item p,
.service-list p,
.process-grid p {
  margin: 0;
  color: var(--muted);
}

.services-section {
  padding: 86px 0;
  background: var(--soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 410px;
  gap: 44px;
  align-items: start;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-list article {
  min-height: 170px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-list h3 {
  margin-top: 0;
}

.service-visual {
  position: sticky;
  top: 110px;
}

.service-visual img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center top;
  border-radius: 8px;
  /* background: var(--white);
  box-shadow: var(--shadow);*/
}

.visual-note {
  margin: -42px 24px 0;
  position: relative;
  padding: 20px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(40, 48, 51, 0.14);
}

.visual-note strong,
.visual-note span {
  display: block;
}

.visual-note strong {
  font: 900 19px/1.2 "Montserrat", Arial, sans-serif;
  margin-bottom: 8px;
}

.visual-note span {
  font-size: 14px;
}

.process {
  padding: 86px 0;
}

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

.process-grid article {
  padding: 30px;
  border-radius: 8px;
  background: #1f272a;
  color: var(--white);
}

.process-grid span {
  color: var(--yellow);
  font: 900 42px/1 "Montserrat", Arial, sans-serif;
}

.process-grid h3 {
  color: var(--white);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--soft), #fff);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.contact-methods a > span:first-child {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.contact-methods a > span:last-child {
  display: block;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255, 210, 46, 0.35);
  border-color: var(--yellow-dark);
}

.full {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-success {
  color: #1d7a3a;
}

.form-status.is-error {
  color: #b3261e;
}

.site-footer {
  padding: 54px 0 24px;
  background: #1f272a;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 1fr));
  gap: 38px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  padding: 0;
}


.footer-brand img {
  width: auto;
  height: 78px;
  object-fit: contain;
}


.footer-about p {
  max-width: 420px;
  margin: 20px 0 0;
}

.footer-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
  font: 900 20px/1 "Montserrat", Arial, sans-serif;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: var(--white);
  font: 900 15px/1.2 "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--yellow);
}

.footer-contact a {
  display: grid;
  gap: 3px;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer-contact strong {
  color: var(--white);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--yellow);
  font-weight: 800;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 4;
  }

  .site-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px rgba(40, 48, 51, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-call {
    justify-self: end;
    grid-column: 3;
    grid-row: 1;
  }

  .language-switch {
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  .hero-grid,
  .intro-grid,
  .services-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 84px;
  }

  .hero-card {
    max-width: 560px;
  }

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

  .service-visual {
    position: static;
    max-width: 520px;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 74px;
    gap: 8px;
  }

  .brand img {
    max-width: 112px;
    height: 46px;
  }

  .header-call {
    min-height: 40px;
    padding: 0 13px;
    font-size: 16px;
  }

  .language-switch button {
    min-width: 32px;
    height: 30px;
    font-size: 11px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .site-nav {
    top: 74px;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 52px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats,
  .feature-grid,
  .service-list,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    min-height: auto;
    padding: 26px;
  }

  .intro-band,
  .services-section,
  .process,
  .contact-section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-bottom {
    display: grid;
  }
}
