/* ============================================================
   BROY APPS LANDING PAGE — V2 REBUILD
   Basis: konsep v1 + palette #ff7780 / #333232
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #fff7f7;
  --bg-soft-2: #f7f7f7;
  --bg-dark: #333232;
  --surface: #ffffff;
  --surface-dark: #3d3b3b;

  --text: #333232;
  --text-muted: #716d6d;
  --text-soft: #9a9494;
  --text-on-dark: #fffafa;

  --primary: #ff7780;
  --primary-hover: #f9737c;
  --primary-deep: #d9505b;
  --primary-soft: #fff0f1;
  --primary-soft-strong: #ffe3e5;

  --border: #eee8e8;
  --border-strong: #ded6d6;
  --border-dark: rgba(255, 255, 255, 0.12);

  --success: #20a66a;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow-sm: 0 5px 18px rgba(51, 50, 50, 0.06);
  --shadow-md: 0 16px 42px rgba(51, 50, 50, 0.10);
  --shadow-lg: 0 28px 76px rgba(51, 50, 50, 0.16);

  --container: 1180px;
  --header-height: 76px;
  --font-main: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --transition: 190ms ease;
}


html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #201f1f;
  --bg-soft: #282626;
  --bg-soft-2: #2d2b2b;
  --bg-dark: #171616;
  --surface: #292727;
  --surface-dark: #181717;
  --text: #f6f2f2;
  --text-muted: #bbb2b2;
  --text-soft: #958c8c;
  --text-on-dark: #fffafa;
  --primary: #ff7780;
  --primary-hover: #ff8b93;
  --primary-deep: #ff9ba2;
  --primary-soft: rgba(255, 119, 128, 0.12);
  --primary-soft-strong: rgba(255, 119, 128, 0.20);
  --border: #403c3c;
  --border-strong: #554f4f;
  --border-dark: rgba(255, 255, 255, 0.10);
  --shadow-sm: 0 5px 18px rgba(0, 0, 0, 0.16);
  --shadow-md: 0 16px 42px rgba(0, 0, 0, 0.22);
  --shadow-lg: 0 28px 76px rgba(0, 0, 0, 0.30);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

::selection {
  color: var(--text);
  background: var(--primary-soft-strong);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--bg-dark);
}

.skip-link:focus {
  transform: translateY(0);
}

/* LAYOUT */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 119, 128, 0.08), transparent 25%),
    var(--bg-soft);
}

.section-dark {
  color: var(--text-on-dark);
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 119, 128, 0.30), transparent 30%),
    radial-gradient(circle at 5% 100%, rgba(255, 119, 128, 0.12), transparent 28%),
    var(--bg-dark);
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading h2,
.payment-copy h2,
.faq-intro h2,
.verif-copy h2,
.ticketing-copy h2,
.cta-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p,
.payment-copy > p,
.faq-intro > p {
  color: var(--text-muted);
  font-size: 1rem;
}

.section-heading.centered {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 64px;
}

.split-heading > p {
  margin-bottom: 5px;
}

.split-heading.light p {
  color: rgba(255, 250, 250, 0.68);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading-row > div:first-child {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.eyebrow-on-dark {
  color: #ffb5ba;
}

.eyebrow-on-accent {
  color: #333232;
}

.eyebrow-on-accent::before {
  background: rgba(51, 50, 50, 0.62);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.btn:hover:not(:disabled) {
  transform: translateY(-1px);
}

.btn:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 119, 128, 0.30);
  outline-offset: 3px;
}

.btn-primary {
  color: #333232;
  background: var(--primary);
  box-shadow: 0 10px 23px rgba(255, 119, 128, 0.28);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 12px 28px rgba(255, 119, 128, 0.34);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
  background: var(--surface);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--border-strong);
  background: var(--bg-soft);
}

.btn-ghost {
  color: var(--text-muted);
  background: transparent;
}

.btn-lg {
  min-height: 53px;
  border-radius: 15px;
  padding: 14px 22px;
}

.btn-white {
  color: #333232;
  background: #fff;
}

.btn-white:hover {
  color: #333232;
  background: #fff5f5;
}

.btn-outline-white {
  border-color: rgba(51, 50, 50, 0.28);
  color: #333232;
  background: rgba(255, 255, 255, 0.16);
}

.btn-outline-white:hover {
  border-color: rgba(51, 50, 50, 0.40);
  color: #333232;
  background: rgba(255, 255, 255, 0.28);
}

