@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #12324a;
  --navy-2: #071926;
  --graphite: #20272b;
  --ink: #11181d;
  --muted: #687b83;
  --mist: #f6faf8;
  --paper: #ffffff;
  --line: #dfe8e5;
  --gold: #b9984f;
  --teal: #2aa7a0;
  --sky: #69c6df;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform-origin: left;
}

.header,
.detailNav {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  border-bottom: 1px solid rgba(18, 50, 74, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.brand img {
  display: block;
  width: auto;
  height: 76px;
  max-width: 142px;
  object-fit: contain;
  filter: none;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}

.header nav a {
  opacity: 0.72;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.header nav a:hover {
  opacity: 1;
  color: var(--gold);
}

.headActions,
.languages {
  display: flex;
  align-items: center;
  gap: 10px;
}

.languages {
  padding: 7px 9px;
  border: 1px solid rgba(18, 50, 74, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.languages button {
  color: var(--navy);
  background: none;
  border: 0;
  font-size: 11px;
  opacity: 0.58;
  padding: 4px 5px;
  cursor: pointer;
}

.languages button.on {
  color: var(--gold);
  opacity: 1;
}

.iconLink,
.go {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 50, 74, 0.22);
  border-radius: 50%;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.iconLink:hover,
.go:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.menu,
.mobileNav {
  display: none;
}

.menu {
  color: var(--navy);
  background: none;
  border: 0;
  cursor: pointer;
}

.whatsappFloat {
  position: fixed;
  z-index: 90;
  right: 28px;
  bottom: 28px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 234, 0.9));
  border: 1px solid rgba(185, 152, 79, 0.38);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(18, 50, 74, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.whatsappFloat svg {
  width: 25px;
  height: 25px;
  color: var(--teal);
}

.whatsappFloat:hover {
  transform: translateY(-3px);
  background: #fff8e8;
  border-color: rgba(185, 152, 79, 0.72);
  box-shadow: 0 22px 52px rgba(18, 50, 74, 0.2);
}

.hero {
  position: relative;
  height: 88svh;
  min-height: 600px;
  overflow: hidden;
  color: var(--ink);
  background: #eaf3f2;
}

.heroBg,
.detailHeroBg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 38%, rgba(255, 255, 255, 0.12) 76%),
    url('/hero-industrial-v5.png') center / cover;
}

.hero .heroBg {
  animation: heroBreath 16s ease-in-out infinite alternate;
  will-change: transform;
}

.heroGrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 50, 74, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 50, 74, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  animation: gridDrift 18s linear infinite;
}

@keyframes heroBreath {
  from { transform: scale(1.01); }
  to { transform: scale(1.075) translate3d(-0.8%, -0.5%, 0); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 88px, 88px 0; }
}

.heroCopy {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 22svh 5vw 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.eyebrow {
  color: var(--navy);
}

.eyebrow span {
  width: 42px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.014em;
  font-feature-settings: "kern";
}

.hero h1 {
  margin: 24px 0 22px;
  font-size: 92px;
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.016em;
}

.heroCopy > p {
  max-width: 680px;
  margin: 0;
  color: #183743;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.primary {
  color: #101417;
  background: var(--gold);
  border: 1px solid var(--gold);
}

.primary.dark {
  margin-top: 34px;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(18, 50, 74, 0.22);
}

.heroFoot {
  position: absolute;
  z-index: 2;
  left: 5vw;
  right: 5vw;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #546b74;
  font-size: 11px;
}

.heroFoot a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}

.section {
  padding: 104px 6vw;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  background: var(--paper);
}

.kicker {
  margin-bottom: 26px;
  color: var(--teal);
}

.kicker.light {
  color: var(--teal);
}

.section h2,
.about h2,
.workflow h2,
.contact h2,
.detailBody h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.012em;
}

.lead {
  margin: 0;
  color: #314650;
  font-size: 27px;
  line-height: 1.48;
}

.proofLine {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--navy);
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #e8efed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metrics div {
  min-height: 148px;
  padding: 34px 3vw;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  color: var(--navy);
  font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.metrics span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.services {
  background: var(--mist);
}

.sectionTop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 56px;
}

.sectionTop > div {
  max-width: 760px;
}

.sectionTop > p,
.workflowIntro p,
.contact > div > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 14px;
}

