:root {
  --ink: #080b10;
  --ink-2: #0d121a;
  --ink-3: #141b25;
  --paper: #f4f1ea;
  --paper-2: #ebe6dc;
  --white: #ffffff;
  --text: #171b22;
  --muted: #68717e;
  --muted-light: #9ca8b8;
  --line: rgba(13, 18, 26, 0.13);
  --line-dark: rgba(255, 255, 255, 0.12);
  --red: #e11d35;
  --red-bright: #ff4054;
  --gold: #e4b765;
  --green: #20b96a;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 30px 90px rgba(5, 9, 15, 0.12);
  --shadow-dark: 0 36px 100px rgba(0, 0, 0, 0.34);
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.announcement {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
  padding: 8px 24px;
  background: linear-gradient(90deg, #bd1024, var(--red), #bd1024);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.announcement span {
  font-weight: 900;
  letter-spacing: 0.14em;
}

.announcement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.announcement a {
  font-weight: 850;
  text-underline-offset: 4px;
}

.site-nav {
  position: absolute;
  z-index: 90;
  top: 62px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  min-height: 94px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: rgba(8, 11, 16, 0.92);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.site-brand img {
  width: clamp(300px, 24vw, 374px);
  height: auto;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.55vw, 25px);
}

.site-nav nav > a {
  color: #aeb8c6;
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav nav > a:hover {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  box-shadow: 0 18px 50px rgba(225, 29, 53, 0.28);
}

.button.primary:hover {
  box-shadow: 0 22px 62px rgba(225, 29, 53, 0.4);
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.19);
  background: #151b25;
  color: #fff;
}

.button.outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button.ivory {
  background: #fff9ee;
  color: var(--ink);
}

.site-nav .nav-cta {
  min-height: 48px;
  padding-inline: 19px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.site-nav .nav-cta img,
.final-cta .button img {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
}

/* Hero: copy dan foto berada pada bidang terpisah. */
.hero-slider {
  position: relative;
  height: clamp(820px, calc(100svh - 38px), 940px);
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 8%, rgba(225, 29, 53, 0.14), transparent 26%),
    radial-gradient(circle at 20% 86%, rgba(228, 183, 101, 0.08), transparent 23%),
    #070a0f;
  color: #fff;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 38%, transparent 70%, #000);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
  animation: hero-enter 0.48s ease both;
}

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.hero-frame {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(520px, 1.08fr);
  gap: 28px;
  align-items: stretch;
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin: auto;
  padding: 166px 0 92px;
}

.hero-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-width: 0;
  padding: clamp(30px, 2.5vw, 40px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(18, 24, 34, 0.96), rgba(9, 13, 19, 0.98));
  box-shadow: var(--shadow-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--gold);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 19px 0 18px;
  font-size: clamp(44px, 3.4vw, 58px);
  line-height: 1.015;
  letter-spacing: -0.057em;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 580px;
  margin: 0;
  color: #b5bfcc;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.hero-trust span {
  display: flex;
  min-height: 48px;
  flex-direction: column;
  justify-content: center;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #c4ccd7;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-trust i {
  margin-bottom: 5px;
  color: var(--red-bright);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.12em;
}

.hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: #111722;
  box-shadow: var(--shadow-dark);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 7, 11, 0.04) 45%, rgba(4, 7, 11, 0.76) 100%),
    linear-gradient(90deg, rgba(4, 7, 11, 0.08), transparent 40%);
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 7s ease;
}

.hero-slide.is-active .hero-media > img {
  transform: scale(1.025);
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(8, 11, 16, 0.78);
  backdrop-filter: blur(18px);
}

.hero-media figcaption span,
.hero-media figcaption strong {
  display: block;
}

