@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --ink: #080808;
  --muted: #5f5f5f;
  --line: rgba(0, 0, 0, 0.14);
  --accent: #ffffff;
  --accent-hover: #e7e7e7;
  --dark: #050505;
  --dark-soft: #111111;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--accent);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 19, 21, 0.78);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(17, 19, 21, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 154px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  transition: color 0.2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent);
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.button-ghost:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 38%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #0c0e10 0%, #181b1e 55%, #101214 100%);
}

.hero::after {
  position: absolute;
  right: -12%;
  bottom: -46%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 95%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 780px;
  align-items: center;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 82px;
  padding-top: 110px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #555555;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-dark .eyebrow,
.contact-section .eyebrow {
  color: var(--accent);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.hero h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 42px;
  color: rgba(255,255,255,0.68);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-points span {
  position: relative;
  padding-left: 18px;
}

.hero-points span::before {
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  backdrop-filter: blur(18px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #65dc8d;
  box-shadow: 0 0 0 7px rgba(101,220,141,0.12);
}

.hero-card-label {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.16;
}

.hero-card > p:not(.hero-card-label) {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.68);
}

.hero-card small {
  display: block;
  margin-top: 15px;
  color: rgba(255,255,255,0.46);
  text-align: center;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  color: var(--white);
  background: var(--dark-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(255,255,255,0.09);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong {
  font-size: 1.25rem;
}

.trust-grid span {
  margin-top: 2px;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 710px;
  margin-bottom: 56px;
}

.section-heading h2,
.about-copy h2,
.application-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light > p:last-child {
  color: rgba(255,255,255,0.58);
}

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

.benefit-card {
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.card-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #8b7133;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 62px 0 10px;
  font-size: 1.25rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 100%, rgba(255,255,255,0.06), transparent 28%),
    var(--dark);
}

.vacancy-list {
  display: grid;
  gap: 14px;
}

.vacancy-card {
  display: grid;
  align-items: center;
  grid-template-columns: 1.3fr 0.8fr auto;
  gap: 30px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.vacancy-card:hover {
  border-color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.vacancy-main {
  display: grid;
  align-items: center;
  grid-template-columns: 190px 1fr;
  gap: 24px;
}

.vacancy-main h3 {
  margin: 7px 0 0;
  font-size: 1.35rem;
}

.vacancy-main > p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
}

.vacancy-tag {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vacancy-meta {
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,0.56);
  font-size: 0.8rem;
  list-style: none;
}

.vacancy-meta strong {
  color: rgba(255,255,255,0.83);
}

.text-button {
  padding: 12px 0;
  border: 0;
  color: var(--accent);
  background: none;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.text-button:hover {
  color: var(--accent-hover);
}

.open-application {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 36px;
  border-radius: 22px;
  color: var(--ink);
  background: var(--accent);
}

.open-application .eyebrow {
  margin-bottom: 6px;
  color: rgba(17,19,21,0.6);
}

.open-application h3 {
  margin: 0;
  font-size: 1.7rem;
}

.open-application p:last-child {
  max-width: 650px;
  margin: 6px 0 0;
  color: rgba(17,19,21,0.64);
}

.open-application .button {
  flex: 0 0 auto;
  color: var(--white);
  border-color: var(--dark);
  background: var(--dark);
}

.about-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.about-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(rgba(17,19,21,0.15), rgba(17,19,21,0.15)),
    linear-gradient(135deg, #262a2d, #111315);
  box-shadow: var(--shadow);
}

.about-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
}

.beam {
  position: absolute;
  width: 120%;
  height: 48px;
  background: var(--accent);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  transform-origin: center;
}

.beam-one {
  top: 38%;
  left: -10%;
  transform: rotate(-28deg);
}

.beam-two {
  top: 58%;
  left: -9%;
  opacity: 0.28;
  transform: rotate(22deg);
}

.about-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  width: 166px;
  height: 166px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17,19,21,0.8);
  backdrop-filter: blur(10px);
}

.about-badge strong {
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.about-badge span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.about-copy > p:nth-of-type(2) {
  margin-top: 24px;
}

.about-values {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.about-values div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-values span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(0,0,0,0.10);
}

.about-values p {
  margin: 0;
  font-weight: 700;
}

.process-section {
  padding-top: 10px;
}

.process-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}

.process-grid::before {
  position: absolute;
  top: 27px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid li {
  position: relative;
  padding: 0 18px 0 0;
}

.process-grid li > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  font-weight: 800;
}

.process-grid h3 {
  margin: 26px 0 8px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.application-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.application-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,0.6);
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 38px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}

.contact-card p {
  margin: 0 0 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card a {
  width: fit-content;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-card small {
  margin-top: 8px;
  color: #f1a2a2;
}

.application-form {
  padding: 34px;
  border-radius: 26px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0,0,0,0.24);
}

.application-form label {
  display: grid;
  gap: 8px;
  color: #303335;
  font-size: 0.82rem;
  font-weight: 700;
}

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

.application-form > label:not(.consent) {
  margin-bottom: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dedfdf;
  border-radius: 12px;
  outline: 0;
  color: var(--ink);
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #111111;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.10);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 11px !important;
  margin: 6px 0 20px;
  color: var(--muted) !important;
  font-size: 0.76rem !important;
  font-weight: 500 !important;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent a {
  text-decoration: underline;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: #32744b;
  font-size: 0.84rem;
  text-align: center;
}

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

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.5);
}

.faq-list summary {
  position: relative;
  padding-right: 34px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 1.4rem;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-section {
  padding: 88px 0;
  color: var(--white);
  background: #1b1e20;
}

.contact-layout {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.contact-details span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--accent);
}

.site-footer {
  padding: 28px 0;
  color: rgba(255,255,255,0.5);
  background: #0d0f10;
  font-size: 0.8rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner .brand img {
  width: 126px;
}

.footer-inner a:last-child:hover {
  color: var(--white);
}

.mobile-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 999;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

.privacy-page {
  min-height: 100vh;
  padding: 150px 0 90px;
  background: var(--bg);
}

.privacy-card {
  max-width: 860px;
  padding: 44px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  margin-top: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.privacy-card h2 {
  margin-top: 32px;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: #111111;
  font-weight: 800;
}

@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(17,19,21,0.98);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 4px;
  }

  .main-nav .button {
    margin-top: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 170px 0 90px;
  }

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

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

  .vacancy-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .vacancy-main {
    grid-template-columns: 190px 1fr;
  }

  .text-button {
    width: fit-content;
  }

  .about-layout,
  .application-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .application-layout {
    gap: 50px;
  }

  .about-visual {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .brand img {
    width: 138px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 136px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-card {
    padding: 26px;
  }

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

  .trust-grid > div {
    min-height: 100px;
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }

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

  .benefit-card {
    min-height: 250px;
  }

  .vacancy-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .open-application {
    align-items: stretch;
    flex-direction: column;
  }

  .about-visual {
    min-height: 350px;
  }

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

  .process-grid::before {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: 27px;
    width: 1px;
    height: auto;
  }

  .process-grid li {
    padding-left: 80px;
  }

  .process-grid li > span {
    position: absolute;
    left: 0;
  }

  .process-grid h3 {
    margin-top: 0;
  }

  .application-form {
    padding: 24px 18px;
  }

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

  .contact-details {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .privacy-card {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.service-grid,.project-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.service-card{min-height:320px;padding:32px;border:1px solid var(--line);border-radius:var(--radius);background:rgba(255,255,255,.62);transition:.25s}.service-card:hover{background:#fff;box-shadow:var(--shadow);transform:translateY(-6px)}.service-card h3{margin:56px 0 12px}.service-card p{color:var(--muted)}.service-card .text-button{color:#111111}.feature-list{border-top:1px solid rgba(255,255,255,.12)}.feature-row{display:grid;grid-template-columns:100px 1fr;gap:30px;padding:30px 0;border-bottom:1px solid rgba(255,255,255,.12)}.feature-row>strong{color:var(--accent)}.feature-row h3{margin:0 0 8px}.feature-row p{margin:0;color:rgba(255,255,255,.58)}.project-card{overflow:hidden;border-radius:22px;background:#fff;box-shadow:0 18px 50px rgba(17,19,21,.09)}.project-placeholder{display:flex;min-height:320px;align-items:center;justify-content:center;color:#fff;background:linear-gradient(135deg,#777,#202426);font-size:.75rem;font-weight:800;letter-spacing:.18em}.project-info{padding:24px}.project-info h3{margin:0 0 8px}.project-info p{margin:0;color:var(--muted)}@media(max-width:1020px){.service-grid,.project-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:760px){.service-grid,.project-grid{grid-template-columns:1fr}.feature-row{grid-template-columns:56px 1fr;gap:16px}}

/* PRAT BŪVE monochrome refinement */
.brand img {
  width: 112px;
  max-height: 68px;
  object-fit: contain;
}

.site-header {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.98);
}

.button {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.button:hover {
  color: #fff;
  background: #000;
  border-color: #fff;
}

.button-ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost:hover {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.hero {
  background:
    radial-gradient(circle at 78% 34%, rgba(255,255,255,0.08), transparent 26%),
    linear-gradient(135deg, #000 0%, #151515 55%, #050505 100%);
}

.hero h1 span,
.hero .eyebrow,
.section-dark .eyebrow,
.contact-section .eyebrow {
  color: #fff;
}

.hero h1 span {
  -webkit-text-stroke: 1px rgba(255,255,255,0.28);
}

.status-dot,
.about-values span,
.hero-points span::before {
  background: #fff;
}

.card-number {
  color: #111;
  border-color: rgba(0,0,0,0.22);
}

.service-card .text-button,
.back-link {
  color: #000;
}

.feature-row > strong,
.text-button {
  color: #fff;
}

.text-button:hover {
  color: #d6d6d6;
}

.open-application {
  color: #fff;
  background: #000;
  border: 1px solid rgba(255,255,255,0.18);
}

.open-application .button {
  color: #000;
  background: #fff;
  border-color: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.10);
}

.consent input {
  accent-color: #000;
}

.mobile-cta {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}

.about-badge {
  background: rgba(0,0,0,0.88);
}

.about-badge span {
  color: #fff;
}

.beam {
  background: #fff;
}

.project-placeholder,
.project-alt,
.project-third {
  background:
    linear-gradient(135deg, rgba(0,0,0,.18), rgba(0,0,0,.78)),
    linear-gradient(135deg, #9b9b9b, #111);
}

::selection {
  color: #fff;
  background: #000;
}

@media (max-width: 760px) {
  .brand img {
    width: 92px;
    max-height: 58px;
  }
}


/* Pilnās versijas papildinājumi */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after-grid .project-placeholder {
  min-height: 250px;
}

.project-after {
  border-left: 1px solid rgba(255,255,255,.18);
  filter: contrast(1.1) brightness(1.08);
}

.project-type {
  margin: 0 0 7px !important;
  color: #111 !important;
  font-size: .72rem !important;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-meta {
  display: grid;
  gap: 4px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .82rem;
  list-style: none;
}

.vacancy-application {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  margin-top: 36px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}

.vacancy-application h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.vacancy-application > div > p:last-child {
  color: rgba(255,255,255,.58);
}

.vacancy-form {
  padding: 28px;
  border-radius: 20px;
  color: #080808;
  background: #fff;
}

.vacancy-form > label:not(.consent) {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .82rem;
  font-weight: 700;
}

.contact-intro {
  max-width: 520px;
  color: rgba(255,255,255,.56);
}

.contact-details-expanded {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 34px;
}

@media (max-width: 1020px) {
  .vacancy-application {
    grid-template-columns: 1fr;
  }

  .contact-details-expanded {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .project-after {
    border-top: 1px solid rgba(255,255,255,.18);
    border-left: 0;
  }

  .vacancy-application {
    padding: 22px;
  }

  .vacancy-form {
    padding: 20px 16px;
  }

  .contact-details-expanded {
    grid-template-columns: 1fr;
  }
}


/* INDUSTRIĀLA BŪVNIECĪBAS VIZUĀLĀ SISTĒMA */
.construction-hero {
  position: relative;
  min-height: 820px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.82) 45%, rgba(0,0,0,.32) 100%),
    url("../img/construction-hero.svg") center/cover no-repeat;
}

.hero-blueprint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000 0%, transparent 80%);
}

.hero-tools {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 38%;
  opacity: .6;
  background: url("../img/tools-outline.svg") right bottom/contain no-repeat;
  pointer-events: none;
}

.technical-label {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.25);
  font-family: "Courier New", monospace;
  font-size: .72rem;
  letter-spacing: .15em;
}

.hero-technical-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(0,0,0,.58);
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
  backdrop-filter: blur(8px);
}

.technical-card-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  font-family: "Courier New", monospace;
  font-size: .72rem;
  letter-spacing: .14em;
}

.formula-block {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px dashed rgba(255,255,255,.18);
}

.formula-block strong {
  font-size: .8rem;
  text-transform: uppercase;
}

.formula-block span {
  font-family: "Courier New", monospace;
  color: rgba(255,255,255,.72);
}

.measurement-line {
  display: flex;
  justify-content: space-between;
  margin: 28px 0;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.45);
  font-family: "Courier New", monospace;
  font-size: .68rem;
  position: relative;
}

.measurement-line::before,
.measurement-line::after {
  position: absolute;
  top: -7px;
  width: 1px;
  height: 14px;
  background: #fff;
  content: "";
}
.measurement-line::before { left: 0; }
.measurement-line::after { right: 0; }

.construction-context {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
}

.construction-context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.context-blueprint {
  overflow: hidden;
  border: 1px solid #111;
  background: #fff;
  box-shadow: 16px 16px 0 #111;
}

.context-blueprint img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.context-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.context-copy > p:last-of-type {
  color: var(--muted);
}

.calculation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  border-top: 1px solid #111;
  border-left: 1px solid #111;
}

.calculation-grid div {
  padding: 18px 12px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
}

.calculation-grid strong,
.calculation-grid span {
  display: block;
}

.calculation-grid strong {
  font-family: "Courier New", monospace;
  font-size: .72rem;
}

.calculation-grid span {
  margin-top: 7px;
  font-weight: 800;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 50%;
  content: "";
}

.service-icon {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: "Courier New", monospace;
  font-size: 2rem;
  font-weight: 800;
  opacity: .45;
}

.construction-photo-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(135deg, #222, #050505);
  background-size: 26px 26px, 26px 26px, auto;
}

.construction-photo-placeholder::before {
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255,255,255,.25);
  content: "";
}

.construction-photo-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.construction-photo-placeholder small {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.45);
  font-size: .62rem;
  letter-spacing: .12em;
}