.serviceMotion {
  min-width: 0;
  height: 100%;
}

.service {
  position: relative;
  height: 100%;
  min-height: 310px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  padding: 26px;
  color: #ffffff;
  background-color: var(--navy-2);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  isolation: isolate;
  overflow: hidden;
}

.service::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: -70% -45%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.2) 50%, transparent 58%);
  transform: translateX(-55%) rotate(8deg);
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
  pointer-events: none;
}

.service > * {
  position: relative;
  z-index: 1;
}

.service:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 152, 79, 0.8);
  box-shadow: 0 22px 52px rgba(10, 34, 53, 0.3);
}

.service:hover::before {
  transform: translateX(55%) rotate(8deg);
}

.service .num {
  color: #e5c674;
  font-size: 13px;
  font-weight: 700;
}

.service svg {
  color: #71ddd4;
}

.service strong {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.service h3 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.006em;
}

.service p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.68;
}

.service .go {
  align-self: end;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.serviceDetailImage {
  background-position: center;
  background-size: cover;
}

.workflow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 245, 0.9)),
    url('/hero-light-industrial.png') center / cover;
}

.workflowIntro p {
  margin-top: 24px;
  color: var(--muted);
}

.workflowSteps {
  display: grid;
  gap: 14px;
}

.workflowSteps article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 8px 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 50, 74, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(18, 50, 74, 0.07);
}

.workflowSteps b {
  grid-row: 1 / span 2;
  color: var(--gold);
}

.workflowSteps h3 {
  font-size: 22px;
}

.workflowSteps p {
  margin: 0;
  color: #536872;
  line-height: 1.65;
}

.requisites {
  background: var(--paper);
}

.detailsTable {
  border-top: 1px solid var(--line);
}

.detailRow {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detailRow span {
  color: var(--muted);
  font-size: 13px;
}

.detailRow strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  white-space: pre-line;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(185, 152, 79, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef7f5);
}

.contact h2 {
  margin-bottom: 24px;
}

.contact > div > p {
  color: var(--muted);
}

.contactMeta {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.contactMeta a,
.contactMeta span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2b4550;
  font-size: 14px;
}

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

.contact form {
  display: grid;
  gap: 22px;
}

.contact label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.contact input,
.contact textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(18, 50, 74, 0.2);
  outline: none;
}

.contact textarea {
  min-height: 104px;
  resize: vertical;
}

.contact button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 20px;
  color: #11181d;
  background: var(--gold);
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  padding: 60px 6vw 30px;
  color: var(--ink);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footerBrand {
  justify-self: start;
}

footer p {
  max-width: 620px;
  margin: 0;
  color: #536872;
  font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.footerBottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #71858d;
  font-size: 13px;
}

.detail {
  min-height: 100vh;
  background: var(--mist);
}

.detailNav {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
}

.detailBack {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.detailLanguages {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 6px;
  border: 1px solid rgba(18, 50, 74, 0.14);
  border-radius: 10px;
}

.detailLanguages a {
  padding: 5px 7px;
  color: var(--navy);
  font-size: 11px;
  opacity: 0.55;
}

.detailLanguages a.on {
  color: var(--gold);
  opacity: 1;
}

.detailHero {
  position: relative;
  min-height: 520px;
  padding: 132px 6vw 80px;
  overflow: hidden;
  color: var(--ink);
  background: #eef7f5;
}

.detailHero > *:not(.detailHeroBg) {
  position: relative;
  z-index: 2;
}

.detailHero span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.detailHero h1 {
  max-width: 980px;
  margin: 24px 0;
  font-size: 74px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.014em;
}

.detailHero p {
  max-width: 720px;
  margin: 0;
  color: #435d68;
  font-size: 19px;
  line-height: 1.72;
}

.detailBody {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  padding: 96px 7vw;
  background: var(--paper);
}

.detailBody p {
  margin: 0 0 34px;
  color: #435d68;
  font-size: 18px;
  line-height: 1.85;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.step b {
  color: var(--gold);
  font-size: 12px;
}

.step svg {
  color: var(--teal);
}

.modalOpen {
  overflow: hidden;
}

.requestModal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 25, 38, 0.72);
  backdrop-filter: blur(14px);
  animation: modalFade 0.25s ease both;
}

