:root {
  color-scheme: dark;
  --bg: #030410;
  --bg-soft: #030410;
  --bg-card: rgba(180, 186, 198, 0.14);
  --bg-card-strong: rgba(180, 186, 198, 0.2);
  --stroke: rgba(255, 255, 255, 0.18);
  --text: #f3f6fb;
  --muted: rgba(243, 246, 251, 0.7);
  --accent: #e88400;
  --accent-2: #67c3ff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  background: #030410;
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font-family: inherit;
}

.page-glow {
  display: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 5;
  background: transparent;
}

.site-header .container {
  width: min(1280px, 95vw);
}

.header-shell {
  border-radius: 999px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  border: none;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
}

.logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

.logo-main {
  color: var(--text);
  font-size: 18px;
}

.logo-accent {
  color: var(--accent);
  font-size: 13px;
}

.brand-orange {
  color: #e88400;
}

.nav {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-end;
  padding: 0 8px;
}

.nav-pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-pill:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.nav-accent {
  border-color: rgba(255, 200, 55, 0.65);
  background: rgba(255, 200, 55, 0.12);
  color: #fff3d1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.42);
  transform: scale(1.04);
}

.nav-toggle__dots {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-toggle__dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.lang {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  margin-left: auto;
}

.lang-pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  padding: 6px 10px;
  font-size: 11px;
  cursor: pointer;
  min-width: 34px;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.lang-pill.is-active {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.lang-pill:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.lang-pill img {
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  margin-top: -120px;
  padding-top: 120px;
  --hero-cover: 0%;
  --hero-scale: 1;
  --hero-shift: 0px;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--hero-cover);
  background: #030410;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./img/hero-base.png");
  background-size: cover;
  background-position: center;
  filter: none;
  z-index: 0;
  transform: scaleY(var(--hero-scale));
  transform-origin: center top;
  transition: transform 0.2s ease;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./img/hero-overlay.png") center/cover no-repeat;
  opacity: 0.3;
}

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

.hero-inner {
  padding: 140px 0 110px;
  position: relative;
  z-index: 2;
  transform: translateY(var(--hero-shift));
  transition: transform 0.2s ease;
}

.site-header .logo {
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}

.site-header .logo-text {
  flex-direction: row;
  align-items: center;
  gap: 2px;
  letter-spacing: 0.6px;
}

.site-header .logo-badge {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  font-size: 20px;
}

.site-header .logo-main {
  font-size: 24px;
}

.site-header .logo-accent {
  font-size: 24px;
}

.hero-content {
  max-width: 980px;
  transform: translateY(-60px);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  white-space: nowrap;
}

.hero p {
  color: var(--muted);
  margin-bottom: 26px;
}

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

.hero-actions .btn {
  min-width: 140px;
}

.section {
  padding: 70px 0 50px;
  position: relative;
}


.about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  font-size: 22px;
  margin: 0 auto 32px;
  text-align: center;
  min-width: 300px;
  width: fit-content;
}

.about-grid {
  display: grid;
  grid-template-columns: 420px minmax(420px, 780px);
  gap: 32px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  margin: 0 auto;
  width: max-content;
  text-align: left;
}

.about-logo {
  padding: 10px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  min-height: 360px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
}

.about-logo-inner {
  text-align: center;
  display: grid;
  gap: 10px;
  place-items: center;
}

.about-logo img {
  width: 100%;
  height: 100%;
  max-width: 360px;
  max-height: 360px;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.about-card {
  background: var(--bg-card);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 36px;
  box-shadow: var(--shadow);
  width: 640px;
  height: 330px;
  text-align: left;
}

.about-card p {
  color: var(--muted);
  margin-bottom: 18px;
  white-space: pre-line;
  font-size: 19px;
  line-height: 1.6;
}

.about-card .btn {
  justify-self: center;
  padding: 14px 26px;
  font-size: 15px;
}

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

.service-card {
  display: grid;
  gap: 12px;
  justify-items: center;
}


.service-media {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-media img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.service-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  background: rgba(255, 255, 255, 0.93);
  color: #0b1320;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  min-height: 72px;
  line-height: 1.25;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.service-btn {
  width: 78%;
  padding: 10px 16px;
  font-size: 13px;
}

.projects-panel {
  --projects-visible: 3;
  --projects-gap: 28px;
  background: linear-gradient(135deg, rgba(61, 64, 78, 0.95), rgba(39, 41, 54, 0.95));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 28px 28px 16px;
  box-shadow: var(--shadow);
  height: 620px;
  position: relative;
  overflow: hidden;
}

.projects-viewport {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.projects-track {
  display: flex;
  gap: var(--projects-gap);
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.92s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text);
  height: 100%;
  flex: 0 0 calc((100% - (var(--projects-gap) * (var(--projects-visible) - 1))) / var(--projects-visible));
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease;
}

.project-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid #e88400;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(0) scale(1);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.project-media img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.project-card h3 {
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.btn-project {
  margin-top: auto;
  background: #f7f8fb;
  color: #1b2330;
  border-radius: 15px;
  border: 1px solid rgba(120, 128, 146, 0.35);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.7),
    0 10px 18px rgba(0, 0, 0, 0.18);
  margin-bottom: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 220px;
  height: 70px;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.5s ease,
    color 0.5s ease,
    opacity 0.5s ease,
    transform 0.5s ease;
}

.btn-project::after {
  content: "→";
  font-size: 14px;
}

.project-next-btn {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 26px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.project-next-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.06);
}

.project-card.is-dimmed {
  opacity: 0.55;
  filter: saturate(0.86);
  transform: scale(0.985);
}

.project-card.is-dimmed .project-media::before {
  opacity: 1;
}

.project-card.is-dimmed .project-media {
  transform: translateY(6px) scale(0.988);
  border-color: rgba(232, 132, 0, 0.45);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
}

.project-card.is-dimmed h3 {
  opacity: 0.72;
  transform: translateY(2px);
}

.project-card.is-dimmed .btn-project {
  background: #7a7d88;
  color: #2b2f3a;
  transform: translateY(2px);
}

.project-card.is-trailing .project-next-btn {
  opacity: 1;
  pointer-events: auto;
}

.home-united {
  padding-top: 54px;
  padding-bottom: 34px;
}

.home-united__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 38px;
  align-items: stretch;
}

