:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #171717;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, .12);
  --yellow: #f2cd11;
  --orange: #f0a000;
  --green: #10b83e;
  --green-dark: #087a2a;
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 30;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 8px;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(18px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(0,0,0,.88), rgba(0,0,0,.26), transparent);
  backdrop-filter: blur(8px);
}

.logo {
  height: 32px;
  width: auto;
  max-width: 215px;
  object-fit: contain;
  display: block;
}

.top-whats {
  color: #0b0b0b;
  background: var(--yellow);
  font-weight: 950;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 18px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .02em;
  box-shadow: 0 10px 28px rgba(242,205,17,.20);
}

.hero {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.24) 72%),
    linear-gradient(0deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.12) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 132px 22px 58px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
  font-size: 12px;
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.045em;
  line-height: .92;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  max-width: 860px;
}

.lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: #eeeeee;
  font-size: clamp(17px, 2vw, 22px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 16px 22px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .01em;
  border: 1px solid transparent;
}

.btn-whats {
  background: linear-gradient(180deg, #18ca49, #0a8a2e);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.14) inset,
    0 12px 30px rgba(0,175,65,.28);
}

.btn-whats::before,
.float-whats::before {
  content: '☎';
  font-size: 21px;
  line-height: 1;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(0,0,0,.28);
}

.mini-proof {
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #dddddd;
  background: rgba(0,0,0,.32);
}

.proofs {
  max-width: var(--max);
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 22px;
}

.proofs article {
  background: linear-gradient(180deg, #151515, #0c0c0c);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  min-height: 112px;
}

.proofs strong {
  display: block;
  color: var(--yellow);
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.proofs span {
  display: block;
  margin-top: 8px;
  color: #dddddd;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
}

.pad { padding: 86px 22px; }

.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 60px);
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  margin: 14px 0 0;
}

.compact { margin-bottom: 24px; }

.cards.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

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

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

.card h3,
.feature-main h3,
.feature-list h3,
.service-grid b {
  margin: 0 0 8px;
  font-size: 22px;
}

.service-grid b {
  display: block;
  line-height: 1.12;
}

.card p,
.feature-main p,
.feature-list p,
.service-grid span {
  margin: 0;
  color: var(--muted);
}

.service-grid span {
  display: block;
  line-height: 1.35;
}

.special {
  padding: 86px 22px;
  background:
    radial-gradient(circle at top right, rgba(242,205,17,.18), transparent 34%),
    linear-gradient(180deg, #0b0b0b, #050505);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
}

.special > .section-head,
.feature-grid,
.special .wide {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 16px;
}

.feature-main {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.feature-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.feature-main div { padding: 24px; }

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list article {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}

.feature-list span {
  color: var(--yellow);
  font-weight: 950;
}

.wide {
  margin-top: 18px;
  width: 100%;
  max-width: var(--max);
}

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

.service-grid article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #161616, #0d0d0d);
  border-radius: 20px;
  padding: 22px;
}

.service-grid article::before {
  content: '';
  display: block;
  width: 34px;
  height: 4px;
  background: var(--yellow);
  border-radius: 10px;
  margin-bottom: 18px;
}

.works { padding: 86px 22px; }

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

.gallery figure {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.gallery img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  display: block;
}

.gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(0,0,0,.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  font-weight: 900;
}

.process { background: #080808; }

.steps {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.steps li {
  counter-increment: step;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 20px 20px 70px;
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.steps b {
  display: block;
  font-size: 20px;
}

.steps span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.faq { padding: 86px 22px; }

.faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #111;
  margin: 10px 0;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

.faq p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding: 74px 22px;
  text-align: center;
  background: linear-gradient(135deg, #f2cd11, #d67c00);
  color: #050505;
}

.final-cta h2 {
  font-size: clamp(36px, 6vw, 64px);
  max-width: 940px;
  margin: 0 auto;
}

.final-cta p:not(.eyebrow) {
  font-size: 19px;
  max-width: 640px;
  margin: 16px auto 24px;
}

.final-cta .eyebrow { color: #111; }

.footer {
  padding: 38px 22px 96px;
  max-width: var(--max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #aaa;
}

.footer img {
  height: 34px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.float-whats {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #19d84d, #087d2c);
  color: #fff;
  text-indent: -999px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
  text-decoration: none;
}

.float-whats::before {
  text-indent: 0;
  font-size: 34px;
}

@media (max-width: 820px) {
  body { padding-bottom: 82px; }

  html { scroll-padding-top: 78px; }

  .topbar {
    height: 68px;
    padding: 14px 14px;
  }

  .logo {
    height: 26px;
    max-width: 184px;
  }

  .top-whats {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
    align-items: flex-end;
  }

  .shade {
    background:
      linear-gradient(0deg, #050505 0%, rgba(5,5,5,.78) 34%, rgba(5,5,5,.28) 72%),
      linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.10));
  }

  .hero-img { object-position: center top; }

  .hero-content {
    padding: 112px 18px 112px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.25;
  }

  .hero h1 {
    font-size: clamp(38px, 11.2vw, 44px);
    line-height: .94;
  }

  .lead {
    font-size: 17px;
    line-height: 1.42;
  }

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

  .btn {
    width: 100%;
    padding: 16px 18px;
  }

  .mini-proof {
    width: 100%;
    margin-top: 18px;
  }

  .proofs {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 14px;
    gap: 10px;
  }

  .proofs article {
    padding: 16px;
    min-height: 106px;
  }

  .proofs strong { font-size: 21px; }

  .proofs span {
    font-size: 15px;
    line-height: 1.32;
  }

  .pad,
  .works,
  .faq,
  .special {
    padding: 60px 16px;
  }

  .section-head { margin-bottom: 24px; }

  .section-head h2 {
    font-size: clamp(34px, 10.4vw, 42px);
    line-height: .94;
  }

  .section-head p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.52;
  }

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

  .image-card img { height: 250px; }

  .image-card div,
  .feature-main div,
  .feature-list article,
  .service-grid article {
    padding: 22px;
  }

  .feature-main img { height: 430px; }

  .feature-list { margin-top: 12px; }

  .gallery img { height: 380px; }

  .steps li {
    padding: 22px 20px 22px 74px;
  }

  .steps li::before {
    left: 20px;
    top: 23px;
  }

  .final-cta {
    padding: 64px 18px 78px;
  }

  .final-cta h2 {
    font-size: clamp(36px, 11vw, 44px);
  }

  .footer {
    display: block;
    text-align: center;
    padding-bottom: 128px;
  }

  .footer img { margin-bottom: 14px; }

  .float-whats {
    left: 14px;
    right: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-indent: 0;
    overflow: visible;
    border: 2px solid rgba(255,255,255,.92);
    font-size: 14px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .01em;
    padding: 0 16px;
    text-align: center;
    line-height: 1.08;
    box-shadow: 0 10px 28px rgba(0,0,0,.52), 0 0 18px rgba(18,204,73,.25);
  }

  .float-whats::before {
    text-indent: 0;
    font-size: 25px;
    flex: 0 0 auto;
  }
}

@media (max-width: 390px) {
  .logo { height: 24px; max-width: 170px; }
  .top-whats { padding: 0 12px; font-size: 11px; }
  .hero h1 { font-size: 36px; }
  .lead { font-size: 16px; }
  .proofs { grid-template-columns: 1fr 1fr; }
  .float-whats { font-size: 13px; }
}

@media (min-width: 1200px) {
  .hero-img { object-position: center 34%; }
}
