﻿:root {
  --bg: #041213;
  --bg-soft: #082022;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.08);
  --text: #e6efe7;
  --muted: #aec2c3;
  --primary: #17aeb4;
  --primary-2: #ff8f6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 400;
  letter-spacing: -0.01em;
  background:
    radial-gradient(circle at 18% 0%, rgba(23, 174, 180, 0.13), transparent 22%),
    radial-gradient(circle at 82% 8%, rgba(255, 143, 107, 0.09), transparent 22%),
    linear-gradient(180deg, #041314 0%, #061819 48%, #040d0e 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

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

::selection {
  background: rgba(23, 174, 180, 0.24);
  color: #fff;
}

.site-bg,
.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.site-bg {
  background:
    linear-gradient(120deg, rgba(23, 174, 180, 0.04), transparent 35%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 100%);
}

.site-noise {
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
}

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

.site-main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5, 16, 10, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-bar {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-logo,
.footer-logo {
  width: 180px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: rgba(230, 239, 231, 0.86);
  font-weight: 600;
  padding: 10px 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.header-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-btn,
.btn-primary {
  color: #06120b;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(23, 174, 180, 0.16);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.header-btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.section-pad {
  padding: 110px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03));
}

.section-light {
  background:
    radial-gradient(circle at top left, rgba(23, 174, 180, 0.08), transparent 22%),
    linear-gradient(180deg, #f5f2ea 0%, #ebe7db 100%);
  color: #13211e;
  --muted: #5d6e6b;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(10, 31, 31, 0.08);
  --shadow: 0 18px 40px rgba(17, 31, 34, 0.08);
}

.section-light .eyebrow {
  color: var(--primary);
}

.section-light .eyebrow::before {
  background: var(--primary);
}

.section-light .glass,
.section-light .card,
.section-light .solution-card,
.section-light .project-card,
.section-light .badge-card,
.section-light .gallery-card,
.section-light .logo-carousel {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(10, 31, 31, 0.08);
  box-shadow: 0 18px 40px rgba(17, 31, 34, 0.08);
}

.section-light .solution-card,
.section-light .project-card {
  background: rgba(255, 255, 255, 0.82);
}

.section-light .solution-copy h3,
.section-light .project-copy h3,
.section-light .stat-card strong,
.section-light .badge-card strong,
.section-light .impact-card strong,
.section-light .contact-card h3,
.section-light .contact-card h4,
.section-light .team-card h3,
.section-light .team-card p {
  color: #13211e;
}

.section-light .solution-copy ul,
.section-light .project-copy ul,
.section-light .impact-card span,
.section-light .stat-card span,
.section-light .badge-card span,
.section-light .contact-card p,
.section-light .contact-card a {
  color: #5d6e6b;
}

.section-light .text-link {
  color: #13211e;
}

.section-light .text-link::after {
  color: var(--primary);
}

.section-light .pill-link,
.section-light .pill,
.section-light .chips span {
  color: #13211e;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(10, 31, 31, 0.08);
}

.section-light .contact-info strong,
.section-light .contact-card strong {
  color: #13211e;
}

.section-light .contact-badge strong {
  color: #13211e;
}

.section-light .contact-badge span,
.section-light .contact-card h4 {
  color: var(--primary);
}

.section-light .contact-card .chips span {
  color: #13211e;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(19, 33, 30, 0.08);
}

.section-light .form-grid input,
.section-light .form-grid select,
.section-light .form-grid textarea,
.section-light .lead-form input,
.section-light .lead-form select,
.section-light .lead-form textarea {
  background: #ffffff;
  color: #13211e;
  border-color: rgba(19, 33, 30, 0.18);
  box-shadow: inset 0 0 0 1px rgba(19, 33, 30, 0.02);
}

.section-light .form-grid input::placeholder,
.section-light .form-grid textarea::placeholder,
.section-light .lead-form input::placeholder,
.section-light .lead-form textarea::placeholder {
  color: rgba(19, 33, 30, 0.66);
  opacity: 1;
}

.section-light .form-grid select option,
.section-light .lead-form select option {
  color: #13211e;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.85;
}

.section-head,
.page-hero-copy,
.contact-copy,
.location-copy,
.about-copy,
.hero-copy {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head h2,
.page-hero-copy h1,
.hero-copy h1,
.lead-form h2,
.career-shell h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 14px;
}

.section-head p,
.page-hero-copy p,
.hero-copy .lead,
.about-copy p,
.career-shell p,
.contact-copy p,
.location-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
  font-size: 1.02rem;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 28px;
}

.hero-slider,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  animation: kenburn 18s infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgb(4 16 9 / 52%) 0%, rgba(4, 16, 9, 0.62) 52%, rgba(4, 16, 9, 0.82) 100%),
    linear-gradient(180deg, rgba(4, 16, 9, 0.16) 0%, rgb(4 16 9 / 9%) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.page-hero-grid,
.about-grid,
.location-grid,
.contact-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
}

.page-hero-grid,
.about-grid,
.location-grid,
.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(3rem, 6vw, 3.8rem);
  margin-bottom: 20px;
  max-width: 10ch;
  line-height: 0.98;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.hero-copy .lead {
  font-size: 1.12rem;
  max-width: 52ch;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 22px;
}

.lead-form {
  padding: 26px;
}

.glass {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

.card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hero-image {
  position: relative;
  border-radius: 40px;
}

.hero-image img,
.page-hero-media img,
.solution-media img,
.project-card img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image img,
.page-hero-media img {
  min-height: 420px;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  padding: 12px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(7, 20, 13, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.floating-stat {
  position: absolute;
  padding: 14px 16px;
  min-width: 180px;
  border-radius: 20px;
  background: rgba(7, 20, 13, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.floating-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.floating-stat strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.55rem;
  color: #fff;
}

.stat-one {
  left: 24px;
  bottom: 20px;
}

.hero-mini-form h2,
.lead-form h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

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

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

.compact-form textarea,
.compact-form button,
.compact-form select,
.compact-form input {
  grid-column: span 2;
}

.compact-form input,
.compact-form select,
.compact-form textarea,
.lead-form input,
.lead-form select,
.lead-form textarea,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 12px 14px;
  outline: none;
}

.compact-form textarea,
.lead-form textarea,
.form-grid textarea {
  resize: vertical;
  min-height: 120px;
}

.compact-form input::placeholder,
.compact-form textarea::placeholder,
.lead-form input::placeholder,
.lead-form textarea::placeholder,
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: rgba(230, 239, 231, 0.6);
}

.stats-strip {
  margin-top: -72px;
  padding: 58px 0 68px;
  position: relative;
  z-index: 2;
}

.stats-strip .container {
  display: grid;
  gap: 24px;
}

.stats-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 760px;
}

.stats-intro h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #13211e;
}

.stats-intro p {
  margin: 0;
  max-width: 62ch;
  color: #5d6e6b;
  line-height: 1.74;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.stat-card,
.solution-card,
.project-card,
.gallery-card,
.logo-card,
.impact-card,
.team-card,
.location-card,
.contact-card,
.badge-card {
  border-radius: var(--radius-lg);
}

.stat-card {
  padding: 24px 20px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at top right, rgba(23, 174, 180, 0.08), transparent 32%);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.stat-card strong {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #13211e;
  line-height: 1;
}

.stat-card span {
  color: #5d6e6b;
  line-height: 1.55;
  max-width: 18ch;
}

.stat-card:nth-child(2n) {
  transform: translateY(10px);
}

.stat-card:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at top left, rgba(255, 143, 107, 0.1), transparent 30%);
}