.hero-media figcaption span {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hero-media figcaption strong {
  max-width: 330px;
  font-size: 14px;
  line-height: 1.45;
  text-align: right;
}

.hero-media-proof {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(8, 11, 16, 0.84);
  backdrop-filter: blur(16px);
}

.hero-media-proof b {
  color: var(--red-bright);
  font-size: 24px;
}

.hero-media-proof span {
  color: #dbe1e9;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-controls {
  position: absolute;
  z-index: 6;
  right: max(24px, calc((100% - var(--container)) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-index,
.hero-dots,
.hero-arrows {
  display: flex;
  align-items: center;
}

.hero-index {
  gap: 9px;
  font-size: 11px;
}

.hero-index strong {
  font-size: 17px;
}

.hero-index i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.hero-index span {
  color: rgba(255, 255, 255, 0.5);
}

.hero-dots {
  gap: 6px;
}

.hero-dots button {
  width: 38px;
  height: 22px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.hero-dots span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-dots button.is-active span {
  background: var(--red-bright);
}

.hero-arrows {
  gap: 7px;
}

.hero-arrows button,
.testimonial-controls > button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: #111721;
  color: #fff;
  cursor: pointer;
}

.hero-signature {
  position: absolute;
  z-index: 6;
  left: max(24px, calc((100% - var(--container)) / 2));
  bottom: 37px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #788392;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.hero-signature b {
  color: var(--red);
}

.metric-strip {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(calc(100% - 48px), 1240px);
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.metric-strip > div {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}

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

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

.metric-strip strong {
  color: var(--ink);
  font-size: 31px;
  letter-spacing: -0.05em;
}

.metric-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  width: min(calc(100% - 48px), 1320px);
  margin: auto;
  padding: 118px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 50px;
}

.section-head h2 {
  max-width: 860px;
  margin: 17px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 4.6vw, 70px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-head > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.feature-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 20px 70px rgba(8, 12, 18, 0.06);
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.feature-card:nth-child(4n) {
  border-right: 0;
}

.feature-card:nth-child(n + 5) {
  border-top: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(225, 29, 53, 0.16);
  border-radius: 15px;
  background: #fff3f4;
}

.feature-icon img {
  width: 25px;
  height: 25px;
}

.feature-number {
  position: absolute;
  top: 31px;
  right: 30px;
  color: #a4aab3;
  font: 850 9px ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 62px 0 12px;
  color: var(--ink);
  font-size: 23px;
  letter-spacing: -0.035em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.demo-section {
  width: 100%;
  max-width: none;
  padding: 118px max(24px, calc((100% - 1440px) / 2));
  background: var(--ink);
  color: #fff;
}

.demo-section .section-head h2,
.demo-section .eyebrow {
  color: #fff;
}

.demo-section .eyebrow {
  color: var(--gold);
}

.demo-section .section-head > p {
  color: #9aa5b4;
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
  padding: 16px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #111721;
}

.demo-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 185, 106, 0.12);
}

.demo-toolbar p {
  margin: 0;
  color: #8e99a8;
  font-size: 12px;
}

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

.demo-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #111721;
  color: #fff;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.demo-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-5px);
}

.demo-visual {
  position: relative;
  aspect-ratio: 1 / 0.78;
  overflow: hidden;
  background: #05070a;
}

.demo-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 10, 0.7));
}

.demo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.demo-card:hover .demo-visual img {
  transform: scale(1.035);
}

.demo-visual > span,
.demo-visual > em {
  position: absolute;
  z-index: 2;
  top: 14px;
  padding: 7px 9px;
  border-radius: 9px;
  background: rgba(5, 7, 10, 0.8);
  font: 800 8px ui-monospace, monospace;
  font-style: normal;
  letter-spacing: 0.1em;
}

.demo-visual > span {
  left: 14px;
}

.demo-visual > em {
  right: 14px;
  color: var(--gold);
}

.demo-copy {
  min-height: 190px;
  padding: 22px;
}

