:root {
  --navy: #111111;
  --navy-light: #2a2a2a;
  --navy-dark: #000000;
  --gold: #db0000;
  --gold-light: #ff2a2a;
  --ink: #141414;
  --muted: #666666;
  --line: rgba(17, 17, 17, 0.12);
  --soft: #f6f6f6;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
}

section[id] {
  scroll-margin-top: 88px;
}

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

.topbar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.topbar .container,
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar .container {
  min-height: 40px;
}

.topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 78px;
  position: relative;
}

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

.brand img {
  width: clamp(54px, 6vw, 75px);
  height: clamp(54px, 6vw, 75px);
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: clamp(-15px, -1.2vw, -8px);
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
}

.brand-title {
  display: block;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-subtitle {
  display: block;
  color: rgba(17, 17, 17, 0.62);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  text-wrap: nowrap;
  min-width: 0;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-button {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 650;
  padding: 10px clamp(7px, 0.8vw, 11px);
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-button:hover {
  color: var(--gold);
  background: rgba(219, 0, 0, 0.07);
}

.dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  width: 230px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  color: rgba(17, 17, 17, 0.76);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.dropdown a:hover {
  color: var(--navy);
  background: rgba(219, 0, 0, 0.07);
}

.btn {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-light);
}

.btn-gold {
  color: var(--white);
  background: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(17, 17, 17, 0.06);
  cursor: pointer;
  position: relative;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.mobile-toggle {
  gap: 4px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel .container {
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  padding-top: 8px;
  padding-bottom: 12px;
}

.mobile-panel a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--navy);
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(17, 17, 17, 0.84), rgba(219, 0, 0, 0.2)), url("../images/hero-bg.png") center / cover;
}

.hero::after,
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(76px, 11vw, 108px) 0 clamp(42px, 7vw, 64px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(219, 0, 0, 0.08);
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
  margin-bottom: 16px;
}

.hero .eyebrow,
.dark-section .eyebrow {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.gold {
  color: var(--gold);
}

.hero p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions,
.trust-row,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-bottom: 70px;
}

.stat-number {
  color: var(--gold);
  font-size: 38px;
  font-weight: 850;
}

.stat-label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 78px;
  color: var(--white);
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.96), rgba(17, 17, 17, 0.9), rgba(219, 0, 0, 0.28)), var(--navy-dark);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.7;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
  min-width: 0;
}

.detail-panel h2,
.detail-panel h3 {
  margin-top: 0;
  color: var(--navy);
}

.detail-panel p {
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.75;
}

.detail-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  gap: 10px;
  color: rgba(17, 17, 17, 0.72);
  line-height: 1.55;
}

.detail-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.service-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.service-sidebar a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--navy);
  background: var(--white);
  font-weight: 750;
}

.service-sidebar a:hover,
.service-sidebar a.active {
  color: var(--white);
  border-color: var(--gold);
  background: var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.process-card {
  counter-increment: process;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  background: var(--white);
}

.process-card::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.section-soft {
  background: var(--soft);
}

.section-header {
  width: min(780px, 100%);
  margin: 0 auto 52px;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section-header p {
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-size: 18px;
  line-height: 1.65;
}

.dark-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.dark-section .section-header h2,
.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-header p {
  color: rgba(255, 255, 255, 0.62);
}

.dark-section > .container {
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

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

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
}

.caption-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--gold);
  font-size: 22px;
  font-weight: 850;
}

.content-copy h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.2;
}

.content-copy p {
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.75;
}

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

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}

.check-item::before,
.list-check::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  min-width: 0;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(219, 0, 0, 0.42);
  box-shadow: var(--shadow);
}

.card-body {
  padding: 24px;
  min-width: 0;
}

.service-image {
  position: relative;
  height: clamp(170px, 22vw, 220px);
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.card:hover .service-image img,
.gallery-card:hover img {
  transform: scale(1.06);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: rgba(17, 17, 17, 0.68);
  background: var(--white);
  font-size: 12px;
  font-weight: 750;
}

.badge.gold {
  border-color: transparent;
  color: var(--white);
  background: var(--gold);
}

.filter-btn.active {
  border-color: transparent;
  color: var(--white);
  background: var(--gold);
}

.badge.navy {
  border-color: transparent;
  color: var(--white);
  background: var(--navy);
}

.card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.25;
}

.card p {
  color: rgba(17, 17, 17, 0.62);
  line-height: 1.65;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.card li,
.list-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 9px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}

.card li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  color: var(--navy);
  background: rgba(17, 17, 17, 0.08);
  font-weight: 850;
}

.dark-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  min-width: 0;
}

.dark-card h3,
.card h3 {
  overflow-wrap: anywhere;
}

.dark-card p,
.card p {
  overflow-wrap: anywhere;
}

.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.58);
}