.section-heading::after {
  display: block;
  width: 120px;
  height: 8px;
  margin-top: 24px;
  background:
    repeating-linear-gradient(
      135deg,
      #111 0,
      #111 8px,
      transparent 8px,
      transparent 14px
    );
  content: "";
}

.section-dark .section-heading::after {
  background:
    repeating-linear-gradient(
      135deg,
      #fff 0,
      #fff 8px,
      transparent 8px,
      transparent 14px
    );
}

@media (max-width: 1020px) {
  .construction-context-grid {
    grid-template-columns: 1fr;
  }

  .hero-tools {
    width: 82%;
    opacity: .35;
  }
}

@media (max-width: 760px) {
  .construction-hero {
    min-height: auto;
    background-position: 64% center;
  }

  .hero-technical-card {
    padding: 22px;
  }

  .construction-context {
    padding: 70px 0;
  }

  .context-blueprint {
    box-shadow: 8px 8px 0 #111;
  }

  .context-blueprint img {
    min-height: 280px;
  }

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

  .technical-label {
    font-size: .62rem;
  }
}


/* LABOJUMI: tīrāks industriālais dizains */
.hero-technical-card,
.formula-block,
.measurement-line {
  display: none !important;
}

.hero-site-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-panel-frame {
  position: relative;
  width: 100%;
  min-height: 420px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    rgba(0,0,0,.34);
  background-size: 34px 34px;
  backdrop-filter: blur(6px);
}

