:root {
  --bg: #f5f7fb;
  --bg-soft: #eef3f9;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --text: #111827;
  --text-soft: #5b6472;
  --line: #dde6f0;
  --line-strong: #d5dfeb;
  --navy: #0f172a;
  --navy-2: #16233d;
  --navy-3: #1b2a46;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --teal: #14b8a6;
  --teal-dark: #0f9687;
  --amber: #f59e0b;
  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 14px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.14);
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
}

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

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

button {
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.section {
  position: relative;
  padding: 78px 0;
}

.section-light {
  background: linear-gradient(180deg, #eef3f9 0%, #edf2f8 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--teal-dark);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1;
}

.section-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(20, 184, 166, 0.1);
  flex: 0 0 10px;
}

.section-heading h2 {
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -1px;
  margin: 0 0 14px;
}

.section-text {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  color: #fff;
  border: 1px solid var(--blue);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), #2563eb);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border: 1px solid #dbe4ee;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.btn-secondary:hover {
  background: #f8fafc;
}

.project-open-btn:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible,
.lightbox-thumb:focus-visible,
.menu-toggle:focus-visible,
.nav a:focus-visible,
.mobile-menu a:focus-visible,
.hero-service-card:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 3px;
}

/* HEADER */
.header {
  position: fixed;
  top: 14px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.25s ease;
}

.header-shell {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow:
    0 18px 36px rgba(7, 12, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    border-radius 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  transition: min-height 0.25s ease, padding 0.25s ease;
}

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

.logo-centered img {
  height: 34px;
  width: auto;
  display: block;
  transition: height 0.25s ease;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

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

.nav-right {
  justify-content: flex-end;
}

.nav a {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 8px;
  width: calc(100% - 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

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

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

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

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 18px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  color: #ffffff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 16px;
  font-weight: 700;
}

.mobile-menu.active {
  display: flex;
}

.header.scrolled {
  top: 10px;
}

.header.scrolled .header-shell {
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.94);
}

.header.scrolled .header-inner {
  min-height: 64px;
}

.header.scrolled .logo-centered img {
  height: 30px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg-1 {
  width: 260px;
  height: 260px;
  background: rgba(37, 99, 235, 0.14);
  top: 70px;
  left: -70px;
}

.hero-bg-2 {
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.12);
  right: -80px;
  top: 100px;
}

.hero-bg-3 {
  width: 240px;
  height: 240px;
  background: rgba(245, 158, 11, 0.08);
  left: 26%;
  bottom: -60px;
}

.hero-modular {
  padding: 148px 0 74px;
  background:
    radial-gradient(circle at 10% 18%, rgba(37, 99, 235, 0.14), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(20, 184, 166, 0.12), transparent 24%),
    radial-gradient(circle at 20% 85%, rgba(245, 158, 11, 0.08), transparent 24%),
    linear-gradient(180deg, #eef5fc 0%, #f4f8fd 100%);
}

.hero-top {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.hero-copy {
  min-width: 0;
}

.hero-copy-wide {
  max-width: 760px;
}

.hero-top-claim-only .hero-copy-wide {
  max-width: 900px;
}

.hero-top-claim-only h1 {
  margin: 0 0 22px;
  font-size: clamp(26px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -1.2px;
  font-weight: 750;
  max-width: 760px;
  color: var(--text);
}

.hero-top-claim-only h1 span {
  display: block;
  color: var(--blue);
}

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

.hero-modular-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.925fr 0.925fr;
  gap: 18px;
}

.hero-modular-grid-only {
  margin-top: 0;
}

.hero-service-card {
  position: relative;
  display: block;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.hero-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(15, 23, 42, 0.16);
  border-color: rgba(37, 99, 235, 0.22);
}

.hero-service-card-large {
  min-height: 420px;
}

.hero-service-image {
  position: absolute;
  inset: 0;
}

.hero-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.1) 0%, rgba(10, 18, 32, 0.82) 100%);
  z-index: 1;
}

.hero-service-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.hero-service-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-service-overlay h3 {
  font-size: 32px;
  line-height: 1.02;
  margin: 0 0 8px;
}

.hero-service-overlay p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

/* ABOUT */
.company-clean {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.company-clean-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 24px;
}

.company-clean-head-simple {
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 24px;
}

.company-clean-head-simple p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 860px;
}

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

.company-mini-card {
  padding: 20px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e3ebf4;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.company-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.07);
  border-color: rgba(37, 99, 235, 0.18);
}

.company-mini-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text);
}

.company-mini-card span {
  display: block;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* SERVICES */
.folder-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.folder-head h2 {
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 14px;
}

.folder-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
  margin: 0 0 20px;
}

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

.folder-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.folder-point span:first-child {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  margin-top: 1px;
}

.folder-grid {
  display: grid;
  gap: 20px;
}

.folder-card {
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.92));
  border: 1px solid #e3ebf4;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.folder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.16);
}

.folder-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.folder-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.12);
  font-size: 22px;
}

.folder-card h3 {
  font-size: 28px;
  line-height: 1.08;
  margin: 0 0 8px;
}

.folder-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 16px;
}

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

