:root {
  --bg: #0b0b0d;
  --bg-soft: #121216;
  --surface: #18181c;
  --surface-raised: #202026;
  --ink: #f7f4ee;
  --muted: #c7c0b8;
  --quiet: #8f8a84;
  --line: rgba(255, 112, 32, 0.2);
  --line-soft: rgba(255, 255, 255, 0.1);
  --brand: #ff7020;
  --brand-strong: #ff5f12;
  --brand-soft: #ffb267;
  --spark: #69d8ff;
  --dark: #050506;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  color-scheme: dark;
  font-family: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
  padding: 6px clamp(20px, 5vw, 72px);
  background: rgba(247, 244, 238, 0.98);
  border-bottom: 1px solid rgba(5, 5, 6, 0.08);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.52);
  border-bottom-color: rgba(255, 112, 32, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 3px 7px;
  border: 1px solid rgba(255, 112, 32, 0.22);
  border-radius: var(--radius);
  background: rgba(247, 244, 238, 0.96);
  text-decoration: none;
}

.brand img {
  width: 135px;
  height: auto;
}

h1,
h2,
h3 {
  font-family: Outfit, Inter, Arial, sans-serif;
}

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

.site-nav a {
  min-height: 32px;
  border-radius: var(--radius);
  padding: 5px 11px;
  color: #3b342f;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 112, 32, 0.14);
  color: #140904;
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #140904;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  padding: 72px clamp(20px, 5vw, 72px);
  background: #050506;
  border-bottom: 1px solid var(--line-soft);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.58);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 5rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.24rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--brand);
  color: #140904;
  box-shadow: 0 16px 32px rgba(255, 112, 32, 0.22);
}

.button.primary:hover {
  background: var(--brand-strong);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(255, 112, 32, 0.5);
  background: rgba(255, 112, 32, 0.1);
}

.button.light {
  background: var(--ink);
  color: var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050506;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-control {
  position: absolute;
  right: clamp(16px, 4vw, 42px);
  bottom: 32px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.72);
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.video-control:hover {
  border-color: rgba(255, 112, 32, 0.72);
  background: rgba(255, 112, 32, 0.18);
}

.video-control:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.video-control.is-paused {
  color: var(--brand-soft);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px) clamp(20px, 5vw, 72px) clamp(40px, 6vw, 74px);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
}

.contact-hero img {
  width: 100%;
  min-height: 360px;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel {
  max-width: 620px;
}

.section {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}

.intro--quote {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  align-items: center;
}

.intro-copy h2 {
  max-width: 760px;
}

.rich-text {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-quote {
  margin: 0;
  padding: 8px 0 8px clamp(20px, 4vw, 34px);
  border-left: 4px solid var(--brand);
  color: var(--ink);
}

.intro-quote p {
  max-width: 540px;
  margin-bottom: 14px;
  font-family: Outfit, Inter, Arial, sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.18;
}

.intro-quote cite {
  color: var(--brand-soft);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 900;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--brand-soft);
  font-weight: 900;
  white-space: nowrap;
}

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

.service-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  padding: 22px;
}

.service-card h3,
.service-list h2,
summary,
.contact-form label,
.contact-details dt {
  color: var(--ink);
}

.service-card p,
.service-list p,
.service-list li,
.faq p,
.contact-details dd,
.form-note {
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px) clamp(20px, 5vw, 72px);
  background: var(--brand);
  color: #160904;
}

.cta-band .eyebrow {
  color: #431400;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr auto auto;
  gap: 28px;
  align-items: start;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--dark);
  border-top: 1px solid var(--line-soft);
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer address {
  display: grid;
  gap: 6px;
  font-style: normal;
}

.footer-logo {
  width: 200px;
  height: auto;
  padding: 6px 10px;
  background: rgba(247, 244, 238, 0.96);
  border: 1px solid rgba(255, 112, 32, 0.16);
  border-radius: var(--radius);
  margin-bottom: 10px;
}

.copyright {
  margin: 0;
}

.page-hero {
  padding: clamp(58px, 9vw, 108px) clamp(20px, 5vw, 72px) clamp(30px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 112, 32, 0.14), transparent 38%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line-soft);
}

.page-hero.compact h1 {
  max-width: 940px;
}

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