.btn-soft-dark {
  border-color: rgba(255, 255, 255, 0.13);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.btn-soft-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-light-dark {
  color: #333232;
  background: #fff;
}

.btn-light-dark:hover {
  color: #333232;
  background: #fff5f5;
}

.btn-dark {
  color: #fff;
  background: var(--bg-dark);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(238, 232, 232, 0.86);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background:
    linear-gradient(145deg, var(--primary), #ff9aa1);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(255, 119, 128, 0.28);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 0.66rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.desktop-nav a {
  position: relative;
  color: #5a5656;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color var(--transition);
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  content: "";
  transition: right var(--transition);
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.theme-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--primary-soft-strong);
  background: var(--primary-soft);
}
.theme-toggle-sun, .theme-toggle-moon {
  position: absolute;
  display: grid;
  place-items: center;
  font-size: 1rem;
  transition: transform 260ms ease, opacity 220ms ease;
}
.theme-toggle-sun { opacity: 1; transform: translateY(0) rotate(0deg); }
.theme-toggle-moon { opacity: 0; transform: translateY(20px) rotate(-25deg); }
html[data-theme="dark"] .theme-toggle-sun { opacity: 0; transform: translateY(-20px) rotate(25deg); }
html[data-theme="dark"] .theme-toggle-moon { opacity: 1; transform: translateY(0) rotate(0deg); }

.mobile-menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 12px;
  background: var(--surface);
  cursor: pointer;
}

.mobile-menu-button span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-panel {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
}

.mobile-menu-panel.is-open {
  display: grid;
}

.mobile-menu-panel a {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  color: #514d4d;
  font-size: 0.9rem;
  font-weight: 650;
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
  color: var(--primary-deep);
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 23%, rgba(255, 119, 128, 0.14), transparent 30%),
    radial-gradient(circle at 20% 82%, rgba(255, 119, 128, 0.07), transparent 28%),
    #fff;
}

.hero-decoration {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.hero-decoration-one {
  top: 90px;
  right: -170px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 119, 128, 0.15);
}

.hero-decoration-two {
  top: 148px;
  right: -112px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 119, 128, 0.10);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 0.76fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-title {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.65rem);
  line-height: 0.99;
  letter-spacing: -0.06em;
}

.rotating-word-wrap {
  display: block;
  min-height: 1.08em;
  color: var(--primary);
  overflow: hidden;
}

.rotating-word {
  display: inline-block;
  will-change: transform, opacity;
}

.rotating-word.is-entering {
  animation: fadeInLeftWord 0.58s cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.rotating-word.is-leaving {
  animation: fadeOutRightWord 0.28s ease both;
}

@keyframes fadeInLeftWord {
  from {
    opacity: 0;
    transform: translate3d(-34px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeOutRightWord {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(22px, 0, 0);
  }
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: #5a5656;
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-trust i {
  color: var(--primary-deep);
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(100%, 470px);
  border: 1px solid rgba(238, 232, 232, 0.95);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.hero-card-main {
  padding: 23px;
  transform: rotate(1.2deg);
}

.hero-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mini-label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-heading {
  display: block;
  font-size: 1rem;
}

.status-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  border: 1px solid #ccefdc;
  border-radius: 999px;
  padding: 5px 9px;
  color: #087a4a;
  background: #effbf5;
  font-size: 0.7rem;
  font-weight: 750;
}

.status-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 166, 106, 0.38);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(32, 166, 106, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 166, 106, 0);
  }
}

.hero-service-stack {
  display: grid;
  gap: 9px;
  margin: 22px 0;
}

.hero-service-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 15px;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.hero-service-row:hover {
  transform: translateX(3px);
  border-color: var(--primary-soft-strong);
  background: var(--primary-soft);
}

.hero-service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-service-row strong,
.hero-service-row small {
  display: block;
}

.hero-service-row strong {
  font-size: 0.82rem;
}

.hero-service-row small {
  margin-top: 1px;
  color: var(--text-muted);
  font-size: 0.69rem;
}

.hero-service-row b {
  color: var(--primary);
  font-size: 1rem;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 15px;
  padding: 12px 14px;
  color: #fff;
  background: var(--bg-dark);
  font-size: 0.72rem;
}

.hero-card-footer span {
  color: #d8d3d3;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  border: 1px solid rgba(238, 232, 232, 0.92);
  border-radius: 17px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  animation: floatCard 5.8s ease-in-out infinite;
}

.floating-card-a {
  top: 82px;
  left: -30px;
}

.floating-card-b {
  right: -14px;
  bottom: 78px;
  animation-delay: -2.6s;
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-weight: 900;
}

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

.floating-card strong {
  font-size: 0.78rem;
}

.floating-card small {
  color: var(--text-muted);
  font-size: 0.68rem;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* MARQUEE */
.brand-marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.marquee-track {
  width: max-content;
  display: flex;
  animation: marqueeMove 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 16px 14px;
  white-space: nowrap;
}

.marquee-content span {
  color: #5d5858;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.marquee-content i {
  color: var(--primary);
  font-style: normal;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand-marquee:hover .marquee-track {
  animation-play-state: paused;
}

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

.stat-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stat-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 12px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-weight: 900;
}

.stat-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.stat-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* HORIZONTAL SLIDER */
.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.slider-btn:hover {
  transform: translateY(-1px);
  background: var(--primary-soft);
}

.horizontal-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 31%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.horizontal-slider::-webkit-scrollbar {
  display: none;
}

.ecosystem-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft-strong);
  box-shadow: var(--shadow-md);
}

