/* ============================================================
   Ligafox — Berita Bola Landing
   ============================================================ */

:root,
[data-theme="light"] {
  --ink: #07140f;
  --pitch: #0a1f16;
  --turf: #1b5e3b;
  --lime: #c8f542;
  --lime-dim: rgba(200, 245, 66, 0.16);
  --paper: #f2f7f1;
  --mist: #3a4f43;
  --text: #06150e;
  --heading: #04110a;
  --surface: #ffffff;
  --border: rgba(6, 21, 14, 0.1);
  --tag: #177a42;
  --league-bg: #d8eedc;
  --league-fg: #06150e;
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --container-max: 1120px;
  --header-h: 4.25rem;
}

[data-theme="dark"] {
  --paper: #0b1a12;
  --surface: #12261a;
  --text: #eef6f0;
  --heading: #ffffff;
  --mist: #b7cfc0;
  --border: rgba(200, 245, 66, 0.18);
  --tag: #c8f542;
  --league-bg: #c8f542;
  --league-fg: #06150e;
}

[data-theme="dark"] .content-section--alt {
  background:
    linear-gradient(180deg, rgba(200, 245, 66, 0.05) 0%, transparent 100%),
    var(--paper);
}

[data-theme="dark"] .feature-lines li:hover {
  background: rgba(200, 245, 66, 0.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* Konten SEO selalu kontras tinggi — tidak ikut gelap karena user-mode */
.white-content {
  background: var(--paper);
  color: var(--text);
}

.white-content .content-wrap {
  background: var(--paper);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: max(0.85rem, env(safe-area-inset-top)) 0 0.75rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-solid {
  position: fixed;
  background: rgba(7, 20, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 245, 66, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  width: min(168px, 42vw);
  height: auto;
}

.main-nav {
  display: none;
  gap: 1.35rem;
}

.main-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover {
  color: var(--lime);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 0.55rem 0.95rem;
  border-radius: 4px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #d4ff5a;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(7, 20, 15, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.theme-toggle:hover {
  border-color: rgba(200, 245, 66, 0.45);
  background: rgba(7, 20, 15, 0.55);
}

[data-theme="dark"] .theme-toggle__icon--sun,
[data-theme="light"] .theme-toggle__icon--moon,
:root:not([data-theme]) .theme-toggle__icon--moon {
  display: none;
}

[data-theme="dark"] .theme-toggle__icon--moon {
  display: block;
}

[data-theme="light"] .theme-toggle__icon--sun {
  display: block;
}

@media (min-width: 820px) {
  .main-nav {
    display: flex;
  }
}

/* —— Hero —— */
.hero-landing {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-landing__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-landing__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-landing__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 20, 15, 0.35) 0%, rgba(7, 20, 15, 0.55) 38%, rgba(7, 20, 15, 0.92) 78%, #07140f 100%),
    radial-gradient(ellipse 80% 50% at 70% 20%, rgba(27, 94, 59, 0.45), transparent 60%);
}

.hero-landing__grain {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 8px,
    rgba(200, 245, 66, 0.15) 8px,
    rgba(200, 245, 66, 0.15) 9px
  );
  animation: grain-drift 18s linear infinite;
}

@keyframes grain-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-40px); }
}

.hero-landing__content {
  position: relative;
  z-index: 5;
  padding: 5.5rem 0 2.75rem;
  max-width: 42rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 11vw, 5.5rem);
  font-optical-sizing: auto;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  animation: rise-in 0.8s ease both;
}

.hero-brand span {
  color: var(--lime);
}

.hero-landing h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 3.8vw, 1.9rem);
  font-optical-sizing: auto;
  line-height: 1.28;
  letter-spacing: -0.015em;
  max-width: 20ch;
  margin-bottom: 0.85rem;
  animation: rise-in 0.85s 0.08s ease both;
}

.hero-landing__lead {
  font-size: clamp(0.92rem, 2.6vw, 1.05rem);
  color: rgba(232, 242, 234, 0.78);
  max-width: 36em;
  margin-bottom: 1.5rem;
  animation: rise-in 0.9s 0.14s ease both;
}

.hero-landing__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  animation: rise-in 0.95s 0.2s ease both;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

.btn-primary:hover {
  background: #d4ff5a;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  margin-right: 0.45rem;
  animation: pulse 1.6s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(7, 20, 15, 0.35); }
  50% { opacity: 0.75; transform: scale(0.92); box-shadow: 0 0 0 8px rgba(7, 20, 15, 0); }
}

