:root {
  --bg: #0c0c0e;
  --bg-soft: #131316;
  --paper: #f5f2eb;
  --paper-strong: #ffffff;
  --text: #1c1a17;
  --text-soft: #55504a;
  --line: #d9b05b;
  --gold: #c9993b;
  --gold-soft: #e5c98b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  --radius: 28px;
  --font-body: "Manrope", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(201, 153, 59, 0.12), transparent 30%),
    #e9e6de;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.76) 0%, rgba(8, 8, 10, 0.52) 38%, rgba(8, 8, 10, 0.24) 60%, rgba(8, 8, 10, 0.54) 100%),
    linear-gradient(135deg, rgba(8, 8, 10, 0.42), rgba(12, 12, 14, 0.56)),
    radial-gradient(circle at 20% 10%, rgba(201, 153, 59, 0.12), transparent 32%),
    url("assets/hero-bg-clean.png") center center / cover no-repeat,
    var(--bg);
  color: #f8f7f3;
  padding: 72px 0 84px;
  border-bottom: 3px solid var(--gold);
}

.hero__content {
  display: grid;
  gap: 36px;
  align-items: end;
  grid-template-columns: 1.25fr 0.95fr;
}

.hero__brand {
  display: grid;
  gap: 24px;
  grid-template-columns: 96px 1fr;
  align-items: start;
}

.hero__copy {
  display: grid;
  gap: 16px;
}

.hero__logo {
  width: 96px;
  height: 96px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background:
    url("assets/hero-logo-transparent.png") center center / contain no-repeat;
  color: transparent;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 0.92;
}

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

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  max-width: 780px;
}

.hero__lead,
.section__lead {
  font-size: 21px;
  line-height: 1.72;
  max-width: 760px;
  font-weight: 500;
}

.hero__panel {
  border: 1px solid rgba(217, 176, 91, 0.28);
  border-radius: var(--radius);
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero__badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217, 176, 91, 0.16);
  color: #f4d79c;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero__panel p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 180ms ease;
}

.button--gold {
  background: linear-gradient(180deg, #d6ab55, #b88425);
  color: #111;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.section {
  padding: 84px 0;
}

.section--light {
  background: var(--paper);
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.split--top {
  align-items: start;
}

.quote-card,
.pill-note,
.stack-list,
.commitment-panel,
.rating-box,
.card,
.review-card,
.mini-list,
.timeline,
.service-group {
  background: var(--paper-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card {
  padding: 28px;
  border-left: 4px solid var(--gold);
}

.quote-card p {
  margin: 0 0 10px;
  color: var(--text-soft);
  line-height: 1.7;
}

.quote-card strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.section__heading {
  margin-bottom: 30px;
}

.section__heading--spread {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

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

.service-group {
  padding: 28px;
}

.service-group h3,
.stack-list h3,
.mini-list h3,
.timeline h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.02;
}

.service-group__subtitle {
  margin: 10px 0 24px;
  color: var(--gold);
  font-weight: 700;
}

.service-item + .service-item,
.mini-list__item + .mini-list__item,
.stack-list__item + .stack-list__item,
.timeline__item + .timeline__item {
  border-top: 1px solid rgba(28, 26, 23, 0.08);
}

.service-item,
.mini-list__item {
  padding: 18px 0;
}

.service-item h4,
.card h3,
.mini-list__item h4,
.timeline__item h4,
.review-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.08;
}

.service-item p,
.card p,
.mini-list__item p,
.timeline__item p,
.review-card p,
.footer p {
  margin: 0;
  line-height: 1.72;
  color: var(--text-soft);
}

.cards-grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  padding: 28px;
  border-top: 4px solid var(--gold);
}

.card h3 {
  font-size: 30px;
}

.pill-note {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(201, 153, 59, 0.5);
}

.pill-note strong,
.pill-note span {
  display: block;
}

.pill-note strong {
  color: #8f6110;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.stack-list {
  padding: 28px;
}

.stack-list__item {
  padding: 18px 0;
  line-height: 1.7;
  color: var(--text-soft);
}

.dual-blocks {
  margin-top: 32px;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-list {
  padding: 28px;
}

.check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  line-height: 1.65;
  color: var(--text-soft);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.commitment-panel {
  margin-top: 28px;
  padding: 28px;
  background: linear-gradient(180deg, #111214, #09090b);
  color: #fff;
  border: 2px solid rgba(201, 153, 59, 0.4);
}

.commitment-panel h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.86);
}

.timeline {
  padding: 28px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 20px 0;
}

.timeline__number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111214;
  color: var(--gold);
  font-weight: 900;
}

.statement {
  margin: 34px 0 0;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f7f3eb, #fff);
  border-left: 4px solid var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.5;
  color: #433d35;
  font-weight: 600;
}

.rating-box {
  padding: 28px;
  text-align: center;
}

.rating-box__brand {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: #3d6ee8;
}

.rating-box__stars {
  margin: 16px 0 10px;
  color: var(--gold);
  font-size: 34px;
  letter-spacing: 0.12em;
}

.rating-box p {
  margin: 0;
  color: var(--text-soft);
}

.review-card {
  padding: 24px;
  border: 1px solid rgba(201, 153, 59, 0.5);
}

.review-card__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.review-card__avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2f4c94;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.review-card:nth-child(2n) .review-card__avatar {
  background: #19583d;
}

.review-card:nth-child(3n) .review-card__avatar {
  background: #6aaf43;
}

.review-card__head p,
.review-card__stars span {
  color: var(--text-soft);
}

.review-card__stars {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
}

.footer {
  background: linear-gradient(180deg, #111214, #09090b);
  color: #f3efe8;
  border-top: 3px solid var(--gold);
  padding: 42px 0 54px;
}

.footer__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.footer h2,
.footer h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
}

.footer a:hover {
  color: var(--gold-soft);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(39, 197, 94, 0.98), rgba(19, 156, 69, 0.98));
  box-shadow: 0 18px 40px rgba(11, 87, 39, 0.28);
  color: #ffffff;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.floating-whatsapp__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    rgba(255, 255, 255, 0.18)
    url("assets/whatsapp-icon.png") center center / 30px 30px no-repeat;
  flex: 0 0 42px;
}

.floating-whatsapp__text strong,
.floating-whatsapp__text small {
  display: block;
  color: #ffffff;
}

.floating-whatsapp__text strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.floating-whatsapp__text small {
  margin-top: 2px;
  font-size: 13px;
  opacity: 0.92;
}

@media (max-width: 1024px) {
  .hero__content,
  .split,
  .section__heading--spread,
  .columns,
  .dual-blocks,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cards-grid--three,
  .cards-grid--reviews {
    grid-template-columns: 1fr 1fr;
  }

  .hero__brand {
    grid-template-columns: 72px 1fr;
  }

  .hero__logo {
    width: 72px;
    height: 72px;
    font-size: 46px;
  }
}

@media (max-width: 680px) {
  .section,
  .hero {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .cards-grid--three,
  .cards-grid--reviews {
    grid-template-columns: 1fr;
  }

  .hero__lead,
  .section__lead {
    font-size: 18px;
  }
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding-right: 14px;
  }

  .floating-whatsapp__text {
    display: none;
  }

  .statement {
    font-size: 26px;
    padding: 26px;
  }

  .service-group h3,
  .stack-list h3,
  .mini-list h3,
  .timeline h3 {
    font-size: 28px;
  }

  .service-item h4,
  .card h3,
  .mini-list__item h4,
  .timeline__item h4,
  .review-card h3 {
    font-size: 24px;
  }
}