.ecosystem-card-featured {
  border-color: transparent;
  color: #333232;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.24), transparent 27%),
    linear-gradient(145deg, var(--primary), #ff939a);
}

.ecosystem-card-featured p,
.ecosystem-card-featured .ecosystem-number {
  color: rgba(51, 50, 50, 0.78);
}

.ecosystem-card-featured .ecosystem-icon {
  color: #333232;
  background: rgba(255, 255, 255, 0.34);
}

.ecosystem-card-featured .ecosystem-link {
  color: #333232;
}

.ecosystem-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #b1aaaa;
  font-size: 0.78rem;
  font-weight: 800;
}

.ecosystem-badge {
  position: absolute;
  top: 23px;
  left: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 5px 9px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
  font-weight: 750;
}

.ecosystem-badge-dark {
  border-color: var(--border);
  color: var(--text);
  background: var(--bg-soft);
}

.ecosystem-card:has(.ecosystem-badge) .ecosystem-icon {
  margin-top: 38px;
}

.ecosystem-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 15px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-weight: 900;
}

.ecosystem-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.ecosystem-card p {
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ecosystem-link {
  margin-top: auto;
  color: var(--primary-deep);
  font-size: 0.83rem;
  font-weight: 700;
}

/* DIGITAL PRODUCTS */
.digital-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.digital-card {
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.digital-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 174, 180, 0.42);
  background: rgba(255, 255, 255, 0.085);
}

.digital-visual {
  height: 230px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px 30px;
  border-bottom: 1px solid var(--border-dark);
  background:
    radial-gradient(circle, rgba(255, 119, 128, 0.14), transparent 60%);
}

.digital-visual img {
  width: auto;
  height: auto;
  max-width: 68%;
  max-height: 168px;
  object-fit: scale-down;
  object-position: center;
  transition: transform 360ms ease;
}

.digital-card:hover .digital-visual img {
  transform: scale(1.025);
}

.digital-content {
  padding: 20px;
}

.digital-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.service-kicker {
  display: block;
  margin-bottom: 2px;
  color: #b9b0b0;
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.digital-content h3 {
  margin-bottom: 0;
  font-size: 1.26rem;
}

.product-status {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 5px 8px;
  color: #ffd5d8;
  background: rgba(255, 119, 128, 0.10);
  font-size: 0.64rem;
  font-weight: 700;
}

.digital-content > p {
  min-height: 93px;
  margin: 15px 0 20px;
  color: #bdb6b6;
  font-size: 0.86rem;
}

.digital-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.digital-actions .btn {
  padding-inline: 12px;
  font-size: 0.76rem;
}

/* VERIF NETFLIX */
.verif-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 119, 128, 0.13), transparent 28%),
    #fff;
}

.verif-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 78px;
}

.verif-copy h2 span {
  color: var(--primary);
}

.verif-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.verif-features {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.verif-features > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.verif-features > div > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-size: 0.8rem;
  font-weight: 900;
}

.verif-features p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.verif-features strong {
  display: block;
  margin-bottom: 1px;
  color: var(--text);
}

.verif-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.verify-demo {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.browser-window {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.browser-topbar {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 15px;
  border-bottom: 1px solid var(--border);
  background: #faf9f9;
  color: var(--text-muted);
  font-size: 0.68rem;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd7d7;
}

.browser-dots i:first-child {
  background: var(--primary);
}

.secure-dot {
  color: var(--success);
}

.browser-body {
  padding: 27px;
}

.verify-demo-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 28px;
}

.netflix-badge {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: #e50914;
  font-size: 1.35rem;
  font-weight: 900;
}

.verify-demo-head small,
.verify-demo-head strong {
  display: block;
}

.verify-demo-head small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.verify-demo-head strong {
  font-size: 1rem;
}

.mock-label {
  display: block;
  margin-bottom: 7px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.mock-input {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 0 14px;
  color: #aaa2a2;
  font-size: 0.82rem;
}

.mock-button {
  width: 100%;
  min-height: 48px;
  margin: 11px 0 22px;
  border: 0;
  border-radius: 13px;
  color: #333232;
  background: var(--primary);
  font-weight: 700;
  pointer-events: none;
}

.verify-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d8efe3;
  border-radius: 15px;
  padding: 13px 14px;
  background: #f5fcf8;
}

.verify-result > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.verify-result small {
  color: #577467;
}

.verify-result strong {
  color: #167449;
  font-size: 0.78rem;
}

.result-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: statusPulse 2s infinite;
}