.site-panel-code {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-family: "Courier New", monospace;
  font-size: .72rem;
  letter-spacing: .15em;
}

.site-panel-building {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 80%;
  height: 230px;
  margin: 54px auto 30px;
  align-items: end;
}

.site-panel-building::before {
  position: absolute;
  right: -8%;
  bottom: 0;
  left: -8%;
  height: 1px;
  background: rgba(255,255,255,.5);
  content: "";
}

.site-panel-building span {
  position: relative;
  display: block;
  height: 100%;
  border: 1px solid rgba(255,255,255,.5);
  border-bottom: 0;
}

.site-panel-building span:nth-child(1) { height: 46%; }
.site-panel-building span:nth-child(2) { height: 72%; }
.site-panel-building span:nth-child(3) { height: 100%; }
.site-panel-building span:nth-child(4) { height: 64%; }

.site-panel-building span::before,
.site-panel-building span::after {
  position: absolute;
  right: 18%;
  left: 18%;
  height: 1px;
  background: rgba(255,255,255,.28);
  content: "";
}

.site-panel-building span::before { top: 34%; }
.site-panel-building span::after { top: 67%; }

.site-panel-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.24);
}

.site-panel-caption strong {
  font-size: .78rem;
  letter-spacing: .12em;
}

.site-panel-caption span {
  color: rgba(255,255,255,.5);
  font-family: "Courier New", monospace;
  font-size: .65rem;
  text-align: right;
}