/* —— Topic rail —— */
.topic-rail {
  background: linear-gradient(180deg, #07140f 0%, #0c2218 100%);
  color: #fff;
  padding: 1.65rem 0;
  border-top: 1px solid rgba(200, 245, 66, 0.12);
}

.topic-rail__inner {
  display: grid;
  gap: 0.55rem;
}

.topic-rail__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.topic-rail__line {
  font-size: clamp(0.88rem, 2.2vw, 1rem);
  font-weight: 500;
  color: rgba(232, 242, 234, 0.82);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.topic-rail__line span {
  color: var(--lime);
  margin: 0 0.35rem;
  opacity: 0.85;
}

/* —— Content —— */
.content-wrap {
  padding: 0;
  background:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(27, 94, 59, 0.07), transparent 55%),
    var(--paper);
}

.section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-child {
  border-bottom: none;
  padding-bottom: 4.5rem;
}

.content-section--alt {
  background:
    linear-gradient(180deg, rgba(27, 94, 59, 0.05) 0%, transparent 100%),
    var(--paper);
}

.section-layout {
  display: grid;
  gap: 1.75rem;
}

.section-head {
  margin-bottom: 0;
}

.section-head--wide {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-layout--jadwal .section-head h2 {
  max-width: 13ch;
}

.section-layout--jadwal .section-lead {
  margin-top: 1rem;
  margin-bottom: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: 0.75rem;
}

.section-tag::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--tag);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  font-optical-sizing: auto;
  letter-spacing: -0.025em;
  line-height: 1.15;
  max-width: 14ch;
  color: var(--heading);
}

.section-head--wide h2 {
  max-width: 20ch;
}

.section-lead {
  color: var(--mist);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38em;
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.section-body .section-lead {
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.feature-lines {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.feature-lines li {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 0 1.15rem 1.1rem;
  border-bottom: 1px solid var(--border);
  border-left: 3px solid var(--tag);
  color: var(--mist);
  transition: background 0.2s ease, border-left-color 0.2s ease;
}

.feature-lines li:hover {
  background: rgba(27, 94, 59, 0.04);
  border-left-color: var(--lime);
}

.feature-lines strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  font-optical-sizing: auto;
  color: var(--heading);
  letter-spacing: -0.015em;
}

.feature-lines span {
  font-size: 0.94rem;
  line-height: 1.5;
}

.feature-grid {
  display: grid;
  gap: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
}

.feature-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-item__index {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--tag);
  margin-bottom: 0.45rem;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--heading);
}

.feature-item p {
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 28em;
}

/* —— Jadwal section —— */
.schedule-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.schedule-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.schedule-item:hover {
  background: rgba(27, 94, 59, 0.035);
}

.schedule-item__index {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--tag);
  padding-top: 0.28rem;
  line-height: 1;
}

.schedule-item__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  color: var(--heading);
}

.schedule-item__body p {
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 34em;
}

.leagues {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
}

.leagues__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tag);
}

.leagues__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0;
  color: var(--mist);
  font-size: 0.92rem;
  line-height: 1.6;
}

.leagues__list li {
  display: inline;
}

.leagues__list li:not(:last-child)::after {
  content: "·";
  margin: 0 0.55rem;
  color: var(--tag);
  opacity: 0.7;
}

[data-theme="dark"] .schedule-item:hover {
  background: rgba(200, 245, 66, 0.05);
}

.process-steps {
  list-style: none;
  display: grid;
  gap: 0;
  margin-bottom: 1.85rem;
  border-top: 1px solid var(--border);
}

.process-steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.process-steps__num {
  flex: 0 0 auto;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 4px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--lime);
  color: var(--ink);
}

.process-steps strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
  color: var(--heading);
}

.process-steps p {
  color: var(--mist);
  font-size: 0.92rem;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 52px;
  padding: 0.85rem 1.5rem;
  border-radius: 4px;
  background: var(--ink);
  color: var(--lime);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-primary:hover {
  transform: translateY(-1px);
  background: #0d2418;
}

[data-theme="dark"] .cta-primary {
  background: var(--lime);
  color: var(--ink);
}

.cta-primary.cta-aggressive {
  background: var(--lime);
  color: var(--ink);
  border-radius: 4px;
  box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.45);
  animation: cta-glow 1.8s ease infinite;
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(200, 245, 66, 0); }
}

/* —— FAQ —— */
.faq-wrapper {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-details summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-weight: 700;
  color: var(--heading);
  padding: 1.15rem 0;
  transition: color 0.2s ease;
}

.faq-details summary:hover {
  color: var(--tag);
}

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

.faq-details__q {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--tag);
  flex: 0 0 1.75rem;
}