.verification-lines {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.verification-lines span {
  height: 9px;
  border-radius: 999px;
  background: #f0eded;
  animation: skeletonPulse 2.1s ease-in-out infinite;
}

.verification-lines span:nth-child(2) {
  width: 76%;
  animation-delay: -0.7s;
}

.verification-lines span:nth-child(3) {
  width: 52%;
  animation-delay: -1.4s;
}

@keyframes skeletonPulse {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

.verify-floating {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 188px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.verify-floating-one {
  top: 52px;
  left: -36px;
}

.verify-floating-two {
  right: -20px;
  bottom: 48px;
}

.verify-floating > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-weight: 900;
}

.verify-floating strong,
.verify-floating small {
  display: block;
}

.verify-floating strong {
  font-size: 0.76rem;
}

.verify-floating small {
  color: var(--text-muted);
  font-size: 0.66rem;
}

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

.merchant-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.merchant-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft-strong);
  box-shadow: var(--shadow-md);
}

.merchant-logo {
  height: 110px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, #fff, #fffafa);
}

.merchant-logo img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.merchant-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.merchant-type {
  margin-bottom: 4px;
  color: var(--primary-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.merchant-content h3 {
  margin-bottom: 7px;
  font-size: 1.03rem;
}

.merchant-content p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.merchant-link {
  margin-top: auto;
  color: var(--primary-deep);
  font-size: 0.79rem;
  font-weight: 700;
}

.mobile-section-cta {
  display: none;
  margin-top: 22px;
}

/* RESELLER */
.reseller-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 8%, rgba(255, 119, 128, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
}

.reseller-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 78px;
}

.reseller-heading-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.reseller-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--text-muted);
  background: var(--surface);
  font-size: 0.66rem;
  font-weight: 700;
}

.reseller-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.reseller-copy h2 span {
  display: block;
  color: var(--primary);
}

.reseller-lead {
  max-width: 710px;
  margin-bottom: 28px;
  color: var(--text-muted);
}

.reseller-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 26px;
}

.reseller-benefit-grid > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-height: 104px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.reseller-benefit-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-size: 0.76rem;
  font-weight: 900;
}

.reseller-benefit-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.77rem;
}

.reseller-benefit-grid strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.8rem;
}

.reseller-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reseller-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.reseller-audience span {
  border-radius: 999px;
  padding: 6px 9px;
  color: #756f6f;
  background: var(--bg-soft);
  font-size: 0.66rem;
  font-weight: 600;
}

.reseller-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.reseller-phone {
  position: relative;
  z-index: 3;
  width: min(100%, 355px);
  min-height: 550px;
  overflow: hidden;
  border: 8px solid var(--bg-dark);
  border-radius: 38px;
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.8deg);
}

.reseller-phone::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 92px;
  height: 21px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--bg-dark);
  content: "";
}

.reseller-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 9px 2px 26px;
  color: #827b7b;
  font-size: 0.58rem;
  font-weight: 700;
}

.reseller-profile {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.reseller-avatar {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #ff9da3);
  font-weight: 900;
}

.reseller-profile small,
.reseller-profile strong {
  display: block;
}

.reseller-profile small {
  color: var(--text-muted);
  font-size: 0.62rem;
}

.reseller-profile strong {
  font-size: 0.8rem;
}

.reseller-story-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 12px;
  border-radius: 22px;
  padding: 19px;
}

.story-pink {
  color: #fff;
  background:
    radial-gradient(circle at 88% 6%, rgba(255, 255, 255, 0.28), transparent 25%),
    linear-gradient(145deg, var(--primary), #ff9ba2);
}

.story-dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 119, 128, 0.24), transparent 25%),
    var(--bg-dark);
}

.story-label {
  margin-bottom: auto;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.reseller-story-card strong {
  margin-top: 30px;
  font-size: 1rem;
  line-height: 1.25;
}

.reseller-story-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
}

.reseller-phone-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 12px 13px;
}

.reseller-phone-cta span {
  grid-column: 1;
  color: var(--text-muted);
  font-size: 0.58rem;
}

.reseller-phone-cta strong {
  grid-column: 1;
  font-size: 0.69rem;
}

.reseller-phone-cta i {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--primary-deep);
  font-style: normal;
  font-size: 1.1rem;
}

.reseller-floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  animation: floatCard 5.8s ease-in-out infinite;
}

.reseller-floating-one {
  top: 72px;
  left: -26px;
}

.reseller-floating-two {
  right: -22px;
  bottom: 75px;
  animation-delay: -2.4s;
}

.reseller-floating-card > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-size: 0.66rem;
  font-weight: 900;
}

.reseller-floating-card strong,
.reseller-floating-card small {
  display: block;
}

.reseller-floating-card strong {
  font-size: 0.74rem;
}

.reseller-floating-card small {
  color: var(--text-muted);
  font-size: 0.63rem;
}

.active-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(32, 166, 106, 0.22);
  border-radius: 999px;
  padding: 5px 9px;
  color: #087a4a;
  background: #effbf5;
  font-size: 0.68rem;
  font-weight: 750;
}
.active-service-pill i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--success); animation: statusPulse 2s infinite;
}
html[data-theme="dark"] .active-service-pill {
  border-color: rgba(98, 223, 154, 0.18);
  color: #81e9ad;
  background: rgba(32, 166, 106, 0.10);
}