.folder-gallery img {
  width: 100%;
  height: 232px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

/* CTA */
.cta-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cta-copy h2 {
  font-size: 38px;
  line-height: 1.03;
  letter-spacing: -1px;
  margin: 0 0 12px;
}

.cta-copy p {
  margin: 0;
  color: rgba(255,255,255,0.76);
  max-width: 740px;
}

.cta-box .section-label {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.cta-box .section-label::before {
  background: var(--amber);
  box-shadow: 0 0 0 7px rgba(245, 158, 11, 0.16);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.cta-actions .btn-secondary {
  background: rgba(255,255,255,0.96);
}

/* PROJECTS */
.section-projects {
  background: linear-gradient(180deg, #f6f9fc 0%, #edf3f8 100%);
}

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

.project-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2eaf3;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.1);
  border-color: rgba(37, 99, 235, 0.18);
}

.project-card-image {
  position: relative;
  overflow: hidden;
}

.project-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.project-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.04);
}

.project-card-body {
  padding: 20px;
}

.project-type {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.project-card h3 {
  font-size: 30px;
  line-height: 1.02;
  margin: 0 0 12px;
}

.project-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.project-meta span {
  font-size: 14px;
  color: var(--text-soft);
}

.project-card p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 0 18px;
}

.project-open-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #3b82f6);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
  cursor: pointer;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.lightbox.active {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 14, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: min(100% - 34px, 1200px);
  margin: 28px auto;
  padding: 22px;
  border-radius: 28px;
  background: rgba(15, 19, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.lightbox-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 16px;
  padding-right: 56px;
}

.lightbox-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.lightbox-topbar h3 {
  font-size: 28px;
  line-height: 1.08;
  margin: 0;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.lightbox-stage {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 16px;
  align-items: stretch;
}

.lightbox-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #0f1319;
  height: 68vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}

.lightbox-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0f1319;
}

.lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.lightbox-thumbs {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.lightbox-thumb {
  width: 84px;
  height: 68px;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
  opacity: 0.72;
}

.lightbox-thumb.active {
  border-color: var(--blue);
  opacity: 1;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FOOTER */
.footer {
  background: radial-gradient(circle at top, #0c1526, #0a1220);
  color: rgba(255, 255, 255, 0.9);
  padding: 66px 0 22px;
  margin-top: 0;
}

.footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  margin-bottom: 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand,
.footer-grid,
.footer-column {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}

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

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: var(--blue);
}

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

.footer-column h3 {
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 14px;
}

.footer-column a,
.footer-column span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 4px;
  word-break: break-word;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

/* TABLET */
@media (max-width: 1100px) {
  .hero-modular-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-service-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .header {
    top: 12px;
  }

  .header.scrolled {
    top: 8px;
  }

  .header-inner {
    min-height: 68px;
    grid-template-columns: 1fr auto 1fr;
    padding: 0 18px;
  }

  .logo-centered img {
    height: 32px;
  }

  .nav a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-modular {
    padding: 136px 0 62px;
  }

  .company-clean-grid,
  .cta-box,
  .footer-top,
  .projects-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-actions {
    min-width: 0;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-label {
    font-size: 17px;
    min-height: 36px;
    padding: 0 14px;
    margin-bottom: 14px;
    gap: 10px;
  }

  .section-label::before {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.12);
    flex: 0 0 10px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-text {
    font-size: 16px;
  }

  .header {
    top: 10px;
  }

  .header.scrolled {
    top: 6px;
  }

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

  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 66px;
    padding: 0 16px;
  }

  .nav-left,
  .nav-right {
    display: none !important;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    z-index: 2;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 42px;
  }

  .logo-centered {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .logo-centered img {
    height: 26px;
    width: auto;
    max-width: 120px;
  }

  .mobile-menu {
    padding: 0 16px 16px;
  }

  .hero-modular {
    padding: 122px 0 50px;
  }

  .hero-top-claim-only h1 {
    font-size: clamp(28px, 9.5vw, 44px);
    line-height: 1.02;
  }

  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-modular-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-service-card,
  .hero-service-card-large {
    min-height: 280px;
    grid-column: auto;
    border-radius: 20px;
  }

  .hero-service-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-service-overlay h3 {
    font-size: 26px;
  }

  .hero-service-overlay p {
    font-size: 14px;
  }

  .btn {
    width: 100%;
    max-width: none;
  }

  .company-clean {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .company-clean-head-simple p {
    font-size: 16px;
  }

  .company-mini-card {
    padding: 18px;
    border-radius: 18px;
  }

  .company-mini-card strong {
    font-size: 17px;
  }

  .company-mini-card span {
    font-size: 14px;
  }

  .folder-head h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  .folder-text {
    font-size: 16px;
  }

  .folder-card {
    padding: 18px;
    border-radius: 20px;
  }

  .folder-card h3 {
    font-size: 24px;
  }

  .folder-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .folder-gallery img {
    height: 220px;
    border-radius: 16px;
  }

  .cta-box {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .cta-copy h2 {
    font-size: 32px;
  }

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

  .project-card-body {
    padding: 18px;
  }

  .project-card-image img {
    height: 228px;
  }

  .project-card h3 {
    font-size: 24px;
  }

  .lightbox-content {
    width: min(100% - 14px, 1200px);
    margin: 8px auto;
    padding: 16px;
    border-radius: 18px;
  }

  .lightbox-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-right: 48px;
  }

  .lightbox-topbar h3 {
    font-size: 24px;
  }

  .lightbox-stage {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .lightbox-image-wrap {
    height: 58vh;
    min-height: 260px;
  }

  .lightbox-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-thumb {
    width: 74px;
    height: 60px;
  }

  .footer {
    padding: 54px 0 20px;
  }

  .footer-brand {
    text-align: center;
  }

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

  .footer-logo img {
    height: 44px;
  }

  .footer-text {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

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

  .footer-column,
  .footer-bottom {
    text-align: center;
  }

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

img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
}