.home-united__card {
  min-height: 248px;
  border-radius: 10px 56px 0 0;
  padding: 30px 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.home-united__card h3 {
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 24px;
}

.home-united__card p {
  font-size: 16px;
  line-height: 1.45;
}

.home-united__card--experience {
  min-height: 294px;
}

.home-united__card--experience p {
  font-size: 15px;
  line-height: 1.5;
}

.home-united__card--professionalism {
  min-height: 294px;
}

.home-united__card--professionalism p {
  font-size: 15px;
  line-height: 1.5;
}

.home-united__card--reputation {
  min-height: 294px;
}

.home-united__card--reputation p {
  font-size: 15px;
  line-height: 1.5;
}

.home-united__card--dark {
  background: #364972;
  color: #f3f6ff;
}

.home-united__card--dark p {
  color: rgba(240, 244, 255, 0.7);
}

.home-united__card--light {
  background: rgba(247, 248, 252, 0.98);
  color: #27324a;
}

.home-united__card--light p {
  color: #5d6780;
}

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

.standard-card {
  background: #2d4670;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  min-height: 140px;
}

.standard-card.light {
  background: rgba(255, 255, 255, 0.92);
  color: #0b1320;
}

.standard-card.light p {
  color: #2c3a4f;
}

.standard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.standard-head h3 {
  font-size: 16px;
}

.check {
  color: var(--accent);
  font-weight: 700;
}

.standard-card p {
  color: var(--muted);
  font-size: 14px;
}

.standard-card .standard-text {
  margin-top: 40px;
}

.cta-grid {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 150px;
  row-gap: 24px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-visual {
  position: relative;
  min-height: 240px;
  background: transparent;
  display: flex;
  justify-content: center;
}

.cta-image {
  width: 350px;
  height: 350px;
  border-radius: 0;
  background-color: #030410;
  background-image: url("./img/cta.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: none;
  position: relative;
}

.cta-orb {
  display: none;
}

.cta-form {
  background: transparent;
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: none;
  transform: none;
  justify-self: center;
  position: relative;
}

.cta-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}

.cta-form input,
.cta-form select {
  background: rgba(255, 255, 255, 0.9);
  color: #0b1320;
  border-radius: 999px;
  border: none;
  width: 280px;
  height: 55px;
  padding: 0 40px 0 18px;
  font-size: 13px;
}

.cta-form input {
  background-image: none;
}

.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}

.cta-form button {
  justify-self: start;
  width: 280px;
  background: #2d4670;
  color: #ffffff;
  justify-content: flex-start;
  padding-left: 18px;
}

.cta-hands {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.cta-hands img {
  width: 550px;
  height: 350px;
  opacity: 0.9;
  filter: grayscale(100%);
}

.about-page .about-hero {
  padding: 140px 0 60px;
}

.about-page .about-pill {
  margin: 0 auto 24px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  font-size: 17px;
  text-align: center;
  width: fit-content;
  max-width: min(92vw, 620px);
}

.about-page .about-pill-strong {
  color: #e7c78f;
  font-weight: 700;
}

.about-page .about-lead {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

.about-page .about-hero-grid {
  display: grid;
  grid-template-columns: 320px 390px;
  gap: 42px;
  align-items: center;
  justify-content: center;
  justify-items: center;
  max-width: 752px;
  width: 100%;
  margin: 0 auto;
}

.about-page .about-hero-logo {
  display: grid;
  place-items: center;
}

.about-page .about-hero-logo img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.45));
}

.about-page .about-hero-card {
  background: #6f86b5;
  color: #f2f6ff;
  border-radius: 24px 0 24px 24px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
  width: 390px;
  margin: 0 auto;
}

.about-page .about-hero-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.about-page .about-hero-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.6;
}

.about-page .about-subtitle {
  text-align: center;
  margin: 40px 0 24px;
  font-size: 26px;
  font-weight: 700;
}

.about-page .about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 38px;
  margin-top: 18px;
  justify-content: center;
}

.about-page .about-card {
  width: auto;
  min-height: 294px;
  border-radius: 10px 56px 0 0;
  padding: 30px 34px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.about-page .about-card h4 {
  font-size: 24px;
  line-height: 1.18;
  min-height: 56px;
  margin-bottom: 24px;
}

.about-page .about-card p {
  font-size: 15px;
  line-height: 1.5;
}

.about-page .about-card--dark {
  background: #2c3f63;
  color: #f2f6ff;
}

.about-page .about-card--light {
  background: #f5f7fb;
  color: #27324a;
}

.about-page .about-card--light p {
  color: #27324a;
}

.about-page .about-power {
  padding: 80px 0 60px;
  position: relative;
}

.about-page .about-power::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 20px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(39, 88, 180, 0.35), transparent 70%);
  pointer-events: none;
}

.about-page .power-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.about-page .power-left {
  position: relative;
  z-index: 2;
  min-width: 0;
  margin-right: -160px;
  margin-top: 12px;
}

.about-page .power-left h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-page .power-left p {
  max-width: 620px;
  color: var(--muted);
  margin-bottom: 16px;
}

.about-page .power-left p strong {
  color: #ffffff;
}

.about-page .power-strong {
  font-weight: 600;
  color: #ffffff;
}

.about-page .power-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  overflow: visible;
}

.about-page .power-image {
  width: 150%;
  max-width: none;
  align-self: flex-end;
  margin-top: -70px;
  margin-right: -175px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}

.about-page .power-challenges h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.about-page .power-challenges p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-page .power-challenges p strong {
  color: #ffffff;
}

.about-page .power-tagline {
  font-weight: 600;
  color: #ffffff;
  margin-top: 10px;
}

.about-page .power-hands {
  position: absolute;
  left: 6%;
  bottom: 25px;
  width: 620px;
  opacity: 0.9;
  filter: grayscale(100%);
  pointer-events: none;
}

.about-page .about-founders {
  padding: 80px 0 60px;
}

.about-page .founder {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.about-page .founder--left {
  grid-template-columns: 480px 1fr;
  gap: 18px;
}

.about-page .founder--right {
  grid-template-columns: 1fr 480px;
  gap: 18px;
}

.about-page .founder-photo {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-page .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-page .founder-photo--asset {
  width: 480px;
  height: 440px;
  border-radius: 42px 42px 40px 40px;
  clip-path: inset(0 round 42px 42px 40px 40px);
  overflow: hidden;
  box-shadow: none;
  isolation: isolate;
}

.about-page .founder-photo--asset::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68%;
  height: 68%;
  background: radial-gradient(circle at 22% 78%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0) 72%);
  border-radius: 0 0 40px 40px;
  clip-path: inset(0 round 42px 42px 40px 40px);
  z-index: 2;
  pointer-events: none;
}

.about-page .founder-photo--asset .founder-asset {
  position: absolute;
  display: block;
}

.about-page .founder-photo--asset .founder-asset--frame {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 42px 42px 40px 40px;
  clip-path: inset(0 round 42px 42px 40px 40px);
  z-index: 1;
}

