@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-400-800-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-400-800-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Glegoo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/glegoo-400-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Glegoo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/glegoo-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Glegoo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/glegoo-700-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308,
    U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0,
    U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Glegoo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/glegoo-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --bg: #07080d;
  --bg-2: #10131d;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f6f3ee;
  --muted: rgba(246, 243, 238, 0.72);
  --dim: rgba(246, 243, 238, 0.52);
  --red: #9e0b26;
  --red-hot: #9e0b26;
  --red-rgb: 158, 11, 38;
  --blue: #5d7cff;
  --cyan: #48e2ff;
  --green: #20c96b;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(var(--red-rgb), 0.28), transparent 32rem),
    radial-gradient(circle at 88% 18%, rgba(72, 226, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #05060a 0%, #0b0d14 45%, #07080d 100%);
  font-family: "Manrope", "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.4) contrast(1.1);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  height: auto;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.section-inner,
.hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 12px 14px 12px 22px;
  background: rgba(8, 10, 16, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(8, 10, 16, 0.82);
  border-color: rgba(255, 255, 255, 0.22);
}

.logo-link {
  width: 166px;
  min-width: 166px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
}

.logo-link img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 34px rgba(var(--red-rgb), 0.34);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 42px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  opacity: 0.88;
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-shade {
  background:
    radial-gradient(circle at 68% 38%, rgba(var(--red-rgb), 0.12), transparent 22rem),
    linear-gradient(90deg, rgba(5, 6, 10, 0.86), rgba(5, 6, 10, 0.52) 48%, rgba(5, 6, 10, 0.82)),
    linear-gradient(180deg, rgba(5, 6, 10, 0.54), #07080d 95%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: #ffd7df;
  background: rgba(var(--red-rgb), 0.22);
  border: 1px solid rgba(var(--red-rgb), 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
.package-card h3 {
  margin: 0;
  font-family: "Glegoo", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.8rem, 8.4vw, 7.4rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.03;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
}

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

.button-primary {
  color: #fff;
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 44px rgba(var(--red-rgb), 0.34);
}

.button-ghost,
.button-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.button-whatsapp {
  color: #06110b;
  background: linear-gradient(135deg, #9dffbd, var(--green));
  border-color: rgba(255, 255, 255, 0.18);
}

.showreel-stage {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.video-card {
  position: relative;
  overflow: hidden;
  height: min(62svh, 610px);
  min-height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #05060a;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(0deg, rgba(5, 6, 10, 0.52), transparent 45%);
  pointer-events: none;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.05);
}

.video-topbar {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.video-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff4968;
}

.video-topbar span:nth-child(2) {
  background: #ffd75d;
}

.video-topbar span:nth-child(3) {
  background: #3eff92;
}

.video-topbar strong {
  margin-left: auto;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button svg {
  width: 34px;
  height: 34px;
  margin-left: 4px;
}

.play-button path {
  fill: currentColor;
  stroke: none;
}

.live-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 2px;
  max-width: 250px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.live-card span,
.live-card small {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-card strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.live-card-a {
  left: -34px;
  bottom: 54px;
}

.live-card-b {
  right: -26px;
  top: 108px;
}

.hero-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics strong {
  font-size: 1.3rem;
}

.hero-metrics span {
  color: var(--dim);
  font-size: 0.9rem;
}

section {
  position: relative;
}

.intro,
.outcomes,
.service-hub,
.system,
.packages,
.faq,
.contact {
  padding: 112px 0;
}

.intro {
  background: linear-gradient(180deg, #07080d, #10131d);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: center;
}

.portrait-frame {
  position: relative;
  margin: 0;
}

.portrait-frame img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(var(--red-rgb), 0.55);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.portrait-frame figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  padding: 18px;
  background: rgba(7, 8, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  backdrop-filter: blur(18px);
}

.portrait-frame span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-frame strong {
  font-size: 1.32rem;
}

.intro-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.proof-grid div,
.outcome-card,
.package-card,
.faq-list details,
.contact-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.proof-grid div {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 20px;
}

.proof-grid strong {
  color: #fff;
}

.proof-grid span {
  color: var(--dim);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.outcomes {
  background:
    radial-gradient(circle at 12% 0%, rgba(72, 226, 255, 0.12), transparent 28rem),
    #0b0d14;
}

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

.outcome-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.outcome-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--red-rgb), 0.42);
  background: var(--panel-strong);
}

.outcome-card span {
  color: var(--red-hot);
  font-size: 0.82rem;
  font-weight: 900;
}

.outcome-card h3 {
  margin-top: auto;
  font-size: 1.5rem;
}

.outcome-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.outcome-card a {
  width: fit-content;
  margin-top: 22px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.outcome-card a:hover,
.outcome-card a:focus-visible {
  color: #ffd7df;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.service-hub {
  background:
    radial-gradient(circle at 80% 12%, rgba(var(--red-rgb), 0.16), transparent 26rem),
    #10131d;
}

.service-link-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-link-card,
.related-card {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-link-card:hover,
.service-link-card:focus-visible,
.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(var(--red-rgb), 0.45);
  background: var(--panel-strong);
}

.service-link-card span,
.related-card span {
  color: var(--red-hot);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-link-card strong,
.related-card strong {
  font-family: "Glegoo", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.1;
}

.service-link-card small,
.related-card small {
  color: var(--muted);
  font-size: 0.96rem;
}

.service-page main {
  padding-top: 150px;
}

.service-hero {
  padding: 56px 0 88px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.service-hero h1 {
  font-size: clamp(3.4rem, 7.4vw, 6.8rem);
}

.service-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.service-visual {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: #05060a;
  box-shadow: var(--shadow);
}

.service-visual img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.08);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(0deg, rgba(5, 6, 10, 0.58), transparent 52%);
}

.service-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 18px;
  background: rgba(7, 8, 13, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  backdrop-filter: blur(18px);
}

.service-badge span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-badge strong {
  font-size: 1.3rem;
}

.service-content,
.service-related {
  padding: 96px 0;
}

.service-content {
  background:
    radial-gradient(circle at 12% 0%, rgba(72, 226, 255, 0.1), transparent 26rem),
    #0b0d14;
}

.service-content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.service-sticky {
  position: sticky;
  top: 130px;
}

.service-sticky p {
  color: var(--muted);
}

.service-panel-grid {
  display: grid;
  gap: 16px;
}

.service-panel {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.service-panel h2,
.service-panel h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
}

.service-panel p,
.service-panel li {
  color: var(--muted);
}

.service-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.service-related {
  background: #07080d;
}

.system {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(var(--red-rgb), 0.14), transparent 42%),
    #07080d;
}

.system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 70px;
  align-items: center;
}

.system-copy {
  position: sticky;
  top: 130px;
}

.system-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-radius: 18px;
  font-weight: 900;
}

.timeline h3 {
  font-size: 1.28rem;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.packages {
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--red-rgb), 0.18), transparent 28rem),
    #10131d;
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 28px;
  border-radius: 30px;
}

.package-card.featured {
  background:
    linear-gradient(180deg, rgba(var(--red-rgb), 0.96), rgba(var(--red-rgb), 0.72)),
    var(--panel);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-18px);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.package-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--cyan);
  background: rgba(72, 226, 255, 0.1);
  border: 1px solid rgba(72, 226, 255, 0.22);
  border-radius: 22px;
}

.package-icon svg {
  width: 36px;
  height: 36px;
}

.package-card h3 {
  margin-top: 26px;
  font-size: 2.45rem;
  line-height: 1.1;
}

.package-card p {
  color: var(--muted);
}

.package-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 9px;
  height: 9px;
  background: var(--red-hot);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(var(--red-rgb), 0.13);
}