/* Formulas stay only as a faint background motif */
.construction-hero::after {
  position: absolute;
  right: 5%;
  bottom: 7%;
  z-index: 0;
  color: rgba(255,255,255,.06);
  font-family: "Courier New", monospace;
  font-size: clamp(1rem, 2.2vw, 2rem);
  line-height: 2.1;
  white-space: pre;
  content: "A = b × h\A V = l × w × h\A σ = F / A";
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
}

/* No zebra/striped decorations */
.section-heading::after,
.section-dark .section-heading::after {
  display: none !important;
}

.open-application,
.technical-label {
  background-image: none !important;
}

/* Consistent service icons */
.service-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 50%;
  background: #fff;
  font-size: 1.35rem;
  opacity: .78;
}

.service-card {
  padding-top: 32px;
}

.service-card h3 {
  margin-top: 56px;
}

/* Ensure vacancies section is visually integrated */
#vakances {
  position: relative;
  overflow: hidden;
}

#vakances::before {
  position: absolute;
  inset: 0;
  opacity: .08;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  pointer-events: none;
}

#vakances > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .site-panel-frame {
    min-height: 320px;
  }

  .site-panel-building {
    height: 175px;
    margin-top: 44px;
  }

  .site-panel-caption {
    flex-direction: column;
  }

  .site-panel-caption span {
    text-align: left;
  }

  .construction-hero::after {
    right: 4%;
    bottom: 3%;
    font-size: .9rem;
  }
}


