* {
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --graphite: #161616;
  --graphite-2: #1f1f1f;
  --white: #ffffff;
  --muted: #b8b8b8;
  --gold: #c9a24d;
  --gold-soft: #e3c26a;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 162, 77, 0.18), transparent 26%),
    radial-gradient(circle at 90% 22%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #050505 0%, #0c0c0c 42%, #050505 100%);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 6vw;
  background: rgba(5, 5, 5, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.18em;
  line-height: 1;
}

.brand-line {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.header-cta:hover {
  color: var(--gold-soft);
}

.header-cta {
  border: 1px solid rgba(201, 162, 77, 0.55);
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 14px;
}

.section {
  padding: 100px 6vw;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}

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

h1 {
  max-width: 980px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 26px;
}

h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 780px;
  color: #dedede;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 36px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #121212;
}

.btn.secondary {
  border: 1px solid var(--line);
  color: var(--white);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  max-width: 860px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-row div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
}

.trust-row span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(201, 162, 77, 0.34);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(10, 10, 10, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(201, 162, 77, 0.28), transparent 68%);
}

.card-top {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 44px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(201, 162, 77, 0.8);
}

.score {
  font-size: clamp(54px, 8vw, 94px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  margin-bottom: 22px;
}

.hero-card p {
  color: #d4d4d4;
  font-size: 17px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-grid span {
  display: block;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-weight: 700;
  font-size: 14px;
}

.intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.section-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-text p,
.section-head p + h2,
.contact-copy p {
  max-width: 900px;
}

.intro-text p {
  max-width: 960px;
  color: var(--muted);
  font-size: 19px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 42px;
}

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

.service-card,
.price-card,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 26px;
  padding: 28px;
}

.service-card span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 38px;
}

.service-card p,
.price-card p,
.process-item p,
.contact-copy p,
.contact-card p,
.footer p {
  color: var(--muted);
}

.process {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.46);
}

.process-item > span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--gold);
  font-weight: 900;
}

.price-card {
  min-height: 100%;
}

.price-card.featured {
  border-color: rgba(201, 162, 77, 0.68);
  background:
    linear-gradient(180deg, rgba(201,162,77,.12), rgba(255,255,255,.045));
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.tag {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 162, 77, 0.12);
  color: var(--gold-soft) !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

ul {
  padding-left: 20px;
  color: #dfdfdf;
}

li {
  margin: 10px 0;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin: 0 6vw;
  padding: 46px;
  border-radius: 34px;
  border: 1px solid rgba(201, 162, 77, 0.34);
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 162, 77, 0.18), transparent 35%),
    rgba(255,255,255,.045);
}

.cta-strip h2 {
  max-width: 980px;
  font-size: clamp(28px, 3vw, 44px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: start;
}

.contact-copy p {
  font-size: 18px;
}

.contact-card {
  position: sticky;
  top: 110px;
}

.full {
  width: 100%;
  margin: 20px 0 16px;
}

.email-link {
  display: block;
  color: var(--gold-soft);
  text-align: center;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 6vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 72px 22px;
  }

  .site-header {
    padding: 18px 22px;
  }

  .header-cta {
    display: none;
  }

  .brand-mark {
    font-size: 20px;
  }

  .brand-line {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

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

  .cta-strip {
    margin: 0 22px;
    padding: 28px;
  }

  .footer {
    flex-direction: column;
    padding: 26px 22px;
  }
}
