:root {
  --bg: #f4f6f8;
  --paper: #ffffff;
  --ink: #101318;
  --muted: #5e6876;
  --dark: #090b0f;
  --dark-2: #151a22;
  --steel: #263241;
  --line: rgba(16, 19, 24, 0.12);
  --yellow: #f7b500;
  --yellow-2: #ffd667;
  --orange: #ff7a1a;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 26px 70px rgba(9, 11, 15, 0.18);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

svg {
  fill: currentColor;
}

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

button {
  border: 0;
  font: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px max(18px, calc((100vw - var(--container)) / 2));
  color: #fff;
  background: rgba(9, 11, 15, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: #111;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 16px 36px rgba(247, 181, 0, 0.22);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  line-height: 1.08;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.93rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  padding: 11px;
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  color: #fff;
  background: linear-gradient(135deg, #090b0f 0%, #171d27 52%, #293443 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 181, 0, 0.26), transparent 28%),
    radial-gradient(circle at 84% 12%, rgba(255, 122, 26, 0.22), transparent 28%),
    linear-gradient(120deg, transparent 0 58%, rgba(255, 255, 255, 0.04) 58% 60%, transparent 60% 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding: 92px 0 86px;
}

.hero-content {
  max-width: 760px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 15px;
  color: var(--yellow-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.kicker.dark {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  line-height: 0.95;
  font-size: clamp(3.3rem, 8.5vw, 7.8rem);
  letter-spacing: -0.08em;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.13rem, 2.2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 20px 42px rgba(247, 181, 0, 0.25);
}

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

.btn-dark {
  color: #fff;
  background: var(--dark);
}

.btn.full {
  width: 100%;
}

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

.feature-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.status-card {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.pulse {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--yellow);
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 2px solid rgba(247, 181, 0, 0.42);
  animation: pulse 1.8s infinite;
}

.status-card p {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.status-card strong {
  font-size: 1.45rem;
}

.hero-services {
  display: grid;
}

.hero-services div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 24px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-services span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #111;
  background: var(--yellow);
  font-weight: 900;
}

.hero-services strong {
  font-size: 1.08rem;
}

.section {
  padding: 86px 0;
}

.intro {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 30px;
  align-items: end;
}

.intro h2,
.section-title h2,
.operations h2,
.location h2,
.contact h2 {
  margin-bottom: 0;
  line-height: 1.02;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
}

.intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title.center .kicker {
  margin-inline: auto;
}

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

.service-card,
.mini-cards article,
.gallery-item,
.contact-box,
.location-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(16, 19, 24, 0.08);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(247, 181, 0, 0.15);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 20px;
  color: #111;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.icon-wrap svg {
  width: 36px;
  height: 36px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
}

.operations {
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 181, 0, 0.24), transparent 25%),
    linear-gradient(135deg, var(--dark), var(--dark-2));
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.operations-main {
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(9, 11, 15, 0.38), rgba(9, 11, 15, 0.76)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.operations-main p:last-child {
  max-width: 540px;
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.mini-cards {
  display: grid;
  gap: 16px;
}

.mini-cards article {
  padding: 25px;
  color: var(--ink);
}

.mini-cards span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.mini-cards h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.gallery {
  background: #fff;
}

.note {
  margin: 12px auto 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 22px;
}

.gallery-item {
  overflow: hidden;
  padding: 12px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  max-height: 860px;
  object-fit: contain;
  border-radius: 18px;
  background: #e8ebef;
}

.gallery-item figcaption {
  padding: 14px 6px 4px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.location {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.location-copy p:not(.kicker) {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.05rem;
}

.location-copy p:last-child {
  margin-bottom: 0;
}

.contact {
  color: #fff;
  background: linear-gradient(135deg, #090b0f 0%, #151b24 60%, #273241 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 30px;
  align-items: center;
}

.contact-grid p:last-child {
  max-width: 650px;
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.contact-box {
  padding: 28px;
  color: var(--ink);
}

.contact-box span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-weight: 800;
}

.contact-box strong {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #111;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 20px 48px rgba(9, 11, 15, 0.26);
  transition: transform 0.2s ease;
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  outline: none;
}

.float-whatsapp svg {
  width: 34px;
  height: 34px;
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background: #090b0f;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
}

@keyframes pulse {
  from {
    opacity: 0.9;
    transform: scale(0.72);
  }
  to {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 83px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(9, 11, 15, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .hero-grid,
  .intro-grid,
  .operations-grid,
  .contact-grid,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 72px 0;
  }

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

  .location-panel .btn {
    width: 100%;
  }
}

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

  .header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .brand-copy small {
    font-size: 0.76rem;
  }

  .nav {
    top: 73px;
    left: 12px;
    right: 12px;
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  .hero-actions,
  .feature-strip {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .operations-main {
    border-radius: 24px;
  }

  .service-card,
  .operations-main,
  .location-panel,
  .contact-box {
    padding: 24px;
  }

  .hero-services div {
    padding: 20px;
  }

  .gallery-item {
    padding: 8px;
  }

  .gallery-item img {
    border-radius: 14px;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }

  .float-whatsapp {
    width: 58px;
    height: 58px;
  }
}