.stat-card:nth-child(4n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at bottom right, rgba(23, 174, 180, 0.1), transparent 30%);
}

.solution-grid,
.project-grid,
.gallery-grid,
.impact-grid,
.team-grid {
  display: grid;
  gap: 18px;
}

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

.solution-card {
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.solution-media {
  aspect-ratio: 16 / 10;
}

.solution-copy {
  padding: 22px;
}

.solution-copy span,
.project-copy span {
  display: block;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.solution-copy h3,
.project-copy h3,
.team-card h3,
.location-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
}

.solution-copy ul,
.project-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: #fff;
  font-weight: 700;
}

.text-link::after {
  content: 'â†’';
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.about-copy h2,
.location-copy h2,
.contact-copy h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  margin: 0 0 18px;
}

.about-copy p + p {
  margin-top: 12px;
}

.about-links,
.value-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.pill-link,
.pill,
.chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 700;
}

.about-art {
  display: grid;
  gap: 16px;
}

.about-image img {
  min-height: 420px;
}

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

.badge-card {
  padding: 18px;
}

.badge-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  margin-bottom: 6px;
}

.badge-card span,
.impact-card span,
.team-card p {
  color: var(--muted);
}

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

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

.project-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-card img {
  aspect-ratio: 16 / 10;
}

.project-copy {
  padding: 20px 22px 24px;
}

.project-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.68;
}

.project-copy .project-tags {
  margin-top: 14px;
}

.project-copy strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

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

.gallery-card img {
  aspect-ratio: 1 / 1;
}

.gallery-card {
  overflow: hidden;
  background: transparent;
}

.gallery-carousel {
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.gallery-carousel__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.gallery-carousel__group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

.gallery-carousel .gallery-card {
  flex: 0 0 clamp(220px, 27vw, 360px);
  width: clamp(220px, 27vw, 360px);
}

.gallery-carousel .gallery-card img {
  width: 100%;
  height: auto;
}

.motion-band {
  padding-top: 96px;
  padding-bottom: 96px;
}

.motion-head {
  max-width: 820px;
}

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

.motion-card {
  padding: 16px;
  border-radius: 30px;
  overflow: hidden;
}

.motion-media {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 11;
  background: rgba(4, 18, 19, 0.86);
}

.motion-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.motion-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 4px 2px;
}

.motion-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.motion-copy strong {
  display: block;
  max-width: 13ch;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-align: right;
}

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