.requestModalPanel {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(185, 152, 79, 0.45);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  animation: modalRise 0.38s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.requestModalPanel h2 {
  margin: 0 52px 28px 0;
  font-size: 42px;
}

.requestModalClose {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.requestModal form {
  display: grid;
  gap: 18px;
}

.requestModal label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.requestModal input,
.requestModal textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bdceca;
  outline: none;
  font-size: 15px;
}

.requestModal input:focus,
.requestModal textarea:focus {
  border-color: var(--gold);
}

.requestModal textarea {
  min-height: 92px;
  resize: vertical;
}

.requestModal form > button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding: 0 20px;
  color: #11181d;
  background: var(--gold);
  border: 0;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.experience {
  background: #edf3f1;
}

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

.experienceCard {
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  color: var(--ink);
  text-align: left;
  padding: 28px;
  background: var(--paper);
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.experienceCard.hasImages {
  color: #fff;
  cursor: pointer;
}

.experienceCard.hasImages:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(7, 25, 38, 0.2);
}

.experienceCard > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.experienceGrid h3 {
  margin: 42px 0 14px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.008em;
}

.experienceGrid p {
  margin: 0;
  color: #536872;
  line-height: 1.72;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.experienceCard > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.experienceGrid b {
  padding: 7px 10px;
  color: var(--navy);
  background: #e7f0ef;
  border-radius: 999px;
  font-size: 11px;
}

.experienceCard.hasImages p { color: rgba(255, 255, 255, 0.82); }
.experienceCard.hasImages b { color: #fff; background: rgba(255, 255, 255, 0.14); backdrop-filter: blur(8px); }

.experienceModal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(4, 15, 24, 0.88);
  backdrop-filter: blur(14px);
  animation: modalFade 0.25s ease;
}

.experienceGallery {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100svh - 56px);
  padding: 18px;
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.experienceGalleryStage { position: relative; height: min(64vh, 650px); overflow: hidden; border-radius: 12px; background: #081c2a; }
.experienceGalleryStage > img { width: 100%; height: 100%; object-fit: contain; }
.experienceGalleryClose, .experienceGalleryPrev, .experienceGalleryNext { position: absolute; z-index: 2; display: grid; place-items: center; width: 44px; height: 44px; color: #fff; background: rgba(7, 25, 38, 0.72); border-radius: 50%; backdrop-filter: blur(8px); }
.experienceGalleryClose { top: 28px; right: 28px; }
.experienceGalleryPrev, .experienceGalleryNext { top: 50%; transform: translateY(-50%); }
.experienceGalleryPrev { left: 30px; }
.experienceGalleryNext { right: 30px; }
.experienceGalleryInfo { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 18px 4px 8px; }
.experienceGalleryInfo span { color: var(--gold); font-size: 12px; font-weight: 700; }
.experienceGalleryInfo h3 { margin: 4px 0 0; font-size: 24px; }
.experienceGalleryInfo b { color: #667780; font-size: 13px; }
.experienceGalleryDescription { margin: 8px 4px 12px; color: #405963; font-size: 16px; line-height: 1.75; white-space: pre-wrap; overflow-wrap: anywhere; }
.experienceGalleryThumbs { display: flex; gap: 8px; padding: 8px 4px 2px; overflow-x: auto; }
.experienceGalleryThumbs button { flex: 0 0 88px; height: 58px; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 7px; opacity: 0.58; }
.experienceGalleryThumbs button.active { border-color: var(--gold); opacity: 1; }
.experienceGalleryThumbs img { width: 100%; height: 100%; object-fit: cover; }

.adminExperienceImages { margin: 18px 0; padding: 18px; background: #eef4f2; border: 1px solid var(--line); border-radius: 9px; }
.adminExperienceImagesHead { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.adminExperienceImagesHead > div { display: grid; gap: 5px; }
.adminExperienceImagesHead span { color: #667780; font-size: 12px; }
.adminUploadButton { display: inline-flex; align-items: center; gap: 8px; padding: 12px 15px; color: #fff; background: var(--navy); border-radius: 6px; font-weight: 700; cursor: pointer; }
.adminExperienceImageGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin-top: 16px; }
.adminExperienceImage { position: relative; height: 120px; overflow: hidden; border-radius: 7px; background: #dfe8e6; }
.adminExperienceImage img { width: 100%; height: 100%; object-fit: cover; }
.adminExperienceImage span { position: absolute; left: 7px; bottom: 7px; padding: 5px 7px; color: #fff; background: rgba(7, 25, 38, 0.72); border-radius: 4px; font-size: 10px; }
.adminExperienceImage button { position: absolute; top: 7px; right: 7px; display: grid; place-items: center; width: 30px; height: 30px; color: #fff; background: rgba(151, 35, 35, 0.86); border-radius: 50%; }

.adminShell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 300px 1fr;
  color: var(--ink);
  background: #eef3f2;
}

.adminAuthGate {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 76% 20%, rgba(42, 167, 160, 0.18), transparent 32%),
    radial-gradient(circle at 18% 85%, rgba(185, 152, 79, 0.2), transparent 34%),
    var(--navy-2);
}

.adminAuthCard {
  width: min(460px, 100%);
  padding: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(185, 152, 79, 0.5);
  border-radius: 18px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.adminAuthBack {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--navy);
  font-size: 13px;
}

.adminAuthBrand {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.adminAuthCard h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.08;
}

.adminAuthCard > p {
  margin: 14px 0 28px;
  color: var(--muted);
}

.adminAuthCard form {
  display: grid;
  gap: 18px;
}

.adminAuthCard form > button {
  min-height: 50px;
  color: #11181d;
  background: var(--gold);
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.adminAuthCard form > button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.adminAuthError {
  padding: 11px 13px;
  color: #7a1e25;
  background: #f8dfe2;
  border: 1px solid #e8b5bc;
  border-radius: 7px;
  font-size: 13px;
}

.adminSessionLoading {
  color: #d7e4e8;
  font-weight: 700;
}

.adminSidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: 28px;
  color: #fff;
  background: var(--navy-2);
}

.adminBack {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #c2d5dc;
  font-size: 13px;
}

.adminSidebar span,
.adminPanelHead span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.adminSidebar h1 {
  font-size: 34px;
  line-height: 1.05;
}

.adminSidebar nav {
  display: grid;
  gap: 10px;
}

.adminSidebar button,
.adminPanelHead button,
.adminTopbar button,
.adminCard button,
.adminUpload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.adminSidebar button {
  justify-content: flex-start;
  color: #d7e4e8;
  background: rgba(255, 255, 255, 0.07);
}

.adminSidebar button.active {
  color: #101417;
  background: var(--gold);
}

.adminWorkspace {
  min-width: 0;
  padding: 26px 34px 60px;
}

.adminTopbar {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
  padding: 18px 0 24px;
  background: #eef3f2;
}

.adminSidebar button.adminLogout {
  margin-top: 18px;
  color: #f0c9cd;
  background: rgba(139, 40, 48, 0.22);
  border-color: rgba(234, 208, 212, 0.18);
}

.adminLogin {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.adminSave,
.adminPanelHead button,
.adminTopbar button {
  color: #101417;
  background: var(--gold);
}

.adminTopbar button:disabled,
.adminSave:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.adminNotice {
  position: sticky;
  z-index: 6;
  top: 104px;
  margin-bottom: 18px;
  padding: 14px 16px;
  color: #1e4f38;
  background: #dff3e8;
  border: 1px solid #b9dfc8;
  border-radius: 8px;
}

.adminNotice.error {
  color: #7a1e25;
  background: #f8dfe2;
  border-color: #e8b5bc;
}

.adminPanel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.adminPanelHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.adminPanelHead h2 {
  font-size: 42px;
}

.adminStack {
  display: grid;
  gap: 14px;
}

.adminCard {
  padding: 18px;
  background: #f6f9f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.adminCard summary {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.adminCard summary::marker {
  content: '';
}

.adminCard summary > span {
  color: var(--gold);
  font-weight: 900;
}

.adminCard summary strong,
.adminCardTitle strong {
  font-size: 18px;
}

.adminCard button {
  color: #8b2830;
  background: #fff;
  border-color: #ead0d4;
}

.adminCard.plain {
  display: grid;
  gap: 18px;
}

.adminCardTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

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

.adminField {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.adminField input,
.adminField textarea,
.adminField select {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d4dfdc;
  border-radius: 6px;
  outline: none;
}

.adminField textarea {
  resize: vertical;
}

.adminBrandBox {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 22px;
}

.adminLogoPreview {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 20px;
  background: #f3f7f8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.adminLogoPreview img {
  max-width: 210px;
  max-height: 120px;
}

.adminUpload {
  justify-self: start;
  color: #fff;
  background: var(--navy);
}

.adminUpload input {
  display: none;
}

.adminVisibility {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: end;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.adminVisibility input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.adminServiceImage {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  background: #edf3f1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.adminServiceImagePreview {
  width: 180px;
  min-height: 108px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #dfe8e5 center / cover;
  border-radius: 7px;
  font-size: 12px;
}

.adminRemoveImage {
  min-height: 42px;
  padding: 0 14px;
  color: #8b2830;
  background: #fff;
  border: 1px solid #ead0d4;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .header nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .section h2,
  .about h2,
  .workflow h2,
  .contact h2,
  .detailBody h2 {
    font-size: 46px;
  }

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

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

  .adminShell {
    grid-template-columns: 240px 1fr;
  }

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

@media (max-width: 820px) {
  .header,
  .detailNav {
    height: 78px;
    padding: 0 20px;
  }

  .brand {
    border-radius: 0;
    padding: 0;
  }

  .brand img {
    width: auto;
    height: 62px;
    max-width: 116px;
  }

  .header nav,
  .iconLink {
    display: none;
  }

  .menu {
    display: grid;
    place-items: center;
  }

  .languages {
    gap: 5px;
    padding: 6px;
  }

  .languages svg {
    display: none;
  }

  .whatsappFloat {
    right: 18px;
    bottom: 18px;
    width: 56px;
    padding: 0;
  }

  .whatsappFloat span {
    display: none;
  }

  .mobileNav {
    position: fixed;
    z-index: 25;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 118px 28px 40px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.98);
    font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
    font-size: 30px;
  }

  .hero {
    height: 90svh;
    min-height: 560px;
  }

  .heroCopy {
    padding: 150px 24px 0;
  }

  .hero h1 {
    font-size: 56px;
  }

  .heroCopy > p {
    font-size: 16px;
    line-height: 1.62;
  }

  .heroFoot {
    left: 24px;
    right: 24px;
  }

  .heroFoot span {
    display: none;
  }

  .section {
    padding: 76px 24px;
  }

  .about,
  .workflow,
  .contact,
  .detailBody {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lead {
    font-size: 22px;
  }

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

  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .sectionTop {
    display: block;
  }

  .sectionTop > p {
    margin-top: 22px;
  }

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

  .service {
    min-height: 260px;
  }

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

  .detailRow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  footer p {
    font-size: 24px;
  }

  .footerBottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .detailHero {
    min-height: 440px;
    padding: 96px 24px 64px;
  }

  .detailHero h1 {
    font-size: 48px;
  }

  .detailBody {
    padding: 72px 24px;
  }

  .adminShell {
    display: block;
  }

  .adminSidebar {
    position: static;
    height: auto;
    gap: 24px;
  }

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

  .adminWorkspace {
    padding: 22px;
  }

  .adminTopbar,
  .adminLogin,
  .adminPanelHead,
  .adminBrandBox {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

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

@media (max-width: 520px) {
  .hero {
    min-height: 0;
  }

  .hero h1 {
    font-size: 46px;
  }

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

  .primary,
  .secondary {
    width: 100%;
  }

  .section h2,
  .about h2,
  .workflow h2,
  .contact h2,
  .detailBody h2 {
    font-size: 36px;
  }

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

  .metrics div,
  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .metrics div:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .workflowSteps article {
    grid-template-columns: 1fr;
  }

  .workflowSteps b {
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .adminExperienceImagesHead { align-items: stretch; flex-direction: column; }
  .adminUploadButton { justify-content: center; }
  .experienceModal { padding: 10px; }
  .experienceGallery { max-height: calc(100svh - 20px); padding: 10px; border-radius: 12px; }
  .experienceGalleryStage { height: 58vh; }
  .experienceGalleryClose { top: 18px; right: 18px; }
  .experienceGalleryPrev { left: 18px; }
  .experienceGalleryNext { right: 18px; }
  .experienceGalleryInfo h3 { font-size: 19px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
