:root {
  --ink: #111315;
  --muted: #5d646b;
  --line: #d8dde3;
  --paper: #f7f8f7;
  --panel: #ffffff;
  --accent: #ffd84d;
  --accent-ink: #1f1600;
  --red: #e21b2d;
  --steel: #34414b;
  --deep: #090b0d;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(12, 16, 20, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.top-contact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-height: 34px;
  padding: 6px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: #030405;
  border-bottom: 2px solid var(--red);
  font-size: 14px;
}

.top-contact span,
.top-contact a {
  font-weight: 800;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: rgba(9, 11, 13, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 66px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
  border-bottom: 2px solid var(--red);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-action {
  min-width: 104px;
  padding: 0 18px;
  background: #ffffff;
  color: var(--ink);
}

.button {
  padding: 0 20px;
}

.button:hover,
.header-action:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.outline {
  border: 1px solid var(--line);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 184px clamp(18px, 6vw, 78px) 92px;
  color: #ffffff;
  background:
    linear-gradient(130deg, rgba(5, 7, 9, 0.94) 0%, rgba(5, 7, 9, 0.76) 46%, rgba(5, 7, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 7, 9, 0.88) 0%, rgba(5, 7, 9, 0.08) 56%),
    url("assets/landing-hero-white-hrv.jpg?v=202607101640"),
    #050607;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.88) 0%, rgba(5, 7, 9, 0.62) 44%, rgba(5, 7, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 7, 9, 0.78) 0%, rgba(5, 7, 9, 0.08) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-logo {
  width: min(360px, 72vw);
  height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 800;
}

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

.member-promo {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) 1.3fr;
  gap: 28px;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 6vw, 78px);
  color: #ffffff;
  background:
    linear-gradient(170deg, transparent 0 78%, var(--red) 78% 86%, transparent 86%),
    #050607;
}

.member-copy span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.member-copy h2 {
  max-width: 520px;
  margin-bottom: 14px;
}

.member-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.member-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.member-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.member-list div:nth-child(2n) {
  border-right: 0;
}

.member-list div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.member-list strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-weight: 900;
}

.member-list span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.32;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.why-section {
  padding: clamp(64px, 9vw, 104px) clamp(18px, 6vw, 78px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(45deg, #eef0f2 0 2px, #ffffff 2px 8px);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--red);
  border-left: 1px solid var(--red);
}

.why-grid article {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
  background: rgba(255, 255, 255, 0.66);
}

.why-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-weight: 900;
}

.why-grid article strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.why-grid article p {
  margin-bottom: 0;
  color: var(--muted);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

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

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 5px;
}

.trust-strip span,
.section-heading p,
.section-split p,
.service-card p,
.price-card li,
.contact-section p {
  color: var(--muted);
}

.section,
.gallery-band {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 6vw, 78px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

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

.service-card {
  position: relative;
  border-top: 3px solid var(--red);
  box-shadow: 0 12px 34px rgba(10, 14, 18, 0.08);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: #d8dde3;
}

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

.service-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.service-card-text {
  display: flex;
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(226, 27, 45, 0.07), transparent 42%),
    #ffffff;
}

.service-card-text div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: var(--deep);
  color: #ffffff;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: #a9d92f;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 28px;
  font-weight: 900;
}

.package-note {
  min-height: 64px;
  margin: 0 0 18px;
  color: var(--steel);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 18px;
}

.gallery-band {
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #d8dde3;
}

.gallery-grid img:first-child {
  grid-row: span 2;
  height: 678px;
}

.gallery-grid-single {
  grid-template-columns: 1fr;
}

.gallery-grid-single img,
.gallery-grid-single img:first-child {
  grid-row: auto;
  width: min(100%, 920px);
  height: clamp(380px, 72vw, 760px);
  margin: 0 auto;
}

.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6) {
  height: 260px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
}

.contact-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

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

.contact-row span {
  color: var(--muted);
}

.contact-row strong {
  max-width: 68%;
  text-align: right;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 78px);
  background: var(--deep);
  color: rgba(255, 255, 255, 0.74);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #21c063;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(18, 112, 57, 0.36);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    min-height: auto;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    min-width: 88px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 154px;
    background-position: 62% center;
  }

  .member-promo,
  .member-list,
  .why-grid,
  .trust-strip,
  .service-grid,
  .section-split,
  .pricing-grid,
  .gallery-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .member-list div,
  .member-list div:nth-child(2n),
  .member-list div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .member-list div:last-child {
    border-bottom: 0;
  }

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

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

  .gallery-grid img,
  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(5),
  .gallery-grid img:nth-child(6) {
    grid-row: auto;
    height: 280px;
  }

  .contact-row {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .contact-row strong {
    max-width: 100%;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .top-contact {
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    font-size: 12px;
  }

  .top-contact a {
    display: none;
  }

  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 52px;
    height: 34px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    position: absolute;
    top: 12px;
    right: 14px;
    min-width: 54px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0;
  }

  .header-action::after {
    content: "WA";
    font-size: 13px;
  }

  h1 {
    max-width: 100%;
    font-size: 40px;
  }

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

  .section,
  .gallery-band,
  .why-section,
  .member-promo {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .member-list div {
    grid-template-columns: 48px 1fr;
    min-height: 94px;
    padding: 18px;
  }

  .member-list strong {
    width: 46px;
    height: 46px;
  }

  .member-list span {
    font-size: 16px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