.dark-card .icon-box {
  color: var(--gold);
  background: rgba(219, 0, 0, 0.16);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -18px 0 42px;
}

.filter-btn {
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.72);
  background: var(--white);
  cursor: pointer;
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 750;
}

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy);
  font-size: 12px;
}

.project-details {
  display: none;
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
}

.project-card.is-expanded .project-details {
  display: block;
}

.ghost-btn {
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  padding: 0;
  font-weight: 750;
}

.ghost-btn:hover {
  color: var(--gold);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 54px;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  color: rgba(17, 17, 17, 0.42);
  background: var(--soft);
  font-weight: 800;
  text-align: center;
  padding: 12px;
  min-width: 0;
}

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

.gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  background: var(--navy);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 65%);
  opacity: 0;
  transition: opacity 180ms ease;
  text-align: left;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.modal.is-open {
  display: flex;
}

.modal-content {
  width: min(980px, 100%);
  max-height: 88vh;
}

.modal-content img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  font-size: 22px;
}

.career-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(17, 17, 17, 0.52);
  font-size: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.contact-list {
  display: grid;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.map-box {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: rgba(17, 17, 17, 0.42);
  background: rgba(17, 17, 17, 0.05);
  text-align: center;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
  min-width: 0;
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  outline: none;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.notice {
  display: none;
  margin-top: 14px;
  border-radius: 8px;
  padding: 12px;
  color: var(--navy);
  background: rgba(219, 0, 0, 0.18);
  font-weight: 700;
}

.notice.is-visible {
  display: block;
}

.footer {
  color: var(--white);
  background: var(--navy-dark);
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
  padding: 48px 0;
}

.footer-cta .container,
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-main {
  padding: 58px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 42px;
}

.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.52);
}

.footer a:hover {
  color: var(--gold);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer h4 {
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a,
.float-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.float-btn {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: var(--navy);
}

.whatsapp {
  left: 22px;
  right: auto;
  background: #111111;
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 28px, 1080px);
  }

  .desktop-nav {
    gap: 0;
  }

  .nav-link,
  .nav-button {
    font-size: 13px;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-cta,
  .topbar {
    display: none;
  }

  .mobile-toggle {
    display: grid;
    place-items: center;
  }

  .nav-inner {
    min-height: 68px;
  }

  .navbar {
    top: 0;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand > span {
    margin-left: -10px;
  }

  .card-grid.four,
  .card-grid.five,
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  section[id] {
    scroll-margin-top: 72px;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 76px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .hero p,
  .page-hero p,
  .section-header p {
    font-size: 16px;
  }

  .stats-grid,
  .split,
  .card-grid,
  .card-grid.two,
  .detail-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .card-grid.four,
  .card-grid.five,
  .process-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #industries .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-hero {
    padding: 74px 0 58px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .detail-panel,
  .form-card {
    padding: 22px;
  }

  .footer-main {
    padding: 42px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .section {
    padding: 56px 0;
  }

  .nav-inner {
    min-height: 62px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand > span {
    margin-left: -8px;
  }

  .brand-title {
    font-size: 14px;
  }

  .brand-subtitle {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9px;
  }

  .mobile-toggle {
    width: 40px;
    height: 40px;
  }

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

  .btn {
    width: 100%;
  }

  .stats-grid,
  .check-grid,
  .card-grid.three,
  .card-grid.four,
  .card-grid.five,
  .process-grid,
  .gallery-grid,
  .client-logo-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .dark-section .card-grid.five,
  #industries .card-grid.three {
    gap: 14px;
  }

  .card-grid.four,
  .card-grid.five,
  .card-grid.two,
  .card-grid.three,
  .gallery-grid {
    gap: 16px;
  }

  .card-body,
  .dark-card,
  .process-card {
    padding: 18px;
  }

  .dark-section .card-grid.five .dark-card,
  #industries .card-grid.three .card-body {
    padding: 16px;
  }

  .dark-section .card-grid.five h3,
  #industries .card-grid.three h3 {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.25;
  }

  .dark-section .card-grid.five p,
  #industries .card-grid.three p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-content {
    padding-top: 58px;
  }

  .hero h1,
  .page-hero h1,
  .section-header h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero p {
    margin-bottom: 22px;
  }

  .stat-number {
    font-size: 32px;
  }

  .image-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px;
  }

  .caption-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .service-image {
    height: 180px;
  }

  .contact-item {
    align-items: flex-start;
  }

  .career-row {
    flex-direction: column;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .float-btn {
    width: 42px;
    height: 42px;
    right: 14px;
    bottom: 14px;
  }

  .whatsapp {
    left: 14px;
  }
}

@media (max-width: 380px) {
  .brand-title {
    font-size: 12px;
  }

  .brand-subtitle {
    max-width: 120px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .mobile-panel a {
    padding: 11px 0;
    font-size: 14px;
  }
}