.about-page .founder-photo--asset .founder-asset--frame-blue {
  background: linear-gradient(180deg, #86a4df 0%, #4f6fa8 100%);
  box-shadow: 0 24px 40px rgba(69, 92, 141, 0.28);
}

.about-page .founder-photo--asset .founder-asset--dots {
  right: 38px;
  bottom: 0;
  width: 86%;
  height: auto;
  opacity: 1;
  filter: brightness(0);
  clip-path: none;
  z-index: 3;
}

.about-page .founder-photo--asset .founder-asset--portrait {
  left: 50%;
  bottom: 0;
  width: 360px;
  height: 358px;
  transform: translateX(-50%);
  object-fit: cover;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  z-index: 4;
}

.about-page .founder-photo--asset-right {
  justify-self: end;
}

.about-page .founder-photo--asset-right::before {
  left: auto;
  right: 0;
  background: radial-gradient(circle at 78% 78%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 28%, rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0) 72%);
}

.about-page .founder-photo--asset-right .founder-asset--dots-right {
  left: 38px;
  right: auto;
}

.about-page .founder-info h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.about-page .founder-info p {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.about-page .founder-info strong {
  color: #ffffff;
}

.about-page .founder-info--accent {
  position: relative;
  padding-left: 18px;
}

.about-page .founder-info--accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e88400;
}

.about-page .founder-label {
  color: #8bb0ff;
  font-weight: 700;
  margin-top: 10px;
}

.about-page .about-cta-inline {
  display: flex;
  justify-content: center;
  margin: 10px 0 40px;
}

.contacts-page .contacts-section {
  position: relative;
  padding: 128px 0 24px;
}

.contacts-page .contacts-section::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 340px;
  width: 360px;
  height: 500px;
  background: radial-gradient(circle, rgba(42, 93, 255, 0.36) 0%, rgba(42, 93, 255, 0.12) 42%, rgba(3, 4, 16, 0) 74%);
  pointer-events: none;
}

.contacts-page .contacts-heading {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
}

.contacts-page .contacts-heading h1 {
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.contacts-page .contacts-heading__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.contacts-page .contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.24fr;
  gap: 18px;
  align-items: start;
}

.contacts-page .contacts-card {
  border-radius: 18px;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
}

.contacts-page .contacts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contacts-page .contacts-card--store img {
  aspect-ratio: 0.93 / 1;
  object-position: center center;
}

.contacts-page .contacts-card--map img {
  aspect-ratio: 1.38 / 1;
}

.contacts-page .contacts-meta {
  width: min(100%, 760px);
  margin: 16px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
  align-items: center;
}

.contacts-page .contacts-item,
.contacts-page .contacts-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 246, 251, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.contacts-page .contacts-meta > .contacts-item:not(.contacts-item--phone) {
  margin-left: 100px;
  position: relative;
  top: -70px;
}

.contacts-page .contacts-item--phone {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  justify-self: end;
  position: relative;
  top: -70px;
}

.contacts-page .contacts-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  flex: 0 0 24px;
}

.contacts-page .contacts-icon--social {
  width: 22px;
  height: 22px;
  font-size: 9px;
}

.contacts-page .contacts-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  top: -70px;
}


.projects-page .projects-catalog {
  position: relative;
  padding: 46px 0 28px;
  --projects-pad: max(28px, calc((100vw - min(1680px, 96vw)) / 2));
  --projects-info-col: clamp(360px, 42vw, 860px);
  --project-row-height: 400px;
}

.projects-page .projects-catalog::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 90px;
  width: 280px;
  height: 460px;
  background: radial-gradient(circle, rgba(42, 93, 255, 0.42) 0%, rgba(42, 93, 255, 0.1) 40%, rgba(3, 4, 16, 0) 72%);
  pointer-events: none;
}

.project-showcase-page .project-showcase {
  position: relative;
  padding: 128px 0 30px;
}

.project-showcase-page .project-showcase::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 260px;
  width: 360px;
  height: 520px;
  background: radial-gradient(circle, rgba(42, 93, 255, 0.38) 0%, rgba(42, 93, 255, 0.12) 42%, rgba(3, 4, 16, 0) 74%);
  pointer-events: none;
}

.project-showcase__container {
  width: min(1520px, 95vw);
  max-width: none;
}

.project-showcase__page-title {
  text-align: center;
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 700;
  margin-bottom: 34px;
}