.faq-details__label {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
  line-height: 1.4;
  color: inherit;
  flex: 1;
}

.faq-details p {
  margin: 0 0 1.15rem;
  padding-left: 2.65rem;
  color: var(--mist);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 40em;
}

/* —— Footer —— */
.site-footer {
  background:
    linear-gradient(180deg, #0c2218 0%, #07140f 100%);
  color: rgba(232, 242, 234, 0.55);
  padding: 2.75rem 0 max(1.75rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(200, 245, 66, 0.12);
}

.footer-simple {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo img {
  width: 160px;
  height: auto;
  opacity: 0.92;
}

.footer-copy {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* —— Overlay —— */
.black-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(27, 94, 59, 0.45), transparent 55%),
    #07140f;
  color: #fff;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.black-overlay.active {
  opacity: 1;
}

.black-overlay-close {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top));
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.splash-logo {
  text-align: center;
  margin-bottom: 1.25rem;
}

.splash-tagline {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.splash-logo img {
  width: min(220px, 70vw);
  margin-inline: auto;
}

.sales-content {
  width: min(100%, 420px);
  text-align: center;
}

.sales-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.55rem;
}

.sales-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.5vw, 1.55rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.countdown {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(200, 245, 66, 0.28);
  border-radius: 12px;
  background: rgba(200, 245, 66, 0.08);
}

.countdown__label {
  font-size: 0.72rem;
  color: rgba(232, 242, 234, 0.65);
}

.countdown__time {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: 0.06em;
}

.live-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.1rem;
  margin-bottom: 1.1rem;
  font-size: 0.86rem;
  color: rgba(232, 242, 234, 0.8);
}

.live-stat__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 0.35rem;
  animation: pulse 1.6s ease infinite;
  vertical-align: middle;
}

.overlay-product {
  margin: 0 auto 1.15rem;
  width: min(220px, 58vw);
}

.overlay-product img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(200, 245, 66, 0.22);
}

.overlay-product__cap {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: rgba(232, 242, 234, 0.6);
}

.testimonials {
  margin-bottom: 1.25rem;
  min-height: 5.5rem;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: rise-in 0.45s ease both;
}

.testimonial-slide p {
  font-size: 0.92rem;
  color: rgba(232, 242, 234, 0.88);
  margin-bottom: 0.4rem;
}

.testimonial-slide cite {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--lime);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.testimonial-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.testimonial-dots .dot.active {
  background: var(--lime);
}

.cta-aggressive {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border-radius: 4px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  animation: cta-glow 1.8s ease infinite;
}

.cta-note {
  font-size: 0.78rem;
  color: rgba(232, 242, 234, 0.55);
}

/* Jangan paksa background gelap — ikut tema agar teks tetap terbaca */
body.user-mode {
  background: var(--paper);
}

body.user-mode .white-content {
  background: var(--paper);
  color: var(--text);
}

/* —— Responsive —— */
@media (min-width: 720px) {
  .section {
    padding: 4.25rem 0;
  }

  .section-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2.5rem 3.5rem;
    align-items: start;
  }

  .section-head h2 {
    max-width: 12ch;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
  }

  .feature-item:nth-child(odd) {
    padding-right: 0.5rem;
  }

  .feature-item:nth-child(even) {
    padding-left: 0.5rem;
  }

  .schedule-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
    border-top: none;
  }

  .schedule-item {
    padding: 1.15rem 0;
  }

  .schedule-item:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--border);
  }

  .schedule-item:nth-child(even) {
    padding-left: 1rem;
  }

  .schedule-item:nth-child(-n+2) {
    border-top: 1px solid var(--border);
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: none;
  }

  .process-steps li {
    flex-direction: column;
    gap: 0.85rem;
    padding: 0 1.25rem 0 0;
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .process-steps li:last-child {
    border-right: none;
    padding-right: 0;
  }

  .hero-landing__content {
    padding-bottom: 3rem;
  }
}

@media (min-width: 980px) {
  .container {
    width: min(100% - 3rem, var(--container-max));
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }

  .feature-item:nth-child(odd),
  .feature-item:nth-child(even) {
    padding-left: 0;
    padding-right: 1rem;
  }

  .section-layout {
    gap: 3rem 4.5rem;
  }

  .section-layout--jadwal {
    gap: 3rem 4rem;
  }

  .hero-landing__content {
    padding-bottom: 3.5rem;
  }
}

@media (max-height: 680px) and (orientation: portrait) {
  .hero-brand {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .hero-landing h1 {
    font-size: 1.05rem;
  }

  .hero-landing__lead {
    margin-bottom: 1rem;
  }
}