/* TICKETING */
.ticketing-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 119, 128, 0.11), transparent 26%),
    #fff;
}

.ticketing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: 82px;
}

.ticketing-label-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.soon-pill {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--text-muted);
  background: var(--bg-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.ticketing-copy h2 span {
  display: block;
  color: var(--primary);
}

.ticketing-copy > p {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--text-muted);
}

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

.ticketing-feature-grid > div {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--surface);
}

.ticketing-feature-grid span,
.ticketing-feature-grid strong,
.ticketing-feature-grid small {
  display: block;
}

.ticketing-feature-grid span {
  margin-bottom: 16px;
  color: var(--primary-deep);
  font-size: 0.68rem;
  font-weight: 800;
}

.ticketing-feature-grid strong {
  margin-bottom: 2px;
  font-size: 0.82rem;
}

.ticketing-feature-grid small {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.ticketing-note {
  display: flex;
  gap: 10px;
  margin: 17px 0 25px;
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--bg-soft);
}

.ticketing-note > span {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 0.7rem;
  font-weight: 900;
}

.ticketing-note p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.ticketing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ticketing-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.ticket-card {
  border-radius: 28px;
}

.ticket-card-main {
  position: relative;
  z-index: 3;
  width: min(100%, 450px);
  min-height: 390px;
  padding: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 2%, rgba(255, 119, 128, 0.36), transparent 32%),
    var(--bg-dark);
  box-shadow: var(--shadow-lg);
}

.ticket-card-main::before,
.ticket-card-main::after {
  position: absolute;
  top: 62%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.ticket-card-main::before {
  left: -12px;
}

.ticket-card-main::after {
  right: -12px;
}

.ticket-card-back {
  position: absolute;
  z-index: 1;
  top: 34px;
  right: -6px;
  width: 250px;
  min-height: 330px;
  padding: 28px;
  transform: rotate(9deg);
  color: var(--text);
  background:
    linear-gradient(150deg, var(--primary-soft), #fff);
  box-shadow: var(--shadow-md);
}

.ticket-card-back span,
.ticket-card-back strong,
.ticket-card-back small {
  display: block;
}

.ticket-card-back span {
  color: var(--primary-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ticket-card-back strong {
  margin-top: 110px;
  font-size: 2.8rem;
  letter-spacing: -0.05em;
}

.ticket-card-back small {
  color: var(--text-muted);
}

.ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 56px;
}

.ticket-brand {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ticket-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 5px 8px;
  color: #e4dddd;
  font-size: 0.62rem;
}

.ticket-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62df9a;
}

.ticket-kicker {
  display: block;
  margin-bottom: 3px;
  color: #ffb9be;
  font-size: 0.7rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ticket-card-main h3 {
  margin-bottom: 28px;
  font-size: 1.78rem;
  letter-spacing: -0.04em;
}

.ticket-event {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.ticket-date {
  width: 55px;
  flex: 0 0 55px;
  text-align: center;
}

.ticket-date strong,
.ticket-date small {
  display: block;
}

.ticket-date strong {
  color: #fff;
  font-size: 1.45rem;
}

.ticket-date small {
  color: #ffb9be;
  font-size: 0.62rem;
  font-weight: 800;
}

.ticket-event > div small,
.ticket-event > div strong,
.ticket-event > div span {
  display: block;
}

.ticket-event > div small {
  color: #999090;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ticket-event > div strong {
  margin: 2px 0;
  font-size: 0.78rem;
}

.ticket-event > div span {
  color: #bdb6b6;
  font-size: 0.67rem;
}

.ticket-progress {
  margin: 23px 0;
}

.ticket-progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #c8c0c0;
  font-size: 0.65rem;
}

.ticket-progress-label strong {
  color: #ffb9be;
}

.ticket-progress-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.ticket-progress-bar i {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #ffabb0);
  animation: queueProgress 3.2s ease-in-out infinite alternate;
}

@keyframes queueProgress {
  from {
    width: 70%;
  }
  to {
    width: 94%;
  }
}

.ticket-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 25px;
  color: #817979;
  font-size: 0.58rem;
}

.barcode {
  color: #cfc7c7;
  font-family: monospace;
  letter-spacing: 2px;
}

.ticket-mini-card {
  position: absolute;
  z-index: 4;
  left: -24px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 11px 13px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.ticket-mini-card > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-weight: 900;
}

.ticket-mini-card strong,
.ticket-mini-card small {
  display: block;
}

.ticket-mini-card strong {
  font-size: 0.75rem;
}

.ticket-mini-card small {
  color: var(--text-muted);
  font-size: 0.64rem;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 14px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-size: 1.05rem;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.feature-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--text-muted);
}

.feature-highlight {
  color: #333232;
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.22), transparent 25%),
    linear-gradient(145deg, var(--primary), #ff9198);
}

.feature-highlight .feature-icon {
  color: #333232;
  background: rgba(255, 255, 255, 0.34);
}