.project-showcase__top {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.project-showcase__title-card {
  align-self: start;
  padding: 28px 26px;
  border-radius: 10px;
  background: linear-gradient(180deg, #5f78ab 0%, #43597f 100%);
  color: #ffffff;
  font-size: 30px;
  line-height: 1.04;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.project-showcase__meta {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.project-showcase__meta-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

.project-showcase__meta-tag,
.project-showcase__results-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(108, 130, 192, 0.95) 0%, rgba(85, 107, 168, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.project-showcase__meta-arrow {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.project-showcase__meta-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  transform: translateY(-50%) rotate(45deg);
}

.project-showcase__meta-value {
  color: rgba(243, 246, 251, 0.76);
  font-size: 15px;
}

.project-showcase__meta-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 246, 251, 0.82);
  font-size: 15px;
}

.project-showcase__meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e88400;
}

.project-showcase__description {
  max-width: 540px;
  color: rgba(243, 246, 251, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.project-showcase__results-head {
  display: flex;
  justify-content: center;
  margin: 26px 0 18px;
}

.project-showcase__gallery {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.project-showcase__gallery-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.project-showcase__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-showcase__gallery-item--main {
  min-height: 420px;
}

.project-showcase__gallery-item:not(.project-showcase__gallery-item--main) {
  min-height: 260px;
}

.project-showcase__action {
  display: flex;
  justify-content: center;
  margin: 24px 0 10px;
}

.project-showcase__action .btn {
  min-width: 260px;
  height: 54px;
  border-radius: 14px;
  background: rgba(91, 101, 123, 0.38);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  font-size: 16px;
}

.project-detail-page .project-detail {
  position: relative;
  padding: 28px 0 34px;
}

.project-detail-page .project-detail::before {
  content: "";
  position: absolute;
  left: -180px;
  top: 320px;
  width: 420px;
  height: 640px;
  background: radial-gradient(circle, rgba(42, 93, 255, 0.48) 0%, rgba(42, 93, 255, 0.16) 40%, rgba(3, 4, 16, 0) 72%);
  pointer-events: none;
}

.project-detail__container {
  width: min(1520px, 95vw);
  max-width: none;
}

.project-detail__intro {
  max-width: 1080px;
  margin: 10px auto 46px;
  padding: 20px 34px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(35, 40, 60, 0.62);
  color: rgba(243, 246, 251, 0.8);
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
}

.project-detail__hero {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.project-detail__visual {
  padding-top: 18px;
}

.project-detail__image-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(109, 149, 232, 0.52);
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.32);
}

.project-detail__image-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.project-detail__content {
  display: grid;
  gap: 34px;
  padding-top: 4px;
}

.project-detail__badges {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  align-items: center;
}

.project-detail__badge {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.project-detail__badge--accent {
  background: linear-gradient(180deg, rgba(255, 154, 75, 0.85) 0%, rgba(244, 124, 46, 0.85) 100%);
  color: #ffffff;
  min-width: 264px;
  box-shadow: 0 14px 28px rgba(244, 124, 46, 0.18);
}

.project-detail__badge--soft {
  background: linear-gradient(180deg, #8ea6dc 0%, #7088c3 100%);
  color: #ffffff;
  min-width: 468px;
  box-shadow: 0 14px 28px rgba(112, 136, 195, 0.18);
}

.project-detail__description {
  max-width: none;
  width: 100%;
  min-height: 224px;
  margin-top: 75px;
  padding: 44px 48px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, rgba(13, 15, 28, 0.96) 0%, rgba(63, 92, 145, 0.9) 100%);
  color: #ffffff;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.project-detail--service-1 .project-detail__description {
  min-height: 320px;
  margin-top: 54px;
  padding: 34px 38px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.project-detail--service-1 .project-detail__badge--soft {
  min-width: 560px;
  font-size: 18px;
  padding: 0 24px;
  white-space: nowrap;
}

.project-detail--service-1 .project-detail__features {
  margin-top: 10px;
}

.project-detail--service-1 .detail-feature {
  min-height: 154px;
  padding: 22px 24px;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
}

.project-detail--service-1 .detail-feature__num {
  font-size: 50px;
}

.project-detail--service-1 .detail-feature p {
  font-size: 15px;
  line-height: 1.45;
}

.project-detail--service-2 .project-detail__description {
  min-height: 224px;
  margin-top: 75px;
  padding: 44px 48px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.project-detail--service-2 .project-detail__content {
  min-width: 0;
}

.project-detail--service-2 .project-detail__badge--soft {
  min-width: 0;
  width: min(100%, 560px);
  font-size: 16px;
  line-height: 1.25;
  padding: 0 24px;
}

.project-detail--service-2 .project-detail__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.project-detail--service-2 .detail-feature {
  min-height: 154px;
  padding: 22px 24px;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
}

.project-detail--service-2 .detail-feature__num {
  font-size: 50px;
}

.project-detail--service-2 .detail-feature p {
  font-size: 15px;
  line-height: 1.45;
}

.project-detail__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: -18px;
  margin-left: 24px;
}

.detail-feature {
  min-height: 100px;
  border-radius: 18px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.detail-feature--light {
  background: linear-gradient(90deg, rgba(249, 249, 249, 0.96) 0%, rgba(226, 228, 233, 0.96) 100%);
  color: rgba(32, 37, 49, 0.82);
}

.project-detail__features .detail-feature:first-child,
.project-detail__features .detail-feature:nth-child(4),
.project-detail__features .detail-feature:nth-child(5) {
  background: linear-gradient(90deg, rgba(249, 249, 249, 0.85) 0%, rgba(226, 228, 233, 0.85) 100%);
}

.detail-feature--dark {
  background:
    radial-gradient(circle at left center, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(90deg, rgba(55, 79, 127, 0.96) 0%, rgba(15, 16, 27, 0.94) 100%);
}

.detail-feature--dark-blue {
  background: linear-gradient(90deg, rgba(15, 16, 27, 0.96) 0%, rgba(55, 79, 127, 0.96) 100%);
}

.detail-feature__num {
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
  color: #1d50bf;
  text-align: center;
}

.detail-feature--dark .detail-feature__num,
.detail-feature--dark-blue .detail-feature__num {
  color: #ffffff;
}

.detail-feature p {
  font-size: 18px;
  line-height: 1.35;
  color: inherit;
}

.project-detail__cta-link {
  display: flex;
  justify-content: center;
  margin: 42px 0 18px;
}

.project-detail__cta-link .btn {
  min-width: 284px;
  height: 56px;
  border-radius: 14px;
  background: rgba(91, 101, 123, 0.38);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  font-size: 16px;
}

.project-detail--compact .project-detail__container {
  width: min(1520px, 95vw);
}

.project-detail--compact .project-detail__intro {
  max-width: 1080px;
  margin: 10px auto 46px;
  padding: 20px 34px;
  border-radius: 24px;
  font-size: 18px;
  line-height: 1.55;
}

.project-detail--compact .project-detail__hero {
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 56px;
}

.project-detail--compact .project-detail__visual {
  padding-top: 18px;
}

.project-detail--compact .project-detail__image-frame {
  border-radius: 24px;
}

.project-detail--compact .project-detail__image-frame img {
  aspect-ratio: 1 / 1;
}

.project-detail--compact .project-detail__content {
  gap: 34px;
  padding-top: 4px;
}

.project-detail--compact .project-detail__badges {
  gap: 18px;
  flex-wrap: nowrap;
}

.project-detail--compact .project-detail__badge {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 14px;
  font-size: 20px;
}

.project-detail--compact .project-detail__badge--accent {
  min-width: 264px;
}

.project-detail--compact .project-detail__badge--soft {
  min-width: 468px;
}

.project-detail--compact .project-detail__description {
  max-width: none;
  width: 100%;
  min-height: 224px;
  padding: 44px 48px;
  margin-top: 75px;
  border-radius: 24px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
}

.project-detail--compact .project-detail__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: -18px;
  margin-left: 24px;
}

.project-detail--compact .detail-feature {
  min-height: 100px;
  border-radius: 18px;
  padding: 22px 28px;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.project-detail--compact .detail-feature:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 520px;
  width: 100%;
  justify-self: center;
}

.project-detail--compact .detail-feature__num {
  font-size: 58px;
}

.project-detail--compact .detail-feature p {
  font-size: 18px;
  line-height: 1.35;
}

.project-detail--compact .project-detail__cta-link {
  margin: 42px 0 18px;
}

.project-detail--compact .project-detail__cta-link .btn {
  min-width: 284px;
  height: 56px;
  border-radius: 14px;
  font-size: 16px;
}

.project-detail--substations .project-detail__container {
  width: min(1520px, 95vw);
}

.project-detail--generators .project-detail__container {
  width: min(1520px, 95vw);
}

.project-detail--substations .project-detail__hero {
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.project-detail--generators .project-detail__hero {
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.project-detail--substations .project-detail__visual {
  padding-top: 18px;
}

.project-detail--generators .project-detail__visual {
  padding-top: 18px;
}

.project-detail--substations .project-detail__image-frame {
  border-radius: 24px;
}

.project-detail--generators .project-detail__image-frame {
  border-radius: 24px;
}

.project-detail--substations .project-detail__image-frame img {
  aspect-ratio: 1 / 1;
}

.project-detail--generators .project-detail__image-frame img {
  aspect-ratio: 1 / 1;
}

.project-detail--substations .project-detail__content {
  gap: 34px;
  padding-top: 4px;
}

.project-detail--generators .project-detail__content {
  gap: 34px;
  padding-top: 4px;
}

.project-detail--substations .project-detail__badges {
  gap: 18px;
}

.project-detail--generators .project-detail__badges {
  gap: 18px;
}

.project-detail--substations .project-detail__badge {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 20px;
}

.project-detail--generators .project-detail__badge {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 20px;
}

.project-detail--substations .project-detail__badge--accent {
  min-width: 264px;
}

.project-detail--generators .project-detail__badge--accent {
  min-width: 264px;
}

.project-detail--substations .project-detail__badge--soft {
  min-width: 468px;
  white-space: nowrap;
}

.project-detail--generators .project-detail__badge--soft {
  min-width: 468px;
}

.project-detail--substations .project-detail__description {
  max-width: none;
  width: 100%;
  min-height: 0;
  margin-top: 60px;
  padding: 34px 38px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.project-detail--generators .project-detail__description {
  max-width: none;
  width: 100%;
  min-height: 320px;
  margin-top: 54px;
  padding: 34px 38px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.project-detail--substations .project-detail__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: none;
  margin: 10px 0 0 24px;
  padding-left: 0;
}

.project-detail--generators .project-detail__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: none;
  margin: 10px 0 0 24px;
  padding-left: 0;
}

.project-detail--substations .detail-feature {
  min-height: 154px;
  padding: 22px 24px;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  border-radius: 18px;
}

.project-detail--generators .detail-feature {
  min-height: 154px;
  padding: 22px 24px;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  border-radius: 18px;
}

.project-detail--substations .detail-feature:nth-child(1) {
  margin-left: 0;
}

.project-detail--generators .detail-feature:nth-child(1) {
  margin-left: 0;
}

.project-detail--generators .detail-feature:nth-child(3) {
  grid-column: auto;
  max-width: none;
  justify-self: stretch;
  margin-top: 0;
}

.project-detail--substations .detail-feature__num {
  font-size: 50px;
}

.project-detail--generators .detail-feature__num {
  font-size: 50px;
}

.project-detail--substations .detail-feature p {
  font-size: 15px;
  line-height: 1.45;
}

.project-detail--generators .detail-feature p {
  font-size: 15px;
  line-height: 1.45;
}

.project-detail--substations .project-detail__cta-link {
  margin: 42px 0 18px;
}

.project-detail--generators .project-detail__cta-link {
  margin: 42px 0 18px;
}

.project-detail--substations .project-detail__cta-link .btn {
  min-width: 284px;
  height: 56px;
  border-radius: 14px;
  font-size: 16px;
  background: rgba(91, 101, 123, 0.38);
}

.project-detail--generators .project-detail__cta-link .btn {
  min-width: 284px;
  height: 56px;
  border-radius: 14px;
  font-size: 16px;
  background: rgba(91, 101, 123, 0.38);
}

.project-detail--renewable .project-detail__description {
  max-width: none;
  width: 100%;
  min-height: 320px;
  margin-top: 54px;
  padding: 34px 38px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.project-detail--renewable .project-detail__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: none;
  margin: 10px 0 0 24px;
  padding-left: 0;
}

.project-detail--renewable .detail-feature {
  min-height: 154px;
  padding: 22px 24px;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  border-radius: 18px;
}

.project-detail--renewable .detail-feature:nth-child(1) {
  margin-left: 0;
}

.project-detail--renewable .detail-feature__num {
  font-size: 50px;
}

.project-detail--renewable .detail-feature p {
  font-size: 15px;
  line-height: 1.45;
}

.project-detail--laboratory .project-detail__description {
  max-width: none;
  width: 100%;
  min-height: 320px;
  margin-top: 54px;
  padding: 34px 38px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.project-detail--laboratory .project-detail__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: none;
  margin: 10px 0 0 24px;
  padding-left: 0;
}

.project-detail--laboratory .detail-feature {
  min-height: 154px;
  padding: 22px 24px;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  border-radius: 18px;
}

.project-detail--laboratory .detail-feature:nth-child(1) {
  margin-left: 0;
}

.project-detail--laboratory .detail-feature__num {
  font-size: 50px;
}

.project-detail--laboratory .detail-feature p {
  font-size: 15px;
  line-height: 1.45;
}

.projects-page-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.projects-catalog-list {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: var(--projects-pad);
  border-top: 1px solid rgba(230, 238, 255, 0.54);
  border-bottom: 1px solid rgba(230, 238, 255, 0.54);
}

.projects-catalog-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--projects-pad) + var(--projects-info-col));
  width: 1px;
  background: rgba(230, 238, 255, 0.58);
  pointer-events: none;
}

.projects-catalog-list::after {
  display: none;
}

.catalog-project {
  position: relative;
  display: grid;
  grid-template-columns: var(--projects-info-col) minmax(0, 1fr);
  align-items: center;
  min-height: var(--project-row-height);
  scroll-margin-top: 120px;
  background:
    radial-gradient(circle at 12% 50%, rgba(24, 73, 178, 0.18) 0%, rgba(24, 73, 178, 0.06) 22%, rgba(3, 4, 16, 0) 46%),
    linear-gradient(180deg, rgba(4, 7, 24, 0.72) 0%, rgba(3, 4, 16, 0.9) 100%);
}

.catalog-project::before,
.catalog-project::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(230, 238, 255, 0.58);
  pointer-events: none;
}

.catalog-project::before {
  left: var(--projects-pad);
}

.catalog-project::after {
  right: var(--projects-pad);
}

.catalog-project + .catalog-project {
  border-top: 1px solid rgba(230, 238, 255, 0.48);
}

.catalog-project__info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 54px;
  padding: 66px 70px 58px 88px;
}

.catalog-project__title {
  max-width: 640px;
  font-size: clamp(42px, 3.8vw, 62px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.catalog-project__accent {
  width: 244px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #95b7f7 0%, #8cadf0 100%);
  box-shadow: 0 0 24px rgba(142, 173, 245, 0.18);
}

.catalog-project__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 620px);
  min-height: 74px;
  padding: 14px 26px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.01);
  color: rgba(243, 246, 251, 0.9);
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
  transition: 0.2s ease;
}

.catalog-project__button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.92);
}

.catalog-project__media {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 44px 34px 44px 72px;
}

.catalog-project__frame {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 6px solid #93b6f8;
  background: #d8d8d8;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.catalog-project__frame img {
  width: 100%;
  aspect-ratio: 1.74 / 1;
  object-fit: cover;
  display: block;
  background: #d8d8d8;
}

.projects-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 26px;
}