.logo-card {
  display: grid;
  place-items: center;
  padding: 18px;
  aspect-ratio: 1 / 1;
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
}

.logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-carousel {
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.logo-carousel__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.logo-carousel__group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
}

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

.impact-card {
  padding: 22px;
}

.impact-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 16px;
}

.impact-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

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

.team-card {
  padding: 22px;
  text-align: center;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(23, 174, 180, 0.2), rgba(255, 143, 107, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-card p {
  margin: 0;
}

.career-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
}
.career-shell h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 10px;
}

.career-shell p {
  max-width: 66ch;
  line-height: 1.76;
}

.project-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.project-cta > div {
  max-width: 720px;
}

.project-cta h2 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.project-cta p {
  margin: 0;
  max-width: 66ch;
  color: var(--muted);
  line-height: 1.76;
}

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

.page-hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
}

.page-hero-media img {
  min-height: 440px;
}

.contact-info {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.contact-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.contact-badge {
  padding: 18px 20px;
  border-radius: 24px;
}

.contact-badge span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-badge strong {
  display: block;
  font-family: 'Sora', sans-serif;
  color: #fff;
  line-height: 1.25;
}

.contact-info strong,
.contact-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.contact-info a,
.contact-card a,
.contact-info p,
.contact-card p {
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card h4 {
  margin: 18px 0 10px;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-card .chips {
  margin-bottom: 4px;
}

.lead-form {
  gap: 14px;
}

.bitrix-inline-form {
  width: 100%;
  min-height: 620px;
}

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

.form-grid textarea {
  grid-column: 1 / -1;
}

.success-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(23, 174, 180, 0.12);
  border: 1px solid rgba(23, 174, 180, 0.24);
  color: var(--primary);
  font-weight: 600;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 22px;
}

.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.location-card {
  padding: 22px;
}

.location-list {
  display: grid;
  gap: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06120b;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(23, 174, 180, 0.22);
  font-size: 1.8rem;
}

.site-footer {
  padding: 78px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 10, 6, 0.66);
}

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

.footer-brand p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 45ch;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-family: 'Sora', sans-serif;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a,
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.floating-whatsapp .social-icon {
  width: 28px;
  height: 28px;
}

.footer-social a:hover,
.social-link:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .stats-grid,
  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

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

  .gallery-carousel .gallery-card {
    flex-basis: clamp(180px, 32vw, 280px);
    width: clamp(180px, 32vw, 280px);
  }

  .gallery-carousel .gallery-card img {
    width: 100%;
    height: auto;
  }

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

  .motion-card {
    padding: 14px;
  }

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

@media (max-width: 960px) {
  .nav-bar {
    justify-content: space-between;
  }

  .nav-links,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    padding: 16px;
    margin: 0;
    flex-direction: column;
    gap: 12px;
    border-radius: 22px;
    background: rgba(5, 16, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .page-hero-grid,
  .about-grid,
  .location-grid,
  .contact-grid,
  .footer-grid,
  .project-cta,
  .career-shell {
    grid-template-columns: 1fr;
  }

  .hero-image img,
  .page-hero-media img {
    min-height: 400px;
  }

  .stats-grid,
  .solution-grid,
  .project-grid,
  .project-grid.compact,
  .project-info-grid,
  .gallery-grid,
  .logo-grid,
  .team-grid,
  .contact-info {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .stats-strip {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 84px 0;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .stats-grid,
  .solution-grid,
  .project-grid,
  .project-grid.compact,
  .project-info-grid,
  .gallery-grid,
  .logo-grid,
  .impact-grid,
  .team-grid,
  .contact-info,
  .form-grid,
  .compact-form,
  .about-badges,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .compact-form textarea,
  .compact-form button,
  .compact-form select,
  .compact-form input {
    grid-column: auto;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .section-head h2,
  .about-copy h2,
  .location-copy h2,
  .contact-copy h2,
  .lead-form h2,
  .project-cta h2,
  .career-shell h2 {
    letter-spacing: -0.03em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .header-btn {
    width: 100%;
  }

  .floating-stat {
    position: static;
    margin-top: 14px;
  }

  .hero-visual {
    display: grid;
    gap: 12px;
  }

  .hero-frame {
    order: 1;
  }

  .gallery-carousel {
    padding: 0;
  }

  .gallery-carousel__group {
    gap: 12px;
    padding-right: 12px;
  }

  .gallery-carousel .gallery-card {
    flex-basis: min(92vw, 320px);
    width: min(92vw, 320px);
    max-width: 320px;
  }

  .gallery-carousel .gallery-card img {
    width: 100%;
    height: 220px;
    max-height: 220px;
    object-fit: cover;
  }

  .motion-band {
    padding-top: 84px;
    padding-bottom: 84px;
  }

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

  .motion-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .motion-copy strong {
    max-width: none;
    text-align: left;
  }

  .project-cta,
  .career-shell {
    flex-direction: column;
    align-items: flex-start;
  }

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

@keyframes kenburn {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: scale(1.12);
  }
  45% {
    opacity: 0;
    transform: scale(1.16);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