.package-card.featured li::before {
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
}

.price-row {
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.price-row strong {
  font-size: 2.55rem;
  line-height: 1;
}

.price-row span {
  color: var(--dim);
  font-weight: 800;
}

.button-card {
  width: 100%;
  margin-top: 24px;
}

.faq {
  background: #07080d;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 70px;
}

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

.faq-list details {
  padding: 22px;
  border-radius: 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact {
  padding-top: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 44px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(var(--red-rgb), 0.46), rgba(93, 124, 255, 0.18)),
    rgba(255, 255, 255, 0.08);
}

.contact-panel p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
}

.legal {
  padding: 112px 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(var(--red-rgb), 0.18), transparent 30rem),
    #0b0d14;
}

.legal-page .legal {
  min-height: 100svh;
  padding-top: 168px;
}

.legal-page h1 {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.98;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  align-items: start;
}

.legal-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 30px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.legal-imprint {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 24px;
  padding: 28px;
}

.legal-privacy {
  padding: 28px;
}

.legal-card h2 {
  margin: 0;
  font-family: "Glegoo", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.legal-block h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-block p,
.legal-card p {
  margin: 0;
  color: var(--muted);
}

.legal-card a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.legal-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.legal-date {
  margin: 8px 0 22px !important;
  color: var(--dim) !important;
  font-weight: 800;
}

.legal-privacy details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.legal-privacy details:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-privacy summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.legal-privacy details p {
  margin-top: 12px;
}

.site-footer {
  padding: 44px 0 80px;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto 110px;
  gap: 32px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer-logo {
  width: 160px;
  height: auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
}

address {
  display: grid;
  gap: 4px;
  font-style: normal;
}

address strong {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.partner-logo img {
  width: 86px;
  height: auto;
  margin-left: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    border-radius: 28px;
  }

  .nav-toggle {
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
    justify-content: stretch;
    padding-top: 8px;
  }

  .main-nav.is-open a {
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .hero-inner,
  .intro-grid,
  .system-grid,
  .faq-grid,
  .legal-grid,
  .service-hero-grid,
  .service-content-grid,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 840px;
  }

  .showreel-stage {
    min-height: 480px;
  }

  .video-card {
    height: 480px;
    min-height: 380px;
  }

  .outcome-grid,
  .package-grid,
  .proof-grid,
  .service-link-grid,
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }

  .system-copy {
    position: static;
  }

  .service-sticky {
    position: static;
  }

  .legal-imprint {
    position: static;
  }

  .contact-actions {
    margin-top: 0;
  }

  .footer-grid {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .section-inner,
  .hero-inner {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    top: 12px;
    width: min(100% - 24px, 560px);
    min-height: 64px;
    padding: 9px 10px 9px 16px;
  }

  .logo-link {
    width: 138px;
    min-width: 138px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 38px;
  }

  h1 {
    font-size: clamp(2.75rem, 13.6vw, 3.8rem);
  }

  .hero-inner {
    gap: 30px;
  }

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

  .hero-actions,
  .contact-actions {
    display: grid;
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .showreel-stage {
    min-height: auto;
  }

  .video-card {
    height: 420px;
    min-height: 420px;
    border-radius: 26px;
    transform: none;
  }

  .live-card {
    position: relative;
    inset: auto;
    max-width: none;
    margin-top: 12px;
  }

  .hero-metrics {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }

  .hero-metrics div {
    padding: 18px;
  }

  .intro,
  .outcomes,
  .system,
  .packages,
  .faq,
  .legal,
  .service-hub,
  .service-content,
  .service-related,
  .contact {
    padding: 72px 0;
  }

  .service-page main {
    padding-top: 104px;
  }

  .service-hero {
    padding: 32px 0 72px;
  }

  .service-visual,
  .service-visual img {
    min-height: 360px;
  }

  .legal-page .legal {
    padding-top: 112px;
  }

  .outcome-grid,
  .package-grid,
  .proof-grid,
  .service-link-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline li {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: auto;
  }

  .faq-grid {
    gap: 28px;
  }

}

@media (max-width: 430px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .video-card {
    height: 360px;
    min-height: 360px;
  }
}