.feature-highlight p {
  color: rgba(51, 50, 50, 0.82);
}

.feature-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid rgba(51, 50, 50, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: #333232;
  background: rgba(255, 255, 255, 0.28);
  font-size: 0.66rem;
  font-weight: 750;
}

/* CLEAN STEPS — NO IMAGE BACKGROUND */
.steps-clean {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.clean-step {
  text-align: center;
}

.step-image-clean {
  height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;

  /* IMPORTANT:
     sengaja TANPA background / border / shadow. */
  background: transparent;
  border: 0;
  box-shadow: none;
}

.step-image-clean img {
  max-width: 100%;
  max-height: 190px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 16px 24px rgba(51, 50, 50, 0.08));
  transition: transform 300ms ease;
}

.clean-step:hover .step-image-clean img {
  transform: translateY(-6px);
}

.clean-step > span {
  display: inline-grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.clean-step h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.clean-step p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* PAYMENT */
.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 80px;
}

.payment-copy > p {
  max-width: 630px;
}

.payment-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
}

.payment-mini-points span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 11px;
  color: #5c5757;
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 600;
}

.payment-image-wrap {
  position: relative;
}

.payment-image-wrap::before {
  position: absolute;
  inset: 15% -4% -10% 15%;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 119, 128, 0.11);
  filter: blur(35px);
  content: "";
}

.payment-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(51, 50, 50, 0.08));
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  align-items: start;
  gap: 80px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-intro > p {
  margin-bottom: 24px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--surface);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 20px;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
}

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

.faq-item summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  transition: transform var(--transition);
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-muted);
}

