:root {
  --black: #080808;
  --ink: #171717;
  --muted: #626262;
  --soft: #f6f3ee;
  --white: #ffffff;
  --gold: #c99a24;
  --gold-bright: #e2b83b;
  --line: rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(8, 8, 8, 0.94);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 18px clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  display: block;
  height: auto;
  max-width: min(360px, 58vw);
}

.nav-links {
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 28px;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--gold-bright);
}

.header-cta,
.primary-cta,
.secondary-cta,
.form-submit,
.floating-whatsapp {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.primary-cta,
.form-submit {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 14px 35px rgba(201, 154, 36, 0.28);
  color: #050505;
  padding: 0 24px;
}

.header-cta:hover,
.primary-cta:hover,
.form-submit:hover,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(226, 184, 59, 0.22), transparent 34%),
    linear-gradient(120deg, #0a0a0a 0%, #181714 48%, #efebe2 48%, #f8f6f0 100%);
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
  min-height: min(820px, calc(100vh - 84px));
  overflow: hidden;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px);
  position: relative;
}

.hero::after {
  border: 2px solid rgba(226, 184, 59, 0.5);
  border-radius: 999px;
  content: "";
  height: 760px;
  pointer-events: none;
  position: absolute;
  right: -260px;
  top: -90px;
  width: 760px;
}

.hero-copy {
  align-self: center;
  color: var(--white);
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero h1,
.split h2,
.section-heading h2,
.gold-band h2,
.contact-copy h2 {
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3rem, 6.8vw, 6.85rem);
  max-width: 820px;
}

.hero h1 span {
  color: var(--gold-bright);
  display: block;
}

.hero-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.7;
  margin: 28px 0 0;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  padding: 0 22px;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.trust-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
  max-width: 740px;
}

.trust-row span {
  border-top: 1px solid rgba(226, 184, 59, 0.5);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 800;
  padding-top: 12px;
}

.hero-visual {
  align-self: center;
  position: relative;
  z-index: 1;
}

.hero-visual img {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  display: block;
  height: auto;
  object-fit: cover;
  width: min(100%, 620px);
}

.problem-section,
.services-section,
.method-section,
.contact-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  gap: clamp(24px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.split h2,
.section-heading h2,
.gold-band h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 4.7rem);
}

.split p,
.section-heading,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.section-heading {
  max-width: 820px;
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 276px;
  padding: 28px;
}

.service-card span {
  color: var(--gold);
  display: block;
  font-size: 0.86rem;
  font-weight: 950;
  margin-bottom: 40px;
}

.service-card h3 {
  font-size: 1.32rem;
  margin: 0 0 14px;
}

.service-card p,
.method-grid p,
.lead-form p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.gold-band {
  align-items: start;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--black);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  padding: clamp(54px, 6vw, 86px) clamp(18px, 5vw, 72px);
}

.dark-kicker {
  color: rgba(0, 0, 0, 0.68);
}

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

.gain-list p {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 8px;
  font-weight: 850;
  margin: 0;
  padding: 18px 20px;
}

.method-section {
  background: var(--black);
  color: var(--white);
}

.method-section .section-heading {
  color: rgba(255, 255, 255, 0.74);
}

.method-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.method-grid article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 28px;
}

.method-grid strong {
  color: var(--gold-bright);
  display: block;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.method-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  align-items: start;
  background: var(--white);
  display: grid;
  gap: clamp(28px, 6vw, 86px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
}

.contact-copy p {
  margin: 22px 0 30px;
  max-width: 720px;
}

.dark-cta {
  background: var(--black);
  box-shadow: none;
  color: var(--white);
}

.lead-form {
  background: #f8f6f0;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.lead-form label {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 850;
  gap: 8px;
}

.lead-form input,
.lead-form select {
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 8px;
  color: var(--ink);
  min-height: 50px;
  padding: 0 14px;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 36, 0.16);
  outline: none;
}

.form-submit {
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  width: 100%;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  padding: 30px clamp(18px, 5vw, 72px);
}

.site-footer img {
  max-width: min(280px, 70vw);
}

.site-footer a {
  color: var(--gold-bright);
  font-weight: 850;
}

.floating-whatsapp {
  background: var(--gold-bright);
  bottom: 22px;
  box-shadow: 0 18px 40px rgba(8, 8, 8, 0.28);
  color: var(--black);
  padding: 0 22px;
  position: fixed;
  right: 22px;
  z-index: 30;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .gold-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      radial-gradient(circle at 80% 0%, rgba(226, 184, 59, 0.2), transparent 32%),
      linear-gradient(145deg, #0a0a0a 0%, #181714 62%, #f8f6f0 62%, #f8f6f0 100%);
  }

  .hero-visual img {
    margin-inline: auto;
  }

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

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

  .header-cta {
    min-height: 42px;
    padding: 0 16px;
  }

  .hero {
    gap: 22px;
    min-height: auto;
    padding-bottom: 30px;
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .hero-text {
    line-height: 1.54;
    margin-top: 18px;
  }

  .hero-actions {
    display: grid;
    margin-top: 22px;
  }

  .hero-actions,
  .service-grid,
  .method-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .service-card {
    min-height: 230px;
  }

  .trust-row {
    display: none;
  }

  .hero-visual img {
    width: min(74vw, 280px);
  }

  .site-footer {
    align-items: start;
  }

  .floating-whatsapp {
    bottom: 14px;
    left: 14px;
    right: 14px;
    width: auto;
  }
}
