:root {
  color-scheme: dark;
  --bg: #080a0f;
  --bg-soft: #0c1017;
  --panel: rgba(12, 16, 23, 0.78);
  --panel-solid: #0f141d;
  --line: rgba(221, 188, 130, 0.23);
  --line-cool: rgba(116, 191, 255, 0.16);
  --text: #f5f1e8;
  --muted: #b7bdc7;
  --soft: #848c99;
  --gold: #d8b173;
  --gold-light: #f2d8a6;
  --blue: #54a7ff;
  --green: #47d16d;
  --radius: 8px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 8% 84%, rgba(216, 177, 115, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 36%, rgba(84, 167, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #07090d 0%, #0a0d13 48%, #080a0f 100%);
  color: var(--text);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 26px clamp(20px, 7vw, 96px) 18px;
  background: linear-gradient(180deg, rgba(8, 10, 15, 0.92), rgba(8, 10, 15, 0.64));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(240px, 48vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 64px);
  color: rgba(245, 241, 232, 0.82);
  font-size: 1rem;
  white-space: nowrap;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--gold-light);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(242, 216, 166, 0.8);
  border-radius: var(--radius);
  padding: 0 28px;
  background:
    linear-gradient(180deg, rgba(255, 226, 178, 0.98), rgba(183, 133, 70, 0.98));
  color: #17110a;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(216, 177, 115, 0.24);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 56px rgba(216, 177, 115, 0.3);
}

.button-small {
  justify-self: end;
  min-height: 48px;
  min-width: 182px;
  padding-inline: 20px;
}

.button-outline {
  background: rgba(9, 12, 17, 0.34);
  color: var(--text);
  border-color: rgba(216, 177, 115, 0.6);
  box-shadow: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(28px, 5vw, 76px);
  min-height: calc(100vh - 92px);
  padding: clamp(60px, 7vw, 116px) clamp(20px, 7vw, 96px) clamp(72px, 8vw, 126px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -16% -10%;
  z-index: -2;
  height: 36%;
  background: radial-gradient(ellipse at 20% 50%, rgba(216, 177, 115, 0.3), transparent 56%);
  filter: blur(18px);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid;
  border-radius: 50%;
  opacity: 0.8;
  transform: rotate(-13deg);
}

.hero-glow-gold {
  right: 14%;
  top: 42%;
  width: 52vw;
  height: 18vw;
  border-color: rgba(216, 177, 115, 0.42);
  box-shadow: 0 0 34px rgba(216, 177, 115, 0.18);
}

.hero-glow-blue {
  right: -2%;
  top: 31%;
  width: 46vw;
  height: 16vw;
  border-color: rgba(84, 167, 255, 0.54);
  box-shadow: 0 0 44px rgba(84, 167, 255, 0.28);
}

.hero-copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.35rem, 6.1vw, 6.55rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 span {
  color: var(--gold-light);
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(245, 241, 232, 0.76);
  font-size: clamp(1.08rem, 1.65vw, 1.58rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.centered {
  justify-content: center;
}

.hero-stage {
  position: relative;
  min-height: 610px;
  align-self: center;
}

.orbit {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  transform: rotate(-11deg);
}

.orbit-one {
  inset: 18% 1% 28% 0;
  border: 1px solid rgba(84, 167, 255, 0.44);
  box-shadow: 0 0 24px rgba(84, 167, 255, 0.24);
}

.orbit-two {
  inset: 32% 14% 22% -9%;
  border: 1px solid rgba(216, 177, 115, 0.34);
  box-shadow: 0 0 22px rgba(216, 177, 115, 0.18);
}

.floating-card,
.website-preview {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(19, 23, 31, 0.92), rgba(8, 11, 16, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 18px;
}

.whatsapp-card {
  top: 8%;
  left: 1%;
  display: flex;
  width: min(300px, 44%);
  align-items: center;
  gap: 14px;
}

.whatsapp-card strong,
.whatsapp-card small {
  display: block;
}

.whatsapp-card strong {
  font-size: 1.02rem;
}

.whatsapp-card small {
  margin-top: 2px;
  color: var(--muted);
}

.whatsapp-card i {
  width: 10px;
  height: 10px;
  margin-left: auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(71, 209, 109, 0.74);
}

.wa-mark {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: #28c267;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card {
  top: 30%;
  left: 10%;
  width: min(300px, 44%);
}

.review-card strong,
.form-card strong {
  display: block;
  margin-bottom: 12px;
}

.review-card small {
  display: block;
  margin-top: 12px;
  color: var(--soft);
}

.rating {
  display: flex;
  gap: 9px;
}

.rating span {
  width: 21px;
  height: 21px;
  background: var(--gold);
  clip-path: polygon(50% 0, 63% 34%, 98% 35%, 70% 56%, 80% 91%, 50% 70%, 20% 91%, 30% 56%, 2% 35%, 37% 34%);
}

.form-card {
  top: 53%;
  left: 7%;
  width: min(310px, 45%);
}

.form-card label {
  display: block;
  margin: 10px 0 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.field {
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.18);
}

.form-card button,
.preview-top button,
.preview-hero button {
  border: 1px solid rgba(242, 216, 166, 0.74);
  border-radius: 5px;
  background: linear-gradient(180deg, #e8c185, #aa7744);
  color: #17110a;
  font-weight: 800;
}

.form-card button {
  width: 100%;
  min-height: 33px;
  margin-top: 14px;
}

.website-preview {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: min(650px, 76%);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 150px;
}

.drop-mark {
  width: 17px;
  height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.preview-top nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}

.preview-top button {
  min-height: 34px;
  padding: 0 16px;
}

.preview-hero {
  min-height: 250px;
  padding: 34px 26px;
  background:
    linear-gradient(90deg, rgba(10, 13, 19, 0.98) 0%, rgba(10, 13, 19, 0.64) 52%, rgba(10, 13, 19, 0.2) 100%),
    radial-gradient(circle at 84% 32%, rgba(226, 231, 239, 0.34), transparent 18%),
    linear-gradient(135deg, #151a23 0%, #2a2e36 48%, #090b10 100%);
}

.preview-hero h2 {
  max-width: 310px;
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.08;
}

.preview-hero p {
  max-width: 270px;
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

.preview-hero button {
  min-height: 40px;
  padding: 0 18px;
}

.preview-services {
  padding: 22px 26px 28px;
}

.preview-services h3 {
  margin: 0 0 16px;
  font-size: 1.08rem;
}

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

.service-grid section {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
}

.service-grid span {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 12px;
  border: 2px solid var(--gold);
  border-radius: 6px;
}

.service-grid strong,
.service-grid small {
  display: block;
}

.service-grid small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.preview-footer {
  display: flex;
  justify-content: space-around;
  gap: 12px;
  padding: 14px 22px 22px;
  color: var(--muted);
  font-size: 0.8rem;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(20px, 7vw, 96px) clamp(62px, 7vw, 96px);
}

.benefits article,
.offer-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 20, 29, 0.84), rgba(8, 11, 16, 0.82));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 210px;
  padding: 28px;
}

.benefit-icon {
  display: inline-grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 1px solid rgba(242, 216, 166, 0.72);
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 900;
  box-shadow: inset 0 0 22px rgba(216, 177, 115, 0.08);
}

.benefits h2 {
  margin: 6px 0 12px;
  color: var(--gold-light);
  font-size: clamp(1.18rem, 1.5vw, 1.55rem);
  line-height: 1.14;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.section {
  padding: clamp(64px, 8vw, 118px) clamp(20px, 7vw, 96px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.split h2,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 4rem);
  line-height: 1.08;
}

.split p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.34rem);
  line-height: 1.78;
}

.service-section {
  background: rgba(255, 255, 255, 0.02);
}

.section-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

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

.offer-grid article {
  min-height: 210px;
  padding: 30px;
}

.offer-grid h3 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 1.3rem;
}

.offer-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.google-section {
  background:
    radial-gradient(circle at 86% 38%, rgba(84, 167, 255, 0.12), transparent 28rem),
    rgba(255, 255, 255, 0.01);
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(216, 177, 115, 0.16), transparent 32rem),
    #080a0f;
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 7vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #06080c;
}

.footer img {
  width: 150px;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer p:last-child {
  color: var(--gold-light);
  font-weight: 800;
}

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

  .nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 660px;
  }

  .website-preview {
    width: min(720px, 78%);
  }

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

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-top: 18px;
  }

  .brand {
    width: min(190px, 50vw);
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.76rem, 13vw, 4.65rem);
  }

  .hero-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .orbit,
  .hero-glow {
    display: none;
  }

  .floating-card,
  .website-preview {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .whatsapp-card,
  .review-card,
  .form-card {
    width: 100%;
  }

  .website-preview {
    order: -1;
  }

  .split,
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .button-small {
    min-width: auto;
    min-height: 44px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  .lead {
    line-height: 1.62;
  }

  .hero-actions .button {
    width: 100%;
  }

  .preview-top nav,
  .preview-footer {
    display: none;
  }

  .preview-top {
    padding: 14px;
  }

  .preview-brand {
    min-width: 0;
  }

  .preview-hero {
    min-height: 220px;
    padding: 28px 18px;
  }

  .preview-services {
    padding: 18px;
  }

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

  .benefits article {
    min-height: auto;
    padding: 24px;
  }

  .offer-grid article {
    min-height: auto;
    padding: 24px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
