:root {
  --bg: #101411;
  --bg-deep: #090b0a;
  --panel: #171b18;
  --panel-light: #1d211f;
  --line: rgba(255, 255, 255, 0.09);
  --muted: #8f9690;
  --text: #f7f7f2;
  --gold: #d6a84d;
  --gold-soft: #f3d889;
  --green-gold: #aa9160;
  --max: 1100px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Raleway, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}

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

img,
video,
canvas {
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 80px;
  padding: 0 60px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 20, 17, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand img {
  width: 54px;
  height: 54px;
  padding: 4px;
  border: 1px solid rgba(243, 216, 137, 0.38);
  border-radius: 12px;
  object-fit: cover;
  background: #050505;
  box-shadow: 0 0 28px rgba(214, 168, 77, 0.18);
}

.brand span {
  color: var(--gold-soft);
}

.nav {
  display: flex;
  gap: 38px;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav a {
  color: rgba(247, 247, 242, 0.88);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 138px 24px 80px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(0.92) contrast(1.06) brightness(0.9);
}

.network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.36;
  mix-blend-mode: screen;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(214, 168, 77, 0.16), transparent 24rem),
    linear-gradient(90deg, rgba(7, 9, 8, 0.52), rgba(7, 9, 8, 0.16), rgba(7, 9, 8, 0.52)),
    linear-gradient(180deg, rgba(16, 20, 17, 0.16) 0%, rgba(16, 20, 17, 0.76) 96%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 900px;
  text-align: center;
}

h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.78), 0 2px 24px rgba(0, 0, 0, 0.66);
}

.hero p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(247, 247, 242, 0.86);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.72);
  font-size: clamp(1.1rem, 2.1vw, 1.48rem);
  line-height: 1.25;
}

.hero-slogan {
  display: block;
  margin-top: 24px;
  color: var(--gold-soft);
  font-size: clamp(1.3rem, 2.7vw, 2rem);
  font-weight: 520;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.72);
}

.primary-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 48px;
  margin-top: 36px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(16, 20, 17, 0.58);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 1px rgba(214, 168, 77, 0.22);
}

.hero-actions,
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.secondary-pill {
  border-color: rgba(243, 216, 137, 0.46);
  color: var(--gold-soft);
  background: rgba(7, 9, 8, 0.42);
}

.scroll-cue {
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 50px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.video-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(214, 168, 77, 0.12), transparent 26rem),
    var(--bg);
}

.promo-hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 36px;
  min-height: 100svh;
  overflow: hidden;
  padding: 132px 24px 90px;
}

.promo-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(214, 168, 77, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(16, 20, 17, 0.12), rgba(16, 20, 17, 0.94));
  pointer-events: none;
}

.promo-intro,
.promo-video-shell,
.promo-actions {
  position: relative;
  z-index: 2;
}

.promo-intro {
  display: grid;
  justify-items: center;
  max-width: 900px;
  text-align: center;
}

.promo-intro p {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-intro h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.promo-intro strong {
  margin-top: 18px;
  color: var(--gold-soft);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 500;
}

.promo-intro span {
  display: block;
  max-width: 720px;
  margin-top: 18px;
  color: rgba(247, 247, 242, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.55;
}

.promo-intro .promo-actions {
  justify-content: inherit;
  margin-top: 28px;
}

.promo-video-shell {
  width: min(1040px, 100%);
  overflow: hidden;
  border: 1px solid rgba(243, 216, 137, 0.2);
  border-radius: 16px;
  background: rgba(10, 12, 11, 0.84);
  box-shadow: 0 42px 130px rgba(0, 0, 0, 0.46), 0 0 60px rgba(214, 168, 77, 0.08);
  backdrop-filter: blur(18px);
}

.promo-video-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.promo-video-topbar div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-video-topbar img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.promo-video-topbar a {
  color: rgba(247, 247, 242, 0.78);
  font-size: 0.92rem;
}

.promo-video-frame {
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.5vw, 28px);
}

.promo-video-frame video {
  width: 100%;
  max-height: 72vh;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #000;
  object-fit: contain;
}

.home-video-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 130px) 24px;
}

.home-video-copy p {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-video-copy h2 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  font-weight: 300;
  line-height: 0.96;
}

.home-video-copy span {
  display: block;
  max-width: 480px;
  margin-top: 22px;
  color: rgba(247, 247, 242, 0.74);
  font-size: 1.08rem;
  line-height: 1.55;
}

.home-video-copy .primary-pill {
  margin-top: 28px;
}

.home-video-card {
  overflow: hidden;
  border: 1px solid rgba(243, 216, 137, 0.2);
  border-radius: 16px;
  background: rgba(10, 12, 11, 0.84);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42), 0 0 48px rgba(214, 168, 77, 0.08);
}

.home-video-card video {
  display: block;
  width: 100%;
  max-height: 620px;
  background: #000;
  object-fit: contain;
}

.service-cloud {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: center;
  gap: 40px;
  overflow: hidden;
  background: var(--bg);
}

.service-cloud::before,
.service-cloud::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 18vw;
  background: linear-gradient(90deg, var(--bg), rgba(16, 20, 17, 0));
  pointer-events: none;
}

.service-cloud::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, var(--bg), rgba(16, 20, 17, 0));
}

.cloud-row {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: cloud 38s linear infinite;
}

.cloud-row-two {
  margin-left: -20vw;
  animation-duration: 44s;
  animation-direction: reverse;
}