/* Gala labojumi pakalpojumu ikonām un enkuriem */
html {
  scroll-padding-top: 92px;
}

#vakances {
  scroll-margin-top: 92px;
}

.service-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: 50%;
  background: #fff;
  opacity: 1;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #111;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card {
  position: relative;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  #vakances {
    scroll-margin-top: 78px;
  }
}


/* Atsevišķā vakanču lapa */
.vacancies-page {
  min-height: 100vh;
  background: #050505;
}

.vacancies-hero {
  position: relative;
  padding: 170px 0 80px;
  color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(135deg, #000, #171717);
  background-size: 42px 42px, 42px 42px, auto;
}

.vacancies-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.vacancies-hero > .container > p:last-child {
  max-width: 700px;
  margin-top: 26px;
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
}

.light-back {
  margin-bottom: 36px;
  color: rgba(255,255,255,.72);
}

.light-back:hover {
  color: #fff;
}

.vacancies-content {
  padding-top: 70px;
}

.vacancies-content .vacancy-card h2 {
  margin: 7px 0 0;
  font-size: 1.35rem;
}

.vacancies-content #pieteikties {
  scroll-margin-top: 100px;
}

.main-nav a[aria-current="page"] {
  color: #fff;
}

@media (max-width: 760px) {
  .vacancies-hero {
    padding: 130px 0 60px;
  }
}


/* Hero labajā pusē: PRAT logo diagrammas vietā */
.hero-site-panel,
.site-panel-frame,
.site-panel-building,
.site-panel-caption,
.site-panel-code {
  display: none !important;
}

.hero-logo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-frame {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 420px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
    rgba(0,0,0,.24);
  background-size: 34px 34px;
  backdrop-filter: blur(5px);
}

.hero-logo-frame::before,
.hero-logo-frame::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-logo-frame::before {
  inset: 22px;
  border: 1px solid rgba(255,255,255,.08);
}

.hero-logo-frame::after {
  width: 72%;
  height: 72%;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
}

.hero-logo-frame img {
  position: relative;
  z-index: 1;
  width: min(74%, 360px);
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.35));
}

@media (max-width: 760px) {
  .hero-logo-frame {
    min-height: 300px;
  }

  .hero-logo-frame img {
    width: min(68%, 260px);
    max-height: 240px;
  }
}


/* Noņemtie dekoratīvie elementi */
.technical-label,
.hero-points,
.service-icon {
  display: none !important;
}

.service-card h3 {
  margin-top: 56px;
}