.demo-copy small {
  color: var(--red-bright);
  font: 850 9px ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.demo-copy h3 {
  margin: 11px 0 9px;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.demo-copy p {
  margin: 0;
  color: #909aaa;
  font-size: 12px;
  line-height: 1.65;
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  width: min(calc(100% - 48px), 1440px);
  margin: 118px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.showcase-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
}

.showcase-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 9, 13, 0.8), transparent 48%);
}

.showcase-visual > div {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(7, 10, 15, 0.76);
  color: #fff;
  backdrop-filter: blur(16px);
}

.showcase-visual span,
.showcase-visual strong {
  display: block;
}

.showcase-visual span {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.showcase-visual strong {
  font-size: 20px;
}

.showcase-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(38px, 5vw, 74px);
}

.showcase-copy .section-head {
  display: block;
  margin-bottom: 34px;
}

.showcase-copy .section-head h2 {
  font-size: clamp(42px, 4.2vw, 64px);
}

.showcase-copy .section-head > p {
  margin-top: 22px;
}

.showcase-list {
  border-top: 1px solid var(--line);
}

.showcase-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.showcase-list article > span {
  color: var(--red);
  font: 850 10px ui-monospace, monospace;
}

.showcase-list h3,
.showcase-list p {
  margin: 0;
}

.showcase-list h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.showcase-list p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.benefit-section .benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-section {
  width: 100%;
  max-width: none;
  padding: 118px max(24px, calc((100% - 1320px) / 2));
  background: #111721;
  color: #fff;
}

.testimonial-section .section-head h2 {
  color: #fff;
}

.testimonial-section .eyebrow {
  color: var(--gold);
}

.testimonial-section .section-head > p {
  color: #9aa5b4;
}

.truth-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(228, 183, 101, 0.25);
  border-radius: 10px;
  color: var(--gold);
  font: 800 9px ui-monospace, monospace;
  letter-spacing: 0.09em;
}

.testimonial-window {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  min-height: 380px;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #171e29, #0d1219);
}

.proof-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(32, 185, 106, 0.22);
  border-radius: 10px;
  background: rgba(32, 185, 106, 0.07);
  color: #74dfa9;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.proof-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 185, 106, 0.1);
}

.testimonial-card blockquote {
  max-width: 1040px;
  margin: 34px 0;
  font-size: clamp(27px, 3vw, 46px);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.042em;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card footer > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--red);
  font-weight: 850;
}

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

.testimonial-card footer small {
  margin-top: 4px;
  color: #8d98a7;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.testimonial-controls > div {
  display: flex;
  gap: 7px;
}

.testimonial-controls > div button {
  width: 32px;
  height: 3px;
  padding: 0;
  border: 0;
  background: #37404c;
}

.testimonial-controls > div button.is-active {
  background: var(--red-bright);
}

.package-section {
  width: min(calc(100% - 48px), 1440px);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 20px 70px rgba(8, 12, 18, 0.06);
}

.package-card.featured {
  border-color: rgba(225, 29, 53, 0.4);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 28px 90px rgba(8, 12, 18, 0.22);
}

.package-card > em {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 9px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.1em;
}

.package-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.package-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #fff1f3;
}

.package-icon img {
  width: 25px;
  height: 25px;
}

.package-top small {
  color: var(--red);
  font-weight: 850;
}

.package-card h3 {
  margin: 34px 0 5px;
  font-size: 29px;
  letter-spacing: -0.045em;
}

.package-card .price {
  display: block;
  margin: 0 0 18px;
  font-size: clamp(31px, 2.6vw, 42px);
  letter-spacing: -0.05em;
}

.package-card > p {
  min-height: 70px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.package-card.featured > p {
  color: #9ba6b5;
}

.package-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 22px;
  color: #4e5661;
  font-size: 12px;
  line-height: 1.5;
}

.package-card.featured li {
  color: #c1c9d4;
}

.package-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.package-notes {
  margin-top: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.45);
}