.projects-pagination__item {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(243, 246, 251, 0.74);
  transition: 0.2s ease;
}

.projects-pagination__item:hover,
.projects-pagination__item.is-active {
  background: rgba(103, 143, 255, 0.16);
  border-color: rgba(132, 167, 255, 0.42);
  color: #ffffff;
}

.site-footer {
  padding: 60px 0 80px;
  background: transparent;
  border-top: none !important;
  position: relative;
  overflow: visible;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.site-footer .logo-badge {
  width: 90px;
  height: 90px;
}

.site-footer .logo-main,
.site-footer .logo-accent {
  font-size: 32px !important;
  line-height: 1;
}

.site-footer .logo {
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.site-footer .logo-text {
  align-items: flex-start;
}

.footer-brand {
  display: grid;
  gap: 10px;
  transform: translateX(-34px);
}

.footer-brand p {
  color: var(--muted);
  max-width: 220px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 30px;
  row-gap: 12px;
  justify-content: end;
}

.footer-col {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.3;
}

.footer-col h4 {
  color: var(--text);
  margin-bottom: 6px;
  font-size: 15px !important;
  font-weight: 600;
  line-height: 1.2;
}

.footer-col a,
.footer-col span {
  font-size: 14px !important;
  line-height: 1.3;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: #ffffff;
}

.footer-dots {
  position: absolute;
  right: -300px;
  bottom: -20px;
  width: 1700px;
  height: 850px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.footer-copy {
  margin-top: 60px;
  text-align: center;
  font-size: 13px;
  color: rgba(243, 246, 251, 0.7);
  position: relative;
  z-index: 2;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 220px;
  height: 55px;
}

.btn-primary {
  background: #2d4670;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(45, 70, 112, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn:hover,
.btn:focus-visible {
  transform: scale(1.05);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  padding: 8px 16px;
  font-size: 12px;
}

/* Override base pill style for project buttons */
.btn.btn-project {
  border-radius: 15px;
  padding: 0;
  width: 220px;
  height: 70px;
}

@media (max-width: 980px) {
  .header-shell,
  .header-inner {
    border-radius: 24px;
  }

  .header-inner {
    display: flex;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: auto;
    padding: 0 8px;
  }

  .lang {
    margin-left: auto;
  }

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

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

  .projects-panel {
    --projects-visible: 1;
    height: auto;
  }

  .projects-viewport {
    height: auto;
  }

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

  .about-page .about-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-page .about-hero-card {
    margin: 0 auto;
  }

  .about-page .about-cards {
    grid-template-columns: 1fr;
  }

  .project-detail__hero {
    grid-template-columns: 1fr;
  }

  .project-detail--substations .project-detail__hero,
  .project-detail--generators .project-detail__hero,
  .project-detail--renewable .project-detail__hero,
  .project-detail--laboratory .project-detail__hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-detail__visual {
    max-width: 460px;
    margin: 0 auto;
  }

  .project-detail__content {
    justify-items: center;
  }

  .project-detail__badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .project-detail__description {
    max-width: 100%;
  }

  .project-detail--service-1 .project-detail__badge--soft,
  .project-detail--service-2 .project-detail__badge--soft,
  .project-detail--substations .project-detail__badge--soft,
  .project-detail--generators .project-detail__badge--soft,
  .project-detail--renewable .project-detail__badge--soft,
  .project-detail--laboratory .project-detail__badge--soft {
    min-width: 0;
    width: 100%;
    white-space: normal;
  }

  .project-detail--service-1 .project-detail__description,
  .project-detail--service-2 .project-detail__description,
  .project-detail--substations .project-detail__description,
  .project-detail--generators .project-detail__description,
  .project-detail--renewable .project-detail__description,
  .project-detail--laboratory .project-detail__description {
    min-height: auto;
    margin-top: 26px;
  }

  .project-detail__features {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .project-detail--service-2 .project-detail__features,
  .project-detail--substations .project-detail__features,
  .project-detail--generators .project-detail__features,
  .project-detail--renewable .project-detail__features,
  .project-detail--laboratory .project-detail__features {
    grid-template-columns: 1fr;
    margin-left: 0;
    max-width: none;
    padding-left: 0;
  }

  .project-detail--compact .project-detail__badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .project-detail--compact .project-detail__features {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .project-detail--compact .detail-feature:nth-child(3) {
    grid-column: auto;
    max-width: none;
  }

  .project-detail--substations .detail-feature:nth-child(1) {
    margin-left: 0;
  }

  .project-detail--generators .detail-feature:nth-child(1) {
    margin-left: 0;
  }

  .project-detail--renewable .project-detail__features,
  .project-detail--laboratory .project-detail__features {
    margin: 10px 0 0;
  }

  .about-page .power-grid {
    grid-template-columns: 1fr;
  }

  .about-page .power-image {
    width: 100%;
    max-width: 620px;
    align-self: center;
    margin-top: 0;
    margin-right: 0;
  }

  .about-page .power-hands {
    position: static;
    display: block;
    margin: 20px auto 0;
  }

  .about-page .founder {
    grid-template-columns: 1fr;
  }

  .about-page .founder--right {
    grid-template-columns: 1fr;
  }

  .about-page .founder-photo {
    max-width: 420px;
    margin: 0 auto;
  }

  .projects-catalog-list::before,
  .projects-catalog-list::after {
    display: none;
  }

  .catalog-project {
    grid-template-columns: 1fr;
  }

  .projects-catalog-list {
    width: 100%;
    margin-left: 0;
    padding-inline: 0;
  }

  .catalog-project__info {
    align-items: center;
    text-align: center;
    padding: 28px 20px 16px;
  }

  .catalog-project__title {
    max-width: none;
  }

  .catalog-project__media {
    padding: 0 0 20px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(680px, calc(100vw - 24px));
  }

  .site-header {
    top: 8px;
  }

  .site-header .container {
    width: min(100%, calc(100vw - 16px));
  }

  .header-shell {
    border-radius: 28px;
  }

  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 28px;
  }

  .site-header .logo {
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
  }

  .site-header .logo-badge {
    width: 64px;
    height: 64px;
  }

  .site-header .logo-main,
  .site-header .logo-accent {
    font-size: 20px;
  }

  .nav {
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    padding: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease;
  }

  .header-shell.is-menu-open .nav {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    padding: 8px 0 2px;
    overflow: visible;
  }

  .nav-pill {
    width: 100%;
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .nav-toggle {
    display: grid;
    order: 1;
    flex: 0 0 auto;
  }

  .header-shell.is-menu-open .nav-toggle {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .lang {
    order: 2;
    margin-left: 0;
    margin-right: 0;
    flex: 0 0 auto;
  }

  .hero {
    min-height: 620px;
    margin-top: -160px;
    padding-top: 160px;
  }

  .hero-inner {
    padding: 200px 0 70px;
    transform: none;
  }

  .hero-content {
    max-width: none;
    transform: none;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 42px);
    white-space: normal;
  }

  .hero p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .btn {
    min-width: 150px;
  }

  .section {
    padding: 56px 0 38px;
  }

  .section-label {
    min-width: 0;
    max-width: 100%;
    width: auto;
    padding: 10px 18px;
    font-size: 18px;
    margin-bottom: 24px;
  }

  .about-grid {
    width: 100%;
    gap: 22px;
  }

  .about-logo {
    width: min(100%, 360px);
    min-height: auto;
  }

  .about-logo img {
    max-width: 100%;
    max-height: 320px;
  }

  .about-card {
    width: 100%;
    max-width: 560px;
    height: auto;
    padding: 24px 20px;
  }

  .about-card p {
    font-size: 16px;
  }

  .services-grid {
    gap: 22px;
  }

  .service-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .service-media img {
    height: clamp(290px, 62vw, 420px);
  }

  .service-label {
    left: 12px;
    right: 12px;
    bottom: 10px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .service-btn {
    width: min(100%, 260px);
  }

  .projects-panel {
    padding: 18px 16px 14px;
    border-radius: 20px;
  }

  .project-card {
    gap: 12px;
  }

  .project-media img {
    height: clamp(260px, 60vw, 360px);
  }

  .project-card h3 {
    text-align: center;
    font-size: 18px;
  }

  .btn-project {
    width: min(100%, 220px);
    height: 60px;
  }

  .project-next-btn {
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .standards-grid {
    gap: 14px;
  }

  .home-united {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .home-united__grid {
    gap: 22px;
  }

  .home-united__card {
    min-height: 220px;
    padding: 24px 24px 22px;
  }

  .home-united__card h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .home-united__card p {
    font-size: 15px;
  }

  .home-united__card--experience {
    min-height: 0;
  }

  .home-united__card--experience p {
    font-size: 14px;
    line-height: 1.48;
  }

  .home-united__card--professionalism {
    min-height: 0;
  }

  .home-united__card--professionalism p {
    font-size: 14px;
    line-height: 1.48;
  }

  .home-united__card--reputation {
    min-height: 0;
  }

  .home-united__card--reputation p {
    font-size: 14px;
    line-height: 1.48;
  }

  .standard-card {
    min-height: auto;
    padding: 18px;
  }

  .standard-card .standard-text {
    margin-top: 18px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    row-gap: 10px;
    justify-items: center;
  }

  .cta-visual {
    min-height: auto;
  }

  .cta-image {
    width: min(100%, 320px);
    height: min(320px, calc(100vw - 72px));
    background-size: contain;
  }

  .cta-form {
    width: min(100%, 320px);
    padding: 8px 0 0;
  }

  .cta-form input,
  .cta-form select,
  .cta-form button {
    width: 100%;
  }

  .cta-form button {
    justify-self: stretch;
    justify-content: center;
    padding-left: 0;
  }

  .cta-hands img {
    width: min(100%, 360px);
    height: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    justify-items: center;
    transform: none;
  }

  .site-footer .logo {
    justify-content: center;
  }

  .footer-columns {
    width: 100%;
    justify-content: stretch;
    column-gap: 18px;
    row-gap: 20px;
  }

  .footer-copy {
    margin-top: 34px;
  }

  .footer-dots {
    width: 900px;
    height: 450px;
    right: -360px;
    bottom: -40px;
    opacity: 0.75;
  }

  .about-page .about-hero {
    padding: 152px 0 48px;
  }

  .about-page .about-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-page .about-hero-grid {
    gap: 24px;
    max-width: 100%;
  }

  .about-page .about-hero-logo img {
    width: min(100%, 280px);
    height: auto;
  }

  .about-page .about-hero-card {
    width: 100%;
    max-width: 460px;
  }

  .about-page .about-cards {
    gap: 18px;
  }

  .about-page .about-card {
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .about-page .about-power {
    padding: 60px 0 44px;
  }

  .about-page .power-left h2 {
    font-size: 28px;
  }

  .about-page .power-right {
    align-items: center;
  }

  .about-page .power-challenges {
    width: 100%;
  }

  .about-page .power-image {
    max-width: 420px;
  }

  .about-page .power-hands {
    width: min(100%, 340px);
  }

  .about-page .about-founders {
    padding: 56px 0 42px;
  }

  .about-page .founder {
    gap: 24px;
    margin-bottom: 48px;
  }

  .about-page .founder-photo--asset {
    width: min(100%, 360px);
    height: 330px;
    border-radius: 34px;
    clip-path: inset(0 round 34px);
  }

  .about-page .founder-photo--asset::before {
    clip-path: inset(0 round 34px);
    border-radius: 0 0 34px 34px;
  }

  .about-page .founder-photo--asset .founder-asset--frame {
    border-radius: 34px;
    clip-path: inset(0 round 34px);
  }

  .about-page .founder-photo--asset .founder-asset--dots {
    width: 82%;
    right: 18px;
  }

  .about-page .founder-photo--asset .founder-asset--portrait {
    width: 255px;
    height: 255px;
    border-radius: 22px 22px 0 0;
  }

  .about-page .founder-photo--asset-right .founder-asset--dots-right {
    left: 18px;
  }

  .about-page .founder-info {
    width: 100%;
  }

  .about-page .founder-info h3 {
    font-size: 24px;
  }

  .about-page .founder-info p {
    font-size: 15px;
  }

  .project-showcase-page .project-showcase {
    padding: 148px 0 24px;
  }

  .project-showcase__top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-showcase__title-card {
    max-width: 480px;
    font-size: 24px;
  }

  .project-showcase__meta-line {
    flex-wrap: wrap;
  }

  .project-showcase__meta-arrow {
    min-width: 120px;
  }

  .project-showcase__description {
    max-width: 100%;
  }

  .project-showcase__gallery {
    grid-template-columns: 1fr 1fr;
  }

  .project-showcase__gallery-item--main {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .project-showcase__gallery-item:not(.project-showcase__gallery-item--main) {
    min-height: 220px;
  }

  .contacts-page .contacts-section {
    padding: 150px 0 22px;
  }

  .contacts-page .contacts-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .contacts-page .contacts-heading h1 {
    white-space: normal;
  }

  .contacts-page .contacts-heading__line {
    width: 100%;
  }

  .contacts-page .contacts-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contacts-page .contacts-card {
    max-width: 760px;
  }

  .contacts-page .contacts-meta {
    width: 100%;
    margin: 16px 0 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contacts-page .contacts-meta > .contacts-item:not(.contacts-item--phone) {
    margin-left: 0;
    top: 0;
  }

  .contacts-page .contacts-item--phone {
    justify-self: start;
    top: 0;
  }

  .contacts-page .contacts-socials {
    justify-content: flex-start;
    top: 0;
  }

  .projects-page .projects-catalog {
    padding: 118px 0 24px;
  }

  .projects-page-title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .catalog-project__info {
    gap: 28px;
  }

  .catalog-project__accent {
    width: 180px;
    height: 14px;
  }

  .catalog-project__button {
    width: min(100%, 320px);
    min-height: 60px;
    font-size: 18px;
  }

  .catalog-project__media {
    padding: 0 14px 18px;
  }

  .projects-pagination {
    flex-wrap: wrap;
    gap: 10px;
  }

  .project-detail-page .project-detail {
    padding: 118px 0 28px;
  }

  .project-detail__intro {
    margin-bottom: 28px;
    padding: 16px 18px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .projects-page-title {
    font-size: 20px;
  }

  .project-detail__intro {
    padding: 12px 16px;
    font-size: 12px;
  }

  .project-detail__badges {
    gap: 10px;
  }

  .project-detail__badge {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  .project-detail--service-2 .project-detail__badge,
  .project-detail--substations .project-detail__badge,
  .project-detail--generators .project-detail__badge,
  .project-detail--renewable .project-detail__badge,
  .project-detail--laboratory .project-detail__badge {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 12px 16px;
    font-size: 16px;
    text-align: center;
  }

  .project-detail--compact .project-detail__badge {
    font-size: 14px;
  }

  .project-detail__description {
    padding: 24px 22px;
    min-height: auto;
    font-size: 17px;
  }

  .project-detail--service-1 .project-detail__badge--soft,
  .project-detail--service-2 .project-detail__badge--soft,
  .project-detail--substations .project-detail__badge--soft,
  .project-detail--generators .project-detail__badge--soft,
  .project-detail--renewable .project-detail__badge--soft,
  .project-detail--laboratory .project-detail__badge--soft {
    font-size: 15px;
    padding: 14px 16px;
  }

  .project-detail--service-1 .project-detail__description,
  .project-detail--service-2 .project-detail__description,
  .project-detail--substations .project-detail__description,
  .project-detail--generators .project-detail__description,
  .project-detail--renewable .project-detail__description,
  .project-detail--laboratory .project-detail__description {
    padding: 22px 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .project-detail--service-1 .detail-feature,
  .project-detail--service-2 .detail-feature,
  .project-detail--substations .detail-feature,
  .project-detail--generators .detail-feature,
  .project-detail--renewable .detail-feature,
  .project-detail--laboratory .detail-feature {
    min-height: 132px;
    grid-template-columns: 60px minmax(0, 1fr);
    padding: 18px 18px;
  }

  .project-detail--service-1 .detail-feature__num,
  .project-detail--service-2 .detail-feature__num,
  .project-detail--substations .detail-feature__num,
  .project-detail--generators .detail-feature__num,
  .project-detail--renewable .detail-feature__num,
  .project-detail--laboratory .detail-feature__num {
    font-size: 40px;
  }

  .project-detail--service-1 .detail-feature p,
  .project-detail--service-2 .detail-feature p,
  .project-detail--substations .detail-feature p,
  .project-detail--generators .detail-feature p,
  .project-detail--renewable .detail-feature p,
  .project-detail--laboratory .detail-feature p {
    font-size: 13px;
    line-height: 1.4;
  }

  .project-detail--compact .project-detail__description {
    font-size: 14px;
    padding: 22px 20px;
  }

  .project-detail--substations .project-detail__badge--soft {
    white-space: normal;
  }

  .project-detail--substations .project-detail__description,
  .project-detail--generators .project-detail__description,
  .project-detail--renewable .project-detail__description,
  .project-detail--laboratory .project-detail__description {
    max-width: 100%;
  }

  .detail-feature {
    min-height: 88px;
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 18px 20px;
  }

  .detail-feature__num {
    font-size: 44px;
  }

  .detail-feature p {
    font-size: 15px;
  }

  .project-detail--compact .detail-feature {
    min-height: 74px;
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 14px 16px;
  }

  .project-detail--compact .detail-feature__num {
    font-size: 24px;
  }

  .project-detail--compact .detail-feature p {
    font-size: 11px;
  }

  .projects-page .projects-catalog {
    padding-top: 34px;
  }

  .catalog-project {
    min-height: auto;
  }

  .catalog-project__title {
    font-size: 22px;
  }

  .catalog-project__frame img {
    aspect-ratio: 1.65 / 1;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .home-united__grid {
    grid-template-columns: 1fr;
  }

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

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

  .about-page .about-pill {
    font-size: 14px;
    padding: 10px 18px;
  }

  .about-page .about-hero-card {
    padding: 22px;
  }

  .about-page .about-subtitle {
    font-size: 22px;
  }

  .header-inner {
    gap: 10px;
    padding: 10px;
  }

  .site-header .logo-badge {
    width: 56px;
    height: 56px;
  }

  .site-header .logo-main,
  .site-header .logo-accent {
    font-size: 18px;
  }

  .nav-pill {
    padding: 8px 12px;
    font-size: 11px;
  }

  .hero {
    min-height: 560px;
    margin-top: -170px;
    padding-top: 170px;
  }

  .hero-inner {
    padding: 188px 0 56px;
  }

  .hero h1 {
    font-size: 28px;
    white-space: normal;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 220px;
  }

  .section-label {
    font-size: 16px;
    padding: 10px 16px;
  }

  .about-card p {
    font-size: 15px;
  }

  .service-media img {
    height: 320px;
  }

  .project-media img {
    height: 260px;
  }

  .btn-project {
    width: min(100%, 200px);
    height: 54px;
    font-size: 11px;
  }

  .cta-image {
    width: 280px;
    height: 280px;
  }

  .cta-form {
    max-width: 320px;
  }

  .site-footer {
    padding: 44px 0 56px;
  }

  .footer-dots {
    display: none;
  }

  .about-page .about-hero {
    padding-top: 144px;
  }

  .about-page .about-hero-card,
  .about-page .about-card {
    max-width: 100%;
  }

  .about-page .power-left h2 {
    font-size: 24px;
  }

  .about-page .founder-photo--asset {
    width: min(100%, 320px);
    height: 300px;
  }

  .about-page .founder-photo--asset .founder-asset--portrait {
    width: 230px;
    height: 230px;
  }

  .contacts-page .contacts-section {
    padding-top: 138px;
  }

  .contacts-page .contacts-heading h1 {
    font-size: 24px;
  }

  .contacts-page .contacts-item,
  .contacts-page .contacts-social {
    font-size: 13px;
  }

  .contacts-page .contacts-item--phone {
    font-size: 16px;
  }

  .project-showcase-page .project-showcase {
    padding-top: 138px;
  }

  .project-showcase__page-title {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .project-showcase__title-card {
    font-size: 22px;
    padding: 22px 18px;
  }

  .project-showcase__meta-tag,
  .project-showcase__results-pill {
    min-height: 36px;
    font-size: 13px;
  }

  .project-showcase__meta-value,
  .project-showcase__meta-point,
  .project-showcase__description {
    font-size: 14px;
  }

  .project-showcase__gallery {
    grid-template-columns: 1fr;
  }

  .project-showcase__gallery-item--main,
  .project-showcase__gallery-item:not(.project-showcase__gallery-item--main) {
    grid-column: auto;
    min-height: auto;
  }

  .project-showcase__action .btn {
    min-width: min(100%, 240px);
    height: 50px;
    font-size: 14px;
  }

  .projects-page .projects-catalog,
  .project-detail-page .project-detail {
    padding-top: 110px;
  }

  .catalog-project__button {
    min-height: 56px;
    font-size: 16px;
  }
}