/* PRAT būve V2 */
.process-grid { grid-template-columns: repeat(3, 1fr); }
.process-grid::before { display: none; }
.process-grid li { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.45); }
.process-grid li > span { background: #fff; }
.vacancy-meta { display: grid; gap: 5px; }
@media (max-width: 1020px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { padding-left: 22px; }
  .process-grid li > span { position: relative; margin-bottom: 18px; }
}


/* PRAT būve V3 - kompaktāka struktūra un fakti tikai sadaļā Par mums */
.trust-strip { display: none !important; }
:root { --radius: 18px; }
.site-header { height: 72px; }
.main-nav { gap: 22px; font-size: 0.86rem; }
.brand img { width: 96px; max-height: 58px; }

.hero, .hero-layout { min-height: 660px; }
.hero-layout { padding-top: 92px; gap: 54px; }
.hero h1 { max-width: 680px; font-size: clamp(2.9rem, 6.2vw, 5.4rem); line-height: .97; }
.hero-text { max-width: 650px; margin-top: 20px; font-size: 1.02rem; }
.hero-actions { margin-top: 28px; }
.hero-logo-frame { min-height: 330px; }
.hero-logo-frame img { width: min(68%, 300px); max-height: 270px; }

.section { padding: 76px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2, .about-copy h2, .application-copy h2, .contact-section h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading > p:last-child, .about-copy > p:not(.eyebrow), .application-copy > p:not(.eyebrow) {
  margin-top: 14px;
  line-height: 1.55;
}

.service-grid, .project-grid, .benefit-grid { gap: 14px; }
.service-card { min-height: 245px; padding: 26px; }
.service-card h3 { margin: 42px 0 8px; font-size: 1.12rem; }
.service-card p { margin: 0; line-height: 1.55; }
.card-number { width: 40px; height: 40px; font-size: .82rem; }

.feature-row { padding: 22px 0; grid-template-columns: 76px 1fr; }
.feature-row h3 { margin-bottom: 5px; font-size: 1.18rem; }
.feature-row p { line-height: 1.52; }

.project-placeholder { min-height: 230px; }
.before-after-grid .project-placeholder { min-height: 205px; }
.project-info { padding: 20px; }
.project-info h3 { margin-bottom: 6px; font-size: 1.12rem; }

.about-layout { gap: 56px; align-items: center; }
.about-logo-visual {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: center;
  padding: 42px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 22px;
  background:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
  box-shadow: var(--shadow);
}
.about-logo-visual img { width: min(82%, 360px); height: auto; object-fit: contain; }
.about-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 24px 0 22px; }
.about-facts div { padding: 16px 14px; border: 1px solid rgba(0,0,0,.12); border-radius: 14px; background: rgba(255,255,255,.65); }
.about-facts strong { display: block; font-size: 1rem; }
.about-facts span { display: block; margin-top: 3px; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.about-values { gap: 10px; margin-top: 18px; }
.about-values div { align-items: flex-start; }
.about-values p { line-height: 1.45; }

.process-section { padding-top: 42px; }
.process-grid { gap: 14px; }
.process-grid li { padding: 18px; }
.process-grid h3 { margin: 14px 0 6px; font-size: 1.05rem; }
.process-grid p { line-height: 1.48; }

.application-form { padding: 28px; }
.application-layout { gap: 54px; }
.contact-section { padding: 64px 0; }
.contact-details { gap: 20px; }

.privacy-page { padding: 118px 0 72px; }
.privacy-card { max-width: 900px; padding: 34px; }
.privacy-card h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.privacy-card h2 { margin-top: 24px; font-size: 1.22rem; }
.privacy-card p, .privacy-card li { line-height: 1.55; }

@media (max-width: 1020px) {
  .about-facts { grid-template-columns: repeat(2, 1fr); }
  .hero-layout { gap: 36px; }
}

@media (max-width: 760px) {
  .site-header { height: 68px; }
  .brand img { width: 84px; }
  .section { padding: 58px 0; }
  .hero, .hero-layout { min-height: auto; }
  .hero-layout { padding-top: 112px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4.1rem); }
  .section-heading { margin-bottom: 26px; }
  .service-card { min-height: 220px; }
  .about-logo-visual { min-height: 260px; padding: 28px; }
  .about-facts { grid-template-columns: 1fr 1fr; }
  .privacy-card { padding: 26px 18px; }
}