.package-notes p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.seo-section {
  width: 100%;
  max-width: none;
  padding: 118px max(24px, calc((100% - 1320px) / 2));
  background: #e9e3d8;
}

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

.seo-grid .feature-card,
.process-grid .feature-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.seo-grid .feature-card h3,
.process-grid .feature-card h3 {
  margin-top: 92px;
}

.process-section {
  padding-bottom: 130px;
}

.faq-section {
  width: 100%;
  max-width: none;
  padding: 118px max(24px, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: #fff;
}

.faq-section .section-head {
  grid-template-columns: 1fr;
  gap: 18px;
}

.faq-section .section-head h2 {
  color: #fff;
}

.faq-section .eyebrow {
  color: var(--gold);
}

.faq-section .section-head > p {
  color: #97a2b1;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 54px 1fr 40px;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--red-bright);
  font: 850 10px ui-monospace, monospace;
}

.faq-list summary b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 850px;
  margin: 0;
  padding: 0 0 24px 72px;
  color: #98a3b2;
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  padding: 90px 24px;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.15), transparent 30%),
    linear-gradient(135deg, #c5142a, #ef2940);
  color: #fff;
  text-align: center;
}

.final-cta > div {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.final-cta h2 {
  margin: 20px 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.7;
}

.final-cta .button {
  min-height: 56px;
  padding-inline: 26px;
}

.cta-mark {
  position: absolute;
  right: -30px;
  bottom: -130px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 390px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.12em;
}

.site-footer {
  padding: 72px max(24px, calc((100% - 1320px) / 2)) 110px;
  background: #070a0f;
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.55fr);
  gap: 60px;
}

.footer-brand img {
  width: min(100%, 300px);
  height: auto;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #7f8a99;
  font-size: 13px;
  line-height: 1.7;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.footer-main > div > span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.footer-main a {
  color: #98a3b2;
  font-size: 12px;
  text-decoration: none;
}

.footer-main a:hover {
  color: #fff;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #66717f;
  font-size: 10px;
}

.floating-contact {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 16px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: #111721;
  color: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.26);
  text-decoration: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-contact.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
}

.floating-contact > img {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 10px;
  background: var(--green);
}

.floating-contact small,
.floating-contact b {
  display: block;
}

.floating-contact small {
  color: #8d98a7;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.floating-contact b {
  margin-top: 2px;
  font-size: 10px;
}

.legal-page {
  width: min(calc(100% - 48px), 1040px);
  min-height: 70vh;
  margin: auto;
  padding: 190px 0 100px;
}