.service-list article {
  display: grid;
  grid-template-columns: minmax(240px, 0.48fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.service-list img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.service-list ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.gallery {
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
}

summary {
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 28px;
}

.contact-form,
.contact-details {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #0f0f12;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 2px solid rgba(255, 112, 32, 0.24);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.contact-details dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-result {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.form-result p {
  color: var(--muted);
}

.form-result h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.06;
}

.form-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-details dd {
  margin: 4px 0 0;
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(247, 244, 238, 0.96);
    border: 1px solid rgba(255, 112, 32, 0.22);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .contact-hero,
  .intro,
  .intro--quote,
  .contact-layout,
  .service-list article {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section-heading,
  .cta-band,
  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .section-heading,
  .cta-band {
    flex-direction: column;
  }

  .hero {
    min-height: 610px;
  }

}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 122px;
  }

  .hero,
  .contact-hero,
  .section,
  .page-hero {
    padding-inline: 16px;
  }

  .hero {
    min-height: 570px;
    padding-block: 48px 74px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1.08rem;
  }

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

  .button {
    width: 100%;
  }

  .contact-hero img {
    min-height: 220px;
  }

  .video-control {
    right: 16px;
    bottom: 18px;
  }

  .site-footer {
    padding-inline: 16px;
  }
}

/* Conversion one-pager overrides */
.site-header {
  background: rgba(5, 5, 6, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 6, 0.97);
  border-bottom-color: rgba(255, 112, 32, 0.28);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.38);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 112, 32, 0.18);
  color: #fff;
}

.site-header .button {
  min-height: 36px;
  width: auto;
  padding: 8px 13px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(68, 226, 118, 0.52);
  border-radius: 999px;
  background: rgba(21, 143, 62, 0.16);
  color: #b7f7c9;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 0 18px rgba(68, 226, 118, 0.1);
}

.header-status span,
.availability-pill span {
  position: relative;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: #44e276;
  box-shadow: 0 0 0 6px rgba(68, 226, 118, 0.16);
}

.header-status span::after,
.availability-pill span::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(68, 226, 118, 0.56);
  border-radius: 50%;
  animation: onlinePulse 1.7s ease-out infinite;
}

.availability-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  margin: 0 0 20px;
  padding: 11px 15px;
  border: 1px solid rgba(72, 214, 117, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(68, 226, 118, 0.22), rgba(5, 5, 6, 0.72)),
    rgba(12, 113, 47, 0.42);
  color: #c9ffd8;
  font-size: 1.02rem;
  font-weight: 900;
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(68, 226, 118, 0.18);
}

@keyframes onlinePulse {
  0% {
    opacity: 0.75;
    transform: scale(0.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.5);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.project-fit {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  background: var(--surface);
  border-block: 1px solid var(--line-soft);
}

.fit-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

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

.fit-grid article,
.process-grid article {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.fit-grid p,
.process-grid p {
  color: var(--muted);
}

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

.process-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--brand);
  color: #160904;
  font-weight: 900;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(255, 112, 32, 0.12), transparent 36%),
    var(--bg-soft);
}

.check-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check-label input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--brand);
}

.check-label a {
  color: var(--brand-soft);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: #21c063;
  color: #031709;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.42),
    0 0 0 8px rgba(33, 192, 99, 0.16);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  font-weight: 900;
}

.whatsapp-float strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.whatsapp-float:hover {
  background: #29d873;
}

.confirmation-faq {
  padding-top: 0;
}

.privacy-page {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.privacy-page article {
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
}

.privacy-page h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.privacy-page p {
  color: var(--muted);
}

.redirect-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px;
  text-align: center;
}

.redirect-page img {
  width: 210px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: var(--radius);
  background: rgba(247, 244, 238, 0.96);
}

.redirect-page h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

@media (max-width: 1100px) {
  .conversion-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .site-nav {
    display: none !important;
  }

  .site-header {
    min-height: 50px;
    padding-block: 7px;
  }

  .header-status {
    display: none;
  }

  .project-fit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 116px;
  }

  .site-header .button {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .conversion-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    display: grid;
    padding-right: 66px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 7px;
  }

  .whatsapp-float strong {
    display: none;
  }

  body.is-form-focused .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
  }

  .video-control {
    right: 76px;
  }
}