.cloud-row span {
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  padding: 0 34px;
  border-radius: 999px;
  background: #1c201d;
  color: rgba(247, 247, 242, 0.9);
  font-size: clamp(1.1rem, 2.2vw, 1.48rem);
  white-space: nowrap;
}

@keyframes cloud {
  to {
    transform: translateX(-50%);
  }
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 70px 24px 120px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 20, 17, 0.35), var(--bg) 80%),
    radial-gradient(circle at 50% 42%, rgba(214, 168, 77, 0.16), transparent 30rem);
}

.video-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  width: min(88vw, 1040px);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(12, 15, 13, 0.86);
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.52);
}

.shell-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  background: rgba(18, 22, 19, 0.68);
}

.sidebar-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sidebar-title img,
.request-row img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}

.sidebar-item {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(247, 247, 242, 0.78);
  text-align: left;
  cursor: default;
}

.sidebar-item.active {
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.shell-main {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 36px;
}

.request-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(247, 247, 242, 0.9);
}

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

.mission-card div {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(214, 168, 77, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.035);
}

.mission-card strong,
.mission-card span {
  display: block;
}

.mission-card strong {
  color: var(--gold-soft);
  font-size: 1.08rem;
  font-weight: 500;
}

.mission-card span {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.headline-block {
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 80px 24px;
  text-align: center;
}

.headline-block p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.98;
}

.headline-block span {
  color: var(--gold);
}

.services,
.form-section,
.map-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 24px;
}

.section-title {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 44px;
  text-align: center;
}

.section-title p,
.form-heading p {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-section {
  padding-top: 40px;
}

.map-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-align: center;
}

.map-heading p {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-heading h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1;
}

.map-frame {
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.88) brightness(0.8);
}

.section-title h2,
.form-heading h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 0.98;
}

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

.service-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}

.service-grid article span {
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 42px;
  border: 1px solid rgba(214, 168, 77, 0.7);
  border-radius: 6px;
  background: rgba(214, 168, 77, 0.12);
}

.service-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 500;
}

.service-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.form-heading {
  position: sticky;
  top: 110px;
}

.form-heading span {
  display: block;
  max-width: 430px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.4;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(23, 27, 24, 0.74);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.label-title {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
}

.quote-form small {
  color: var(--muted);
  font-size: 0.78rem;
}

.required {
  color: var(--gold-soft);
  margin-left: 1px;
}

.honey-field {
  display: none;
}

.wide,
.confidential,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0b0d0c;
  color: #fff;
  outline: none;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(243, 216, 137, 0.65);
  box-shadow: 0 0 0 4px rgba(214, 168, 77, 0.12);
}

.confidential,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.form-submit {
  width: 100%;
  border-color: rgba(243, 216, 137, 0.82);
  background: rgba(214, 168, 77, 0.16);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 44px 60px;
  border-top: 1px solid var(--line);
}

.footer > img {
  width: 96px;
  height: 96px;
  padding: 6px;
  border: 1px solid rgba(243, 216, 137, 0.34);
  border-radius: 14px;
  object-fit: cover;
  background: #050505;
  box-shadow: 0 0 38px rgba(214, 168, 77, 0.16);
}

.footer div {
  display: grid;
  gap: 6px;
}

.footer strong {
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.socials img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(243, 216, 137, 0.34);
  border-radius: 999px;
  background:
    center / 36px 36px no-repeat url("assets/whatsapp-clean.png"),
    radial-gradient(circle at 50% 50%, rgba(39, 210, 85, 0.28), rgba(7, 9, 8, 0.88));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), 0 0 24px rgba(214, 168, 77, 0.12);
  backdrop-filter: blur(14px);
}

.whatsapp-float img {
  display: none;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .promo-hero {
    padding-top: 112px;
  }

  .home-video-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.7rem, 12vw, 6rem);
  }

  .video-shell,
  .form-section {
    grid-template-columns: 1fr;
  }

  .mission-card {
    grid-template-columns: 1fr;
  }

  .shell-sidebar {
    display: none;
  }

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

  .form-heading {
    position: static;
  }
}

@media (min-width: 1100px) {
  .promo-hero {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(34px, 5vw, 74px);
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 110px;
  }

  .promo-intro {
    justify-items: start;
    text-align: left;
  }

  .promo-intro h1 {
    font-size: clamp(3.4rem, 5.4vw, 5.9rem);
  }

  .promo-intro span {
    max-width: 460px;
  }

  .promo-video-shell {
    width: 100%;
  }

  .promo-video-frame video {
    max-height: 62vh;
  }

}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
  }

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

  .brand span {
    max-width: 134px;
    line-height: 1.05;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 590px;
    padding-top: 116px;
  }

  .hero-actions,
  .promo-actions {
    width: 100%;
  }

  .hero-actions .primary-pill,
  .promo-actions .primary-pill {
    width: 100%;
    max-width: 320px;
  }

  .hero p {
    margin-top: 24px;
  }

  .promo-video-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-video-section {
    padding-inline: 18px;
  }

  .home-video-card,
  .promo-video-shell {
    border-radius: 12px;
  }

  .cloud-row span {
    min-height: 58px;
    padding: 0 24px;
  }

  .product-stage {
    min-height: 0;
    padding-bottom: 80px;
  }

  .video-shell {
    width: calc(100vw - 28px);
  }

  .shell-main {
    padding: 16px;
  }

  .headline-block {
    min-height: 420px;
  }

  .service-grid,
  .quote-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 18px;
  }

  .footer {
    padding: 34px 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