.legal-page h1 {
  margin: 18px 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.legal-page > p,
.legal-sections p {
  color: var(--muted);
  line-height: 1.75;
}

.legal-sections {
  margin-top: 60px;
}

.legal-sections article {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.load-error {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

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

  .site-nav nav > a {
    font-size: 11px;
  }

  .hero-frame {
    grid-template-columns: minmax(390px, 0.88fr) minmax(470px, 1.12fr);
  }

  .hero-copy {
    padding: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 4.9vw, 62px);
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust span {
    min-height: 48px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-trust i {
    margin: 0;
  }

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

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

  .feature-card:nth-child(2n) {
    border-right: 0;
  }

  .feature-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .showcase-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 930px) {
  .announcement p {
    display: none;
  }

  .site-nav {
    top: 56px;
    min-height: 72px;
    padding: 9px 10px 9px 14px;
  }

  .site-brand img {
    width: 258px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line-dark);
    border-radius: 13px;
    background: #151b25;
    color: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px;
    background: currentColor;
  }

  .site-nav nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line-dark);
    border-radius: 18px;
    background: #0d121a;
    box-shadow: var(--shadow-dark);
  }

  .site-nav nav.is-open {
    display: flex;
  }

  .site-nav nav > a {
    padding: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .site-nav nav .nav-cta {
    margin-top: 10px;
    border: 0;
  }

  .hero-slider {
    height: 1190px;
    min-height: 1190px;
  }

  .hero-frame {
    grid-template-columns: 1fr;
    grid-template-rows: 430px auto;
    gap: 18px;
    padding: 150px 0 128px;
  }

  .hero-media {
    grid-row: 1;
  }

  .hero-copy {
    grid-row: 2;
  }

  .hero-media figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 7.5vw, 66px);
  }

  .hero-controls {
    right: 24px;
  }

  .hero-signature {
    left: 24px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .showcase-section {
    grid-template-columns: 1fr;
  }

  .showcase-visual {
    min-height: 560px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-card > p {
    min-height: 0;
  }

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

  .footer-main {
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
  }

  .footer-main > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 620px) {
  .announcement {
    justify-content: space-between;
    gap: 10px;
    min-height: 42px;
    padding: 8px 14px;
    font-size: 8px;
  }

  .announcement span {
    max-width: 210px;
    line-height: 1.35;
  }

  .site-nav {
    top: 54px;
    width: calc(100% - 24px);
    min-height: 66px;
    border-radius: 18px;
  }

  .site-brand img {
    width: 232px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-slider {
    height: 1120px;
    min-height: 1120px;
  }

  .hero-frame {
    width: calc(100% - 24px);
    grid-template-rows: 330px auto;
    padding: 136px 0 122px;
  }

  .hero-copy {
    justify-content: flex-start;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .hero-copy h1 {
    margin: 18px 0;
    font-size: clamp(39px, 11.6vw, 50px);
    line-height: 1.01;
  }

  .hero-copy > p {
    font-size: 14px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

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

  .hero-trust {
    margin-top: 20px;
  }

  .hero-trust span {
    min-height: 42px;
    padding: 9px 10px;
    font-size: 9px;
  }

  .hero-media {
    border-radius: 22px;
  }

  .hero-media figcaption {
    display: block;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .hero-media figcaption strong {
    margin-top: 6px;
    font-size: 11px;
    text-align: left;
  }

  .hero-media-proof {
    top: 12px;
    right: 12px;
  }

  .hero-controls {
    right: 12px;
    bottom: 25px;
    gap: 8px;
  }

  .hero-index,
  .hero-dots {
    display: none;
  }

  .hero-signature {
    left: 14px;
    bottom: 39px;
    max-width: 230px;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 7px;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 24px);
    margin-top: -14px;
  }

  .metric-strip > div {
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .metric-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .metric-strip > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 28px);
    padding: 84px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .section-head > p {
    font-size: 13px;
  }

  .feature-grid,
  .benefit-section .benefit-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card h3 {
    margin-top: 44px;
  }

  .demo-section,
  .testimonial-section,
  .seo-section,
  .faq-section {
    padding: 84px 14px;
  }

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

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-copy {
    min-height: 0;
  }

  .showcase-section {
    width: calc(100% - 28px);
    margin: 84px auto;
  }

  .showcase-visual {
    min-height: 390px;
  }

  .showcase-visual > div {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .showcase-copy {
    padding: 34px 22px;
  }

  .showcase-list article {
    grid-template-columns: 38px 1fr;
  }

  .testimonial-card {
    min-height: 410px;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .testimonial-card blockquote {
    font-size: 25px;
  }

  .package-section {
    width: calc(100% - 28px);
  }

  .package-card {
    padding: 26px 22px;
  }

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

  .faq-list summary {
    grid-template-columns: 35px 1fr 34px;
    gap: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .faq-list details p {
    padding-left: 45px;
    font-size: 13px;
  }

  .final-cta {
    min-height: 570px;
  }

  .final-cta h2 {
    font-size: clamp(43px, 13vw, 60px);
  }

  .cta-mark {
    font-size: 220px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

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

  .floating-contact {
    display: none;
  }

  .legal-page {
    width: calc(100% - 28px);
    padding-top: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
