:root {
  /* Theme surfaces */
  --bg: #f6f3ef;
  --surface: #fffdfa;
  --surface2: #ebe6df;

  /* Corporate deep tones */
  --dark: #171717;
  --dark2: #8f3f00;

  /* Text colors */
  --text: #211f1d;
  --muted: #6d6761;
  --line: #ded9d1;

  /* Brand accents */
  --brand: #a94e00;
  --brand-dark: #7a3500;
  --brand-light: #ff8a00;
  --brand-soft: #fff0df;

  /* Fixed colors */
  --white: #ffffff;

  /* Shadows */
  --shadow: 0 24px 60px rgba(23, 23, 23, 0.12);
  --brand-shadow: 0 18px 45px rgba(169, 78, 0, 0.25);

  /* Layout */
  --r: 22px;
  --c: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
}
.container {
  width: min(calc(100% - 40px), var(--c));
  margin: auto;
}
h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
}
h1 {
  font-size: clamp(38px, 4vw, 65px);
}
h2 {
  font-size: clamp(34px, 4.5vw, 56px);
}
h3 {
  font-size: 23px;
}
p {
  margin: 0;
}
.section {
  padding: 100px 0;
}
.surface {
  background: var(--surface);
}
.dark {
  background: var(--dark);
  color: var(--white);
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}
.dark .eyebrow {
  color: var(--brand-light);
}
.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head p {
  color: var(--muted);
  font-size: 18px;
}
.dark .section-head p,
.dark .section-head h2 {
  color: var(--white);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  transition: 0.2s;
}
.btn-primary:hover {
  background: var(--dark2);
  border-color: var(--dark2);
  color: #fff;
  transform: translateY(-3px);
}
.btn-light {
  background: #fff;
  color: var(--dark);
}
.btn-outline {
  border-color: var(--line);
}
.btn-whatsapp {
  transition: 0.2s;
}
.btn-whatsapp i {
  color: #25d366;
  font-size: 25px;
  padding-right: 10px;
  transition: 0.2s;
}
.btn-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.btn-whatsapp:hover i {
  color: #fff;
}
.topbar {
  background: linear-gradient(90deg, #050505 0%, var(--dark) 58%, #4a2100 100%);
  color: #e8f2f1;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.topbar .container {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.topbar-left,
.topbar-right,
.topbar-link,
.topbar-badge,
.topbar-detail {
  display: flex;
  align-items: center;
}
.topbar-left,
.topbar-right {
  gap: 14px;
  min-width: 0;
  flex-wrap: wrap;
}
.topbar-left {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}
.topbar-right {
  justify-content: flex-end;
  margin-left: auto;
}
.topbar-badge {
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.topbar-detail,
.topbar-link {
  gap: 7px;
  white-space: nowrap;
}
.topbar-link {
  color: #f6fbfb;
  transition: 0.2s;
}
.topbar-link:hover {
  color: var(--brand-light);
}
.topbar i {
  color: var(--brand-light);
  font-size: 12px;
}
.topbar-badge i {
  color: #b9d0d2;
}
.topbar-address {
  max-width: 260px;
  overflow: hidden;
  color: #c6d4d6;
}
.topbar-address span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.topbar-social,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-social {
  padding-left: 2px;
}
.topbar-social a,
.footer-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s;
}
.topbar-social a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.topbar-social a:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
  color: var(--dark);
  transform: translateY(-1px);
}
.topbar-social i {
  color: currentColor;
  font-size: 13px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;

  background: rgba(246, 243, 239, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 800 20px Manrope;
}
.site-logo {
  display: block;
  width: 280px;
  height: auto;
}
.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  position: relative;
}
.logo-mark:after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid white;
  border-radius: 7px;
}
.menu {
  display: flex;
  gap: 27px;
  font-size: 14px;
  font-weight: 700;
  color: #435559;
}
.menu a:hover {
  color: var(--brand);
}
.mobile {
  display: none;
  border: 0;
  background: none;
  font-size: 26px;
}
.hero {
  padding: 82px 0 94px;
  background:
    linear-gradient(rgba(169, 78, 0, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 78, 0, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #f1ece5 0%, #fff8f0 100%);

  background-size:
    54px 54px,
    54px 54px,
    auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 68px;
  align-items: center;
}
.hero p {
  font-size: 19px;
  color: var(--muted);
  margin-top: 24px;
}
.actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.tag {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}
.visual {
  position: relative;
  min-height: 550px;
}
.visual img {
  position: absolute;
  inset: 0 0 44px 58px;
  width: calc(100% - 58px);
  height: calc(100% - 44px);
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.float {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 270px;
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.float small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}
.float strong {
  display: block;
  font: 800 22px Manrope;
  margin-top: 8px;
}
.brandbar {
  padding: 26px 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.partner-strip {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: center;
}
.partner-strip > b {
  font: 800 18px Manrope;
  color: var(--text);
  text-transform: uppercase;
}
.partner-slider {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partner-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: partner-slide 26s linear infinite;
}
.partner-slider:hover .partner-track {
  animation-play-state: paused;
}
.partner-logo {
  min-width: 190px;
  height: 68px;
  display: grid;
  place-items: center;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
}
.partner-logo img {
  max-width: 150px;
  max-height: 40px;
  object-fit: contain;
}
.partner-logo span {
  font: 800 19px Manrope;
  color: #839396;
  text-align: center;
  text-transform: uppercase;
}
@keyframes partner-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.services-cards {
  grid-template-columns: repeat(5, 1fr);
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: 0.25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.card img {
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 27px;
}
.card-date,
.post-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.card-date {
  margin-bottom: 14px;
}
.card-body p {
  color: var(--muted);
  margin-top: 13px;
}
.link {
  display: inline-block;
  margin-top: 22px;
  color: var(--brand);
  font-weight: 800;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}
.stat {
  padding: 38px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.stat:last-child {
  border: 0;
}
.stat strong {
  display: block;
  font: 800 54px Manrope;
}
.stat span {
  color: #c5d4d6;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img {
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.checks {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.check {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
}
.check i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 900;
}
.check p {
  color: var(--muted);
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
}
.step {
  min-height: 220px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}
.step h3 {
  margin-top: 48px;
}
.step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}
.step span {
  color: var(--brand);
  font-weight: 900;
}
.about-process .step h3 {
  margin-top: 36px;
}
.about-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.about-services span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
}
.projects {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
}
.stack {
  display: grid;
  gap: 22px;
}
.project {
  position: relative;
  min-height: 325px;
  border-radius: 24px;
  overflow: hidden;
}
.project.big {
  min-height: 672px;
}
.project img {
  position: absolute;
  height: 100%;
  object-fit: cover;
}
.project:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(23, 23, 23, 0.82));
}
.project div {
  position: absolute;
  z-index: 2;
  left: 27px;
  bottom: 25px;
  color: white;
}
.project h3 {
  font-size: 28px;
}
.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector {
  min-height: 150px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}
.sector b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}
.sector h3 {
  font-size: 18px;
  margin-top: 28px;
}
.cta {
  padding: 64px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  color: white;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 45px;
  align-items: end;
}
.cta h2 {
  color: white;
}
.cta p {
  margin-top: 17px;
  color: #d0dcde;
}
.cta .actions {
  justify-content: flex-end;
}
.page-hero {
  padding: 74px 0;
  background: linear-gradient(135deg, var(--surface2), #fff7ed);
  border-bottom: 1px solid var(--line);
}
.page-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: end;
}
.page-grid p {
  font-size: 18px;
  color: var(--muted);
}
.contact-hero {
  padding: 44px 0 76px;
  background: var(--surface2);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.breadcrumb a {
  color: var(--brand);
}
.breadcrumb i {
  font-size: 10px;
  color: #8fa0a3;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: end;
  margin-top: 44px;
}
.contact-hero h1 {
  margin-top: 16px;
}
.contact-hero p {
  color: var(--muted);
  font-size: 19px;
}
.contact-section {
  padding-top: 86px;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: stretch;
}
.contact-panel,
.contact-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px;
}
.contact-panel h2,
.contact-info h2 {
  margin-top: 14px;
  font-size: 34px;
}
.contact-form {
  margin-top: 28px;
}
.contact-info {
  background: linear-gradient(180deg, #fffaf4, var(--brand-soft));
  color: var(--text);
  display: flex;
  flex-direction: column;
  border-color: var(--line);
}
.contact-info .eyebrow {
  color: var(--brand);
}
.contact-info h2 {
  color: var(--text);
}
.contact-cards {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}
.contact-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.contact-card i {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
}
.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.contact-card strong {
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}
.contact-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
}
.contact-social span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.contact-social div {
  display: flex;
  gap: 10px;
}
.contact-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--brand);
  transition: 0.2s;
}
.contact-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.contact-whatsapp {
  width: 100%;
  margin-top: 18px;
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.44);
}
.contact-map-section {
  padding-top: 0;
}
.contact-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}
.content {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 48px;
}
.article,
.side,
.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
}
.article img {
  border-radius: 17px;
  margin-bottom: 26px;
}
.article h2 {
  font-size: 34px;
  margin-top: 30px;
}
.article p {
  color: #536467;
  margin-top: 14px;
}
.article ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: #536467;
}
.article li + li {
  margin-top: 8px;
}
.side-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
}
.side-links a:hover {
  color: var(--brand);
}
.service-detail-content h2:first-of-type {
  margin-top: 0;
}
.service-side {
  position: sticky;
  top: 112px;
}
.service-side h3 {
  margin-bottom: 18px;
}
.service-side .side-links {
  gap: 6px;
  margin-top: 0;
}
.service-side .side-links a {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px 10px 18px;
  border-radius: 12px;
  color: #52676b;
  font-weight: 700;
  transition: 0.2s;
}
.service-side .side-links a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
}
.service-side .side-links a:hover {
  background: var(--brand-soft);
  color: var(--brand);
  transform: translateX(3px);
}
.service-side .side-links a.active {
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
}
.service-side .side-links a.active:before {
  background: var(--brand);
}
.project-info-list span {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.project-info-list b {
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.field {
  display: grid;
  gap: 8px;
}
.full {
  grid-column: 1/-1;
}
.field input,
.field textarea,
.field select {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(169, 78, 0, 0.16);
}
.field textarea {
  min-height: 150px;
}
.footer {
  padding: 68px 0 28px;
  background:
    linear-gradient(
      180deg,
      #f5f1eb 0%,
      #e8e1d7 100%
    );
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
  gap: 48px;
}
.footer p,
.footer-links {
  color: var(--muted);
}
.footer-links {
  display: grid;
  gap: 10px;
  padding-top: 20px;
}
.footer-social {
  margin-top: 22px;
}
.footer-social a {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--brand);
}
.footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.footer-bottom {
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.65s;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 1000px) {
  .menu,
  .nav > .btn {
    display: none;
  }
  .mobile {
    display: block;
  }
  .menu.open {
    position: absolute;
    display: grid;
    left: 20px;
    right: 20px;
    top: 84px;
    padding: 22px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  .hero-grid,
  .section-head,
  .split,
  .cta-grid,
  .page-grid,
  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-services {
    grid-template-columns: repeat(2, 1fr);
  }
  .sectors {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .content {
    grid-template-columns: 1fr;
  }
  .service-side {
    position: static;
  }
  .cta .actions {
    justify-content: flex-start;
  }
}
@media (max-width: 1120px) {
  .topbar-detail:last-child,
  .topbar-address {
    display: none;
  }
}
@media (max-width: 900px) {
  .topbar .container {
    justify-content: center;
  }
  .topbar-left .topbar-detail {
    display: none;
  }
  .topbar-right {
    margin-left: 0;
  }
}
@media (max-width: 720px) {
  .topbar {
    display: none;
  }
  .section {
    padding: 74px 0;
  }
  .contact-hero {
    padding: 32px 0 58px;
  }
  .contact-hero-grid {
    gap: 24px;
    margin-top: 32px;
  }
  .contact-panel,
  .contact-info {
    padding: 26px;
  }
  .contact-info {
    order: -1;
  }
  .contact-panel h2,
  .contact-info h2 {
    font-size: 29px;
  }
  .hero {
    padding-top: 52px;
  }
  .visual {
    min-height: 400px;
  }
  .visual img {
    left: 20px;
    width: calc(100% - 20px);
  }
  .cards,
  .projects,
  .sectors,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .services-cards {
    grid-template-columns: 1fr;
  }
  .about-services {
    grid-template-columns: 1fr;
  }
  .project.big {
    min-height: 420px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta {
    padding: 40px 26px;
  }
  .full {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .partner-strip {
    grid-template-columns: 1fr;
  }
  .partner-logo {
    min-width: 160px;
  }
}
.menu {
  align-items: center;
}
.menu a,
.menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  transition: 0.2s;
}
.menu-link {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  cursor: pointer;
  padding: 0 10px;
}
.nav-strong {
  font-weight: 800;
  color: var(--text);
}
.menu a:hover,
.menu-link:hover,
.menu a.active,
.menu-link.active {
  background: var(--brand-soft);
  color: var(--brand);
}
.menu-item {
  position: relative;
}
.has-submenu > .menu-link:after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.submenu {
  position: absolute;
  left: 50%;
  top: calc(100% + 18px);
  width: 700px;
  max-width: calc(100vw - 40px);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: 0.2s;
  z-index: 40;
}
.submenu:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 20px;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.has-submenu.submenu-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.submenu a {
  min-height: 56px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #34484c;
  font-weight: 800;
  gap: 12px;
}
.submenu a:hover,
.submenu a.active {
  background: var(--brand-soft);
  color: var(--brand);
}
.submenu a.active span {
  background: var(--brand);
  color: #fff;
}
.submenu span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
}
.mobile {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--dark);
  background: var(--surface);
  border: 1px solid var(--line);
  line-height: 1;
  z-index: 55;
}
@media (max-width: 1000px) {
  .header.menu-active {
    z-index: 80;
  }
  .menu.open {
    position: fixed;
    inset: 12px;
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 82px 18px 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: auto;
  }
  .menu.open:before {
    content: "Menü";
    position: absolute;
    left: 20px;
    top: 22px;
    font: 800 22px Manrope;
    color: var(--dark);
  }
  .menu.open a,
  .menu.open .menu-link {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 0 14px;
    border-radius: 16px;
    background: var(--brand-soft);
    color: var(--text);
    font-size: 16px;
  }
  .menu.open a:hover,
  .menu.open .menu-link:hover {
    background: #f4faf9;
    color: var(--brand);
  }
  .menu-item {
    width: 100%;
  }
  .menu.open .submenu {
    position: static;
    width: 100%;
    max-width: none;
    padding: 8px 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    grid-template-columns: 1fr;
    gap: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .menu.open .submenu:before {
    display: none;
  }
  .menu.open .has-submenu.submenu-open .submenu {
    display: grid;
  }
  .menu.open .submenu a {
    min-height: 58px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 26px rgba(25, 46, 50, 0.07);
    justify-content: flex-start;
  }
  .mobile {
    display: block;
  }
  .nav {
    position: relative;
  }
  .nav > .btn {
    display: none;
  }
}
@media (max-width: 720px) {
  .logo {
    font-size: 17px;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
  }
  .menu.open {
    inset: 8px;
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 22px;
  }
  .menu.open .submenu a {
    font-size: 14px;
  }
  .submenu span {
    width: 34px;
    height: 34px;
  }
}
.mobile-menu-brand {
  display: none;
}
.mobile-menu-logo {
  display: block;
  width: 210px;
  height: auto;
}
@media (max-width: 1000px) {
  .header.menu-active:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 20, 0.68);
    z-index: 70;
  }
  .menu.open {
    inset: 0 0 0 auto;
    width: min(74vw, 480px);
    padding: 124px 72px 34px;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: -22px 0 45px rgba(13, 24, 27, 0.22);
    z-index: 75;
  }
  .menu.open:before {
    display: none;
  }
  .mobile-menu-brand {
    display: none;
  }
  .menu.open .mobile-menu-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 0 0 42px;
  }
  .menu.open a,
  .menu.open .menu-link {
    min-height: 66px;
    padding: 0;
    background: #fff;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    color: #2a3437;
    font-size: 22px;
    font-weight: 800;
    justify-content: space-between;
  }
  .menu.open a:hover,
  .menu.open .menu-link:hover {
    background: #fff;
    color: var(--brand);
  }
  .menu.open .has-submenu > .menu-link:after {
    width: 12px;
    height: 12px;
    border-color: #6d777a;
    border-width: 0 2px 2px 0;
    margin-right: 6px;
  }
  .menu.open .submenu {
    padding: 10px 0 4px;
    gap: 0;
  }
  .menu.open .submenu a {
    min-height: 48px;
    padding-left: 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    background: #fff;
    color: #536467;
    font-size: 15px;
    font-weight: 700;
  }
  .menu.open .submenu span {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 10px;
  }
  .header.menu-active .mobile {
    position: fixed;
    top: 0;
    right: min(74vw, 480px);
    width: 66px;
    height: 66px;
    border: 0;
    border-radius: 0;
    background: var(--dark);
    color: #fff;
    font-size: 38px;
    z-index: 90;
  }
  .header.menu-active .nav {
    position: static;
  }
}
@media (max-width: 720px) {
  .menu.open {
    width: 76vw;
    padding: 40px 34px 30px;
  }
  .header.menu-active .mobile {
    right: 76vw;
    width: 66px;
    height: 66px;
  }
  .menu.open .mobile-menu-brand {
    margin-bottom: 34px;
  }
  .menu.open a,
  .menu.open .menu-link {
    min-height: 62px;
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  .menu.open {
    width: 74vw;
    padding-left: 28px;
    padding-right: 28px;
  }
  .header.menu-active .mobile {
    right: 74vw;
    width: 62px;
    height: 62px;
    font-size: 34px;
  }
  .menu.open a,
  .menu.open .menu-link {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .header.menu-active {
    position: fixed;
    inset: 0;
    height: 100vh;
    height: 100dvh;
    z-index: 999;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }
  .header.menu-active .nav {
    width: 100%;
    min-height: 0;
  }
  .header.menu-active .logo,
  .header.menu-active .nav > .btn {
    display: none;
  }
  .header.menu-active:before {
    z-index: 1;
  }
  .header.menu-active .menu.open {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    height: 100vh;
    height: 100dvh;
    display: flex !important;
    overflow-y: auto;
    z-index: 2;
  }
  .header.menu-active .mobile {
    z-index: 3;
  }
}