/* CTA */
.cta-section {
  padding-top: 34px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 48px;
  color: #333232;
  background:
    radial-gradient(circle at 96% 4%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, var(--primary), #ff9097);
  box-shadow: 0 22px 60px rgba(255, 119, 128, 0.28);
}

.cta-card h2 {
  max-width: 700px;
}

.cta-card p {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(51, 50, 50, 0.82);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

/* FOOTER */
.site-footer {
  margin-top: 90px;
  padding: 70px 0 24px;
  color: #d7d0d0;
  background: var(--bg-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 0.6fr));
  gap: 50px;
}

.brand-footer .brand-copy strong {
  color: #fff;
}

.brand-footer .brand-copy small {
  color: #a9a0a0;
}

.footer-brand > p {
  max-width: 450px;
  margin: 22px 0 0;
  color: #a9a0a0;
  font-size: 0.86rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.88rem;
}

.footer-column a,
.footer-column span {
  color: #a9a0a0;
  font-size: 0.8rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #887f7f;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

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

/* PRICING MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 22px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 28, 28, 0.66);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: modalBackdropIn 220ms ease forwards;
}

.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 27px;
  padding: 28px;
  background: var(--surface);
  box-shadow: 0 30px 100px rgba(20, 18, 18, 0.28);
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  animation: modalDialogIn 320ms cubic-bezier(0.2, 0.75, 0.3, 1) forwards;
}

@keyframes modalBackdropIn {
  to {
    opacity: 1;
  }
}

@keyframes modalDialogIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--surface);
  font-size: 1.25rem;
  cursor: pointer;
}

.modal-service-head {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 45px;
}

.modal-service-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: var(--bg-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.modal-kicker {
  display: block;
  margin-bottom: 2px;
  color: var(--primary-deep);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.modal-service-head h2 {
  margin-bottom: 2px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.modal-service-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.modal-price-highlight {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 25px 0 16px;
  border-radius: 17px;
  padding: 17px;
  background: var(--primary-soft);
}

.modal-price-highlight span {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.modal-price-highlight strong {
  color: var(--primary-deep);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.pricing-option-list {
  display: grid;
  gap: 9px;
}

.pricing-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
}

.pricing-option > div {
  min-width: 0;
}

.pricing-option strong,
.pricing-option small {
  display: block;
}

.pricing-option strong {
  margin-bottom: 1px;
  font-size: 0.82rem;
}

.pricing-option small {
  color: var(--text-muted);
  font-size: 0.7rem;
}

.pricing-option > span {
  flex: 0 0 auto;
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 750;
}

.modal-note {
  margin-top: 15px;
  border-radius: 13px;
  padding: 12px 13px;
  color: var(--text-muted);
  background: #f8f6f6;
  font-size: 0.73rem;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  margin-top: 20px;
}

/* REVEAL ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="up"] {
  transform: translate3d(0, 28px, 0);
}

[data-reveal="left"] {
  transform: translate3d(-34px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(34px, 0, 0);
}

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

/* ============================================================
   DARK MODE OVERRIDES
   ============================================================ */
html[data-theme="dark"] body { background: var(--bg); color: var(--text); }
html[data-theme="dark"] .site-header { border-color: var(--border); background: rgba(32,31,31,.90); }
html[data-theme="dark"] .mobile-menu-panel,
html[data-theme="dark"] .mobile-menu-button,
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .slider-btn,
html[data-theme="dark"] .stat-card,
html[data-theme="dark"] .ecosystem-card,
html[data-theme="dark"] .merchant-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .modal-dialog,
html[data-theme="dark"] .modal-close,
html[data-theme="dark"] .browser-window,
html[data-theme="dark"] .reseller-phone,
html[data-theme="dark"] .reseller-benefit-grid > div,
html[data-theme="dark"] .reseller-floating-card,
html[data-theme="dark"] .verify-floating,
html[data-theme="dark"] .ticket-mini-card,
html[data-theme="dark"] .floating-card { color: var(--text); border-color: var(--border); background: var(--surface); }
html[data-theme="dark"] .hero,
html[data-theme="dark"] .verif-section,
html[data-theme="dark"] .ticketing-section { background: radial-gradient(circle at 86% 20%, rgba(255,119,128,.09), transparent 28%), var(--bg); }
html[data-theme="dark"] .reseller-section { background: radial-gradient(circle at 94% 8%, rgba(255,119,128,.10), transparent 28%), linear-gradient(180deg, var(--bg) 0%, #252323 100%); }
html[data-theme="dark"] .section-soft { background: radial-gradient(circle at 90% 0%, rgba(255,119,128,.06), transparent 25%), var(--bg-soft); }
html[data-theme="dark"] .brand-marquee { border-color: var(--border); background: var(--surface); }
html[data-theme="dark"] .marquee-content span,
html[data-theme="dark"] .desktop-nav a,
html[data-theme="dark"] .hero-trust,
html[data-theme="dark"] .payment-mini-points span { color: var(--text-muted); }
html[data-theme="dark"] .hero-card { border-color: var(--border); background: rgba(41,39,39,.96); }
html[data-theme="dark"] .hero-service-row,
html[data-theme="dark"] .pricing-option,
html[data-theme="dark"] .mock-input,
html[data-theme="dark"] .payment-mini-points span { border-color: var(--border); background: var(--surface); }
html[data-theme="dark"] .hero-service-row:hover,
html[data-theme="dark"] .btn-secondary:hover,
html[data-theme="dark"] .btn-ghost:hover,
html[data-theme="dark"] .slider-btn:hover { background: var(--primary-soft); }
html[data-theme="dark"] .merchant-logo { border-color: var(--border); background: linear-gradient(180deg,#2a2828,#242222); }
html[data-theme="dark"] .browser-topbar { border-color: var(--border); background: #242222; }
html[data-theme="dark"] .verify-result { border-color: rgba(98,223,154,.14); background: rgba(32,166,106,.09); }
html[data-theme="dark"] .verification-lines span { background: #3d3939; }
html[data-theme="dark"] .reseller-phone-cta { border-color: var(--border); }
html[data-theme="dark"] .ticket-card-main::before,
html[data-theme="dark"] .ticket-card-main::after { background: var(--bg); }
html[data-theme="dark"] .ticket-card-back { color: var(--text); background: linear-gradient(150deg,#3a2d2f,var(--surface)); }
html[data-theme="dark"] .ticketing-note,
html[data-theme="dark"] .modal-note { background: var(--bg-soft); }
html[data-theme="dark"] .modal-price-highlight { background: var(--primary-soft); }
html[data-theme="dark"] .modal-backdrop { background: rgba(0,0,0,.72); }
html[data-theme="dark"] .product-status,
html[data-theme="dark"] .ecosystem-badge-dark,
html[data-theme="dark"] .soon-pill,
html[data-theme="dark"] .reseller-audience span { border-color: var(--border); color: var(--text-muted); background: var(--bg-soft); }


/* ============================================================
   DARK MODE CONTRAST PATCH v2.2.1
   ============================================================ */

/* Fixed-white buttons must never inherit the light text variable. */
html[data-theme="dark"] .btn-white,
html[data-theme="dark"] .btn-light-dark {
  color: #333232;
  background: #ffffff;
}

html[data-theme="dark"] .btn-white:hover,
html[data-theme="dark"] .btn-light-dark:hover {
  color: #333232;
  background: #fff5f5;
}

/* Mobile navigation previously kept a fixed dark text color. */
html[data-theme="dark"] .mobile-menu-panel a {
  color: var(--text-muted);
}

html[data-theme="dark"] .mobile-menu-panel a:last-child {
  color: var(--primary-deep);
}

/* Surfaces that were not covered by the original dark-mode selector. */
html[data-theme="dark"] .reseller-pill,
html[data-theme="dark"] .ticketing-feature-grid > div {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface);
}

html[data-theme="dark"] .reseller-phone-top {
  color: var(--text-muted);
}

/* Keep the two pink featured cards featured instead of turning them grey. */
html[data-theme="dark"] .ecosystem-card.ecosystem-card-featured {
  color: #333232;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.24), transparent 27%),
    linear-gradient(145deg, var(--primary), #ff939a);
}

html[data-theme="dark"] .ecosystem-card.ecosystem-card-featured p,
html[data-theme="dark"] .ecosystem-card.ecosystem-card-featured .ecosystem-number {
  color: rgba(51, 50, 50, 0.78);
}

html[data-theme="dark"] .ecosystem-card.ecosystem-card-featured .ecosystem-icon,
html[data-theme="dark"] .ecosystem-card.ecosystem-card-featured .ecosystem-link {
  color: #333232;
}

html[data-theme="dark"] .feature-card.feature-highlight {
  color: #333232;
  border-color: transparent;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.22), transparent 25%),
    linear-gradient(145deg, var(--primary), #ff9198);
}

html[data-theme="dark"] .feature-card.feature-highlight p {
  color: rgba(51, 50, 50, 0.82);
}

html[data-theme="dark"] .feature-card.feature-highlight .feature-icon,
html[data-theme="dark"] .feature-card.feature-highlight .feature-badge {
  color: #333232;
}

/* Improve subtle labels on dark surfaces. */
html[data-theme="dark"] .ecosystem-number {
  color: var(--text-soft);
}

html[data-theme="dark"] .ticketing-feature-grid small,
html[data-theme="dark"] .ticket-mini-card small,
html[data-theme="dark"] .reseller-floating-card small,
html[data-theme="dark"] .verify-floating small,
html[data-theme="dark"] .floating-card small {
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.8rem;
  }

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

  .horizontal-slider {
    grid-auto-columns: minmax(300px, 44%);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .section {
    padding: 82px 0;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 62px;
  }

  .hero-grid,
  .verif-grid,
  .reseller-grid,
  .ticketing-grid,
  .payment-grid,
  .faq-layout,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(590px, 100%);
    min-height: 480px;
    margin-inline: auto;
  }

  .hero-card-main {
    transform: none;
  }

  .floating-card-a {
    left: 0;
  }

  .floating-card-b {
    right: 0;
  }

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

  .section-heading-row {
    align-items: flex-start;
  }

  .horizontal-slider {
    grid-auto-columns: minmax(310px, 62%);
  }

  .verif-grid,
  .reseller-grid,
  .ticketing-grid,
  .payment-grid {
    gap: 42px;
  }

  .verify-demo,
  .reseller-visual,
  .ticketing-visual {
    width: min(610px, 100%);
    margin-inline: auto;
  }

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

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

  .faq-intro {
    position: static;
  }

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-title {
    font-size: clamp(2.65rem, 12.5vw, 4rem);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

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

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

  .hero-trust {
    gap: 10px 15px;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-card-main {
    padding: 17px;
    border-radius: 22px;
  }

  .floating-card {
    display: none;
  }

  .hero-service-row {
    grid-template-columns: 38px 1fr auto;
    padding: 10px;
  }

  .hero-service-icon {
    width: 38px;
    height: 38px;
  }

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

  .split-heading {
    gap: 18px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .slider-controls {
    align-self: flex-end;
  }

  .stats-grid,
  .digital-grid,
  .jasdor-grid,
  .steps-clean,
  .ticketing-feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-slider {
    grid-auto-columns: 88%;
  }

  .ecosystem-card {
    min-height: 300px;
  }

  .digital-visual {
    height: 205px;
    padding: 26px 24px;
  }

  .digital-visual img {
    max-width: 62%;
    max-height: 145px;
  }

  .digital-content > p {
    min-height: auto;
  }

  .digital-actions {
    grid-template-columns: 1fr 0.7fr;
  }

  .verify-demo,
  .reseller-visual,
  .ticketing-visual {
    min-height: 420px;
  }

  .reseller-benefit-grid {
    grid-template-columns: 1fr;
  }

  .reseller-phone {
    width: min(100%, 325px);
    min-height: 520px;
    transform: none;
  }

  .reseller-floating-card,
  .verify-floating {
    display: none;
  }

  .browser-body {
    padding: 20px;
  }

  .ticket-card-main {
    min-height: 370px;
    padding: 20px;
  }

  .ticket-card-back {
    width: 210px;
    min-height: 290px;
    right: 0;
  }

  .ticket-mini-card {
    left: 4px;
    bottom: 14px;
  }

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

  .feature-icon {
    margin-bottom: 28px;
  }

  .step-image-clean {
    height: 165px;
  }

  .step-image-clean img {
    max-height: 165px;
  }

  .payment-image-wrap {
    padding: 0;
  }

  .cta-section {
    padding-top: 18px;
  }

  .cta-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .site-footer {
    margin-top: 54px;
    padding-top: 54px;
  }

  .footer-grid {
    gap: 34px;
  }

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

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal-dialog {
    width: 100%;
    max-height: 86vh;
    border-radius: 24px 24px 0 0;
    padding: 22px 18px calc(20px + env(safe-area-inset-bottom));
    transform: translateY(40px);
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .modal-actions .btn {
    width: 100%;
  }

  .mobile-section-cta {
    display: block;
  }

  .mobile-section-cta .btn {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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