:root {
  --bg: #f6fbff;
  --bg-soft: #eaf5f8;
  --text: #112232;
  --muted: #627383;
  --primary: #0f3d5e;
  --primary-2: #136f77;
  --accent: #d6b36a;
  --accent-soft: #f7ebcb;
  --white: #ffffff;
  --line: rgba(15, 61, 94, 0.13);
  --shadow: 0 24px 70px rgba(22, 56, 77, 0.16);
  --shadow-soft: 0 18px 45px rgba(22, 56, 77, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(19, 111, 119, 0.18), transparent 36rem),
    radial-gradient(circle at top right, rgba(214, 179, 106, 0.24), transparent 34rem),
    linear-gradient(180deg, #f7fcff 0%, #f4fbf8 44%, #ffffff 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 108px 0;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.48;
  pointer-events: none;
}

.page-glow-one {
  top: -220px;
  left: -220px;
  background: rgba(19, 111, 119, 0.28);
}

.page-glow-two {
  right: -250px;
  top: 170px;
  background: rgba(214, 179, 106, 0.28);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.25s ease;
}

.site-header.scrolled .navbar {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 45px rgba(15, 61, 94, 0.13);
  border-color: rgba(15, 61, 94, 0.12);
}

.navbar {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(22, 56, 77, 0.08);
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(19, 111, 119, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 11px 15px;
  border-radius: 999px;
  color: #263e50;
  font-weight: 700;
  font-size: 0.93rem;
  transition: 0.22s ease;
}

.nav-menu a:hover {
  color: var(--primary);
  background: rgba(15, 61, 94, 0.07);
}

.nav-menu .nav-cta {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(15, 61, 94, 0.22);
}

.nav-menu .nav-cta:hover {
  background: #0c314b;
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--primary);
  border-radius: 14px;
  width: 46px;
  height: 46px;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  display: block;
  transition: 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.hero {
  padding-top: 166px;
  min-height: 760px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.86fr);
  gap: 64px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-2);
  background: rgba(19, 111, 119, 0.09);
  border: 1px solid rgba(19, 111, 119, 0.12);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(214, 179, 106, 0.18);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.055em;
  line-height: 1.06;
}

h1 {
  max-width: 790px;
  margin-top: 22px;
  font-size: clamp(2.7rem, 7vw, 5.45rem);
  color: #0e2433;
}

.hero-lead {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.09rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 35px rgba(15, 61, 94, 0.24);
}

.btn-secondary {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(15, 61, 94, 0.13);
  box-shadow: 0 10px 28px rgba(22, 56, 77, 0.08);
}

.btn-light {
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 16px 35px rgba(2, 20, 31, 0.16);
}

.hero-note {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #42586a;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-note span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(15, 61, 94, 0.09);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 250, 250, 0.86)),
    radial-gradient(circle at 20% 0%, rgba(214, 179, 106, 0.18), transparent 18rem);
  box-shadow: var(--shadow);
}

.main-card {
  margin: 24px 12px 0 24px;
  min-height: 420px;
}

.card-topline {
  display: flex;
  gap: 9px;
}

.card-topline span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(15, 61, 94, 0.15);
}

.research-panel {
  margin-top: 26px;
  padding: 24px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: var(--white);
}

.research-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
  font-weight: 700;
}

.research-panel strong {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.progress-ring {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 87%, rgba(255, 255, 255, 0.18) 0);
  color: var(--white);
  font-weight: 900;
  box-shadow: inset 0 0 0 9px rgba(255, 255, 255, 0.12);
}

.paper-preview {
  margin: 26px 0;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.paper-preview span {
  display: block;
  height: 12px;
  margin: 13px 0;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(15, 61, 94, 0.18), rgba(19, 111, 119, 0.10));
}

.paper-preview span:nth-child(1) { width: 48%; height: 16px; }
.paper-preview span:nth-child(2) { width: 86%; }
.paper-preview span:nth-child(3) { width: 72%; }
.paper-preview span:nth-child(4) { width: 58%; }

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-grid div {
  padding: 16px 12px;
  border-radius: 20px;
  background: rgba(15, 61, 94, 0.06);
  border: 1px solid rgba(15, 61, 94, 0.08);
}

.mini-grid b {
  display: block;
  color: var(--primary);
  font-size: 1rem;
}

.mini-grid small {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.74rem;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 255px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-card-one {
  left: -24px;
  bottom: 78px;
}

.floating-card-two {
  right: -8px;
  top: 0;
}

.floating-card .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 900;
}

.floating-card strong {
  display: block;
  font-size: 0.93rem;
  line-height: 1.22;
}

.floating-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.35;
}

.strip {
  padding: 38px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 32px;
  border: 1px solid rgba(15, 61, 94, 0.1);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 50px rgba(22, 56, 77, 0.08);
}

.stat-item {
  padding: 24px 18px;
  text-align: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.stat-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.split-copy h2,
.cta-card h2 {
  margin-top: 18px;
  color: #102536;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
}

.section-heading p,
.split-copy p,
.cta-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.service-card,
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 61, 94, 0.10);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(22, 56, 77, 0.07);
  transition: 0.24s ease;
}

.service-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(214, 179, 106, 0.17), transparent 16rem);
  opacity: 0;
  transition: 0.24s ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 58px rgba(22, 56, 77, 0.12);
}

.service-card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}

.service-card > *,
.feature-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: var(--accent-soft);
  font-weight: 900;
  margin-bottom: 24px;
}

.service-card h3,
.feature-card h3,
.timeline-item h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.service-card p,
.feature-card p,
.timeline-item p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.97rem;
}

.soft-section {
  background:
    linear-gradient(180deg, rgba(234, 245, 248, 0.72), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at left, rgba(19, 111, 119, 0.10), transparent 28rem);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-copy .btn {
  margin-top: 28px;
}

.timeline {
  padding: 18px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(15, 61, 94, 0.1);
  box-shadow: var(--shadow-soft);
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.timeline-item + .timeline-item {
  margin-top: 12px;
}

.timeline-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15, 61, 94, 0.18);
}

.feature-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.1fr;
  gap: 44px;
  align-items: start;
}

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

.feature-card {
  min-height: 190px;
}

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

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 48px;
  border-radius: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(214, 179, 106, 0.35), transparent 18rem),
    linear-gradient(135deg, #0f3d5e, #136f77);
  box-shadow: 0 28px 70px rgba(15, 61, 94, 0.24);
}

.cta-card .section-kicker {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta-card h2 {
  color: var(--white);
}

.cta-card p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 620px;
}

.faq-wrap {
  max-width: 890px;
}

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

details {
  border: 1px solid rgba(15, 61, 94, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(22, 56, 77, 0.06);
  overflow: hidden;
}

summary {
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 800;
  color: #102536;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 61, 94, 0.07);
  color: var(--primary);
  font-weight: 900;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.footer {
  padding: 54px 0 26px;
  background: #0b2538;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 40px;
}

.footer .brand-text strong,
.footer h4 {
  color: var(--white);
}

.footer .brand-text small {
  color: rgba(255, 255, 255, 0.6);
}

.footer p {
  margin-top: 18px;
  max-width: 430px;
}

.footer h4 {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.footer a,
.footer span {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.72);
  transition: 0.2s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #18b36b;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(24, 179, 107, 0.35);
  transition: 0.2s ease;
}

.floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .section-pad {
    padding: 86px 0;
  }

  .hero-grid,
  .split-grid,
  .feature-layout,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 140px;
  }

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

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

  .cta-card {
    text-align: left;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 100px;
    left: 20px;
    right: 20px;
    z-index: 60;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 61, 94, 0.1);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 14px 16px;
  }
}

@media (max-width: 720px) {
  .container,
  .navbar {
    width: min(100% - 28px, 1140px);
  }

  .navbar {
    min-height: 68px;
    padding: 10px 10px 10px 14px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 14px;
  }

  .brand-text small {
    display: none;
  }

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

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .hero-lead,
  .section-heading p,
  .split-copy p,
  .cta-card p {
    font-size: 0.98rem;
  }

  .hero-actions .btn,
  .split-copy .btn,
  .cta-card .btn {
    width: 100%;
  }

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

  .main-card {
    margin: 0;
    padding: 20px;
    min-height: auto;
  }

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

  .mini-grid,
  .service-grid,
  .feature-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 14px;
    max-width: none;
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .timeline-item span {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

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

  .footer-bottom {
    display: block;
  }

  .floating-wa {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}


/* ===== V2: Timpenelitian-like sections and header ===== */
:root {
  --orange: #d97706;
  --teal: #155764;
  --teal-dark: #104653;
  --page-soft: #f7f9fb;
}

.site-header {
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(17, 34, 50, 0.07);
}

.topbar {
  background: linear-gradient(90deg, var(--teal-dark), #1c6674);
  color: #fff;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

.topbar i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 10px;
  vertical-align: middle;
}

.topbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.35);
}

.navbar {
  width: 100%;
  max-width: none;
  min-height: 86px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
}

.site-header.scrolled .navbar {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(17, 34, 50, .08);
  border: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 0;
  background: var(--teal);
  box-shadow: none;
  font-size: 1rem;
}

.brand-text strong {
  font-size: 1.25rem;
  color: var(--teal);
}

.brand-text small {
  letter-spacing: .18em;
  color: #7a8794;
  font-weight: 700;
}

.nav-menu a {
  border-radius: 0;
  padding: 10px 13px;
  color: #2f3848;
  font-size: .95rem;
}

.nav-menu .nav-cta {
  border-radius: 0;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  margin-left: 10px;
  box-shadow: 0 10px 24px rgba(217, 119, 6, .22);
}

.nav-menu .nav-cta::before {
  content: "◌";
  font-size: 1.2rem;
  margin-right: 8px;
}

.hero {
  padding-top: 185px;
}

.program-section,
.campus-section {
  background: var(--page-soft);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(17, 34, 50, 0.08);
  border-radius: 18px;
  padding: 36px 32px 32px;
  box-shadow: 0 22px 48px rgba(17, 34, 50, .10);
  min-height: 480px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border: 2px solid var(--orange);
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: .88rem;
  white-space: nowrap;
}

.price-card h3 {
  font-family: var(--font-heading);
  color: var(--teal);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.price-title {
  color: #111827;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.05em;
  margin-bottom: 4px;
}

.price-card p {
  color: #6b7280;
  font-size: .98rem;
}

.price-card ul {
  margin: 26px 0 32px;
  list-style: none;
  display: grid;
  gap: 14px;
  color: #3d4858;
  font-weight: 500;
}

.price-card li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.price-card li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.price-btn {
  margin-top: auto;
  display: block;
  text-align: center;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: #f2f4f7;
  font-weight: 800;
  color: #1f2937;
}

.price-btn.primary {
  background: var(--teal);
  color: #fff;
}

.fee-table {
  margin: 70px auto 0;
  max-width: 980px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 34, 50, .10);
}

.fee-title {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 18px;
  font-weight: 800;
  font-size: 1.05rem;
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fee-grid div {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(17, 34, 50, .08);
}

.fee-grid div:last-child {
  border-right: 0;
}

.fee-grid span {
  display: block;
  color: #7a8794;
  margin-bottom: 6px;
}

.fee-grid strong {
  color: var(--orange);
  font-size: 1.15rem;
}

.disclaimer,
.campus-note {
  margin-top: 34px;
  text-align: center;
  color: #7b8794;
  font-style: italic;
}

.legal-section {
  background: #fff;
}

.legal-heading {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto 46px;
}

.legal-heading h2,
.campus-section h2,
.program-section h2,
.ethic-section h2,
.ethic-section h3 {
  color: var(--teal);
}

.legal-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #f2f4f7;
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
}

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

.legal-card {
  background: #fff;
  border: 1px solid rgba(17, 34, 50, 0.10);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(17, 34, 50, .12);
}

.legal-card img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  object-position: center;
  background: #fbfbfb;
  border-radius: 12px;
  display: block;
}

.legal-card figcaption {
  padding: 14px 8px 4px;
  text-align: center;
  color: #6b7280;
  font-weight: 600;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.campus-grid div {
  min-height: 104px;
  background: #fff;
  border: 1px solid rgba(17, 34, 50, .07);
  box-shadow: 0 8px 18px rgba(17, 34, 50, .05);
  display: grid;
  place-items: center;
  gap: 8px;
  color: #8aa1aa;
  padding: 18px 12px;
  text-align: center;
  font-size: 1.2rem;
}

.campus-grid span {
  display: block;
  color: #6b7280;
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.35;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 44px;
}

.pill-row span {
  background: #fff;
  color: var(--teal);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 8px 18px rgba(17, 34, 50, .08);
  font-weight: 600;
}

.ethic-section {
  background: #fff;
}

.ethic-hero {
  background: linear-gradient(135deg, var(--teal), #1b6772);
  color: #fff;
  padding: 80px 0;
}

.ethic-hero h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.06em;
  margin-bottom: 22px;
}

.ethic-hero p {
  max-width: 830px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: rgba(255,255,255,.92);
}

.ethic-body {
  padding: 80px 0 108px;
}

.ethic-body > h3 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 54px;
}

.ethic-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.ethic-card {
  background: #fff;
  border: 1px solid rgba(17, 34, 50, .08);
  border-radius: 18px;
  padding: 42px 34px;
  box-shadow: 0 18px 40px rgba(17, 34, 50, .08);
}

.ethic-icon {
  width: 60px;
  height: 60px;
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
}

.ethic-card h4 {
  color: var(--teal);
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.ethic-card p {
  color: #4b5563;
}

.ethic-guideline {
  margin: 88px auto 0;
  max-width: 980px;
}

.ethic-guideline h3 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 34px;
}

.ethic-guideline ul {
  list-style: none;
  background: #fff;
  border-left: 8px solid var(--orange);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(17, 34, 50, .10);
  padding: 34px 42px;
  display: grid;
  gap: 22px;
}

.ethic-guideline li {
  position: relative;
  padding-left: 58px;
  font-size: 1.08rem;
  color: #374151;
}

.ethic-guideline li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -4px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.commitment-box {
  margin: 88px auto 0;
  max-width: 980px;
  background: var(--teal);
  color: #fff;
  border-radius: 18px;
  padding: 54px 70px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(17, 34, 50, .16);
}

.commitment-box h3 {
  color: #fff;
  font-size: 2rem;
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

.commitment-box p {
  color: rgba(255,255,255,.9);
  margin-top: 18px;
  font-size: 1.05rem;
}

@media (max-width: 1080px) {
  .pricing-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

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

  .legal-card img {
    height: 520px;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    font-size: .84rem;
    gap: 12px;
  }

  .navbar {
    padding: 12px 20px;
  }

  .nav-menu.active {
    border-radius: 18px;
    top: 136px;
  }

  .hero {
    padding-top: 170px;
  }

  .fee-grid,
  .ethic-card-grid {
    grid-template-columns: 1fr;
  }

  .fee-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 34, 50, .08);
  }

  .legal-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .legal-icon {
    margin: 0 auto;
  }

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

  .commitment-box {
    padding: 38px 24px;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 8px 0;
  }

  .topbar-divider {
    display: none;
  }

  .pricing-grid {
    gap: 22px;
  }

  .price-card {
    padding: 34px 22px 24px;
    min-height: auto;
  }

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

  .legal-card img {
    height: 420px;
  }

  .ethic-guideline ul {
    padding: 28px 20px;
  }

  .ethic-guideline li {
    padding-left: 48px;
    font-size: 1rem;
  }
}

/* ===== V3: cleaner hero, consultation form, and real logo ===== */
.site-header {
  top: 0;
  background: transparent;
  box-shadow: none;
}

.navbar {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 92px;
  padding: 14px 22px;
  border-radius: 0 0 28px 28px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17, 34, 50, 0.09);
}

.site-header.scrolled .navbar {
  box-shadow: 0 18px 42px rgba(17, 34, 50, 0.13);
}

.brand {
  gap: 0;
}

.brand-logo {
  display: block;
  width: min(292px, 58vw);
  max-width: 100%;
  height: auto;
}

.footer-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
}

.hero.hero-v3 {
  padding-top: 172px;
  padding-bottom: 54px;
  min-height: auto;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 34px;
  align-items: stretch;
}

.hero-left {
  position: relative;
  overflow: hidden;
  padding: 54px 42px 36px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(17, 87, 100, 0.96), rgba(17, 87, 100, 0.88)),
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.16), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(217,119,6,0.22), transparent 30%);
  box-shadow: var(--shadow);
  color: #fff;
}

.hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.07), transparent 18rem);
  pointer-events: none;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

.hero-pill::before {
  content: "●";
  color: var(--accent);
  font-size: 0.82rem;
}

.hero-left h1 {
  margin-top: 24px;
  max-width: 630px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero-left h1 span {
  color: var(--orange);
}

.hero-left .hero-lead {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255,255,255,0.88);
  font-size: 1.12rem;
  position: relative;
  z-index: 1;
}

.hero-actions {
  position: relative;
  z-index: 1;
  align-items: center;
}

.btn-orange,
.form-submit {
  background: linear-gradient(180deg, #e5880b, #d97706);
  box-shadow: 0 18px 34px rgba(217, 119, 6, 0.28);
}

.hero-side-note {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  font-style: italic;
}

.hero-meta {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
  font-weight: 600;
}

.hero-form-card {
  align-self: center;
  background: #fff;
  border-radius: 32px;
  padding: 34px 30px;
  border: 1px solid rgba(17, 34, 50, 0.08);
  box-shadow: 0 22px 55px rgba(17, 34, 50, 0.13);
}

.hero-form-card h3 {
  color: var(--teal);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.hero-form-card > p {
  color: #677684;
  margin: 10px 0 24px;
}

.consult-form {
  display: grid;
  gap: 16px;
}

.consult-form label span {
  display: block;
  margin-bottom: 8px;
  color: #273445;
  font-weight: 700;
}

.consult-form input,
.consult-form select {
  width: 100%;
  min-height: 60px;
  border-radius: 18px;
  border: 1px solid rgba(17, 34, 50, 0.12);
  background: #fff;
  padding: 0 18px;
  color: #223140;
  font: inherit;
  outline: none;
  transition: 0.2s ease;
}

.consult-form input::placeholder {
  color: #9aa5b3;
}

.consult-form input:focus,
.consult-form select:focus {
  border-color: rgba(21, 87, 100, 0.45);
  box-shadow: 0 0 0 4px rgba(21, 87, 100, 0.10);
}

.form-submit {
  min-height: 62px;
  border: 0;
  border-radius: 18px;
  color: #fff;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.22s ease;
}

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

.form-note {
  text-align: center;
  color: #6f7f8c;
  font-size: 0.95rem;
  font-weight: 600;
  padding-top: 2px;
}

.hero-showcase {
  margin-top: 26px;
}

.hero-mockup {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 0 20px;
}

.hero-demo-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(246,250,252,0.97));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17,34,50,0.08);
}

.demo-top-dots {
  display: flex;
  gap: 10px;
}

.demo-top-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(17, 34, 50, 0.12);
}

.demo-progress {
  margin-top: 26px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.demo-progress small {
  display: block;
  color: rgba(255,255,255,0.74);
  margin-bottom: 8px;
  font-weight: 700;
}

.demo-progress strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  line-height: 1.12;
}

.demo-ring {
  width: 96px;
  height: 96px;
  min-width: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#e6c26f 87%, rgba(255,255,255,0.18) 0);
  box-shadow: inset 0 0 0 12px rgba(255,255,255,0.14);
  font-size: 1.65rem;
  font-weight: 800;
}

.demo-lines {
  margin: 24px 0;
  padding: 24px;
  border-radius: 28px;
  background: rgba(245, 248, 251, 0.95);
  border: 1px solid rgba(17,34,50,0.07);
}

.demo-lines span {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17,34,50,0.12), rgba(17,34,50,0.06));
  margin: 16px 0;
}

.demo-lines span:nth-child(1) { width: 42%; }
.demo-lines span:nth-child(2) { width: 82%; }
.demo-lines span:nth-child(3) { width: 70%; }
.demo-lines span:nth-child(4) { width: 56%; }

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

.demo-tools div {
  padding: 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f3f8fb, #edf4f8);
  border: 1px solid rgba(17,34,50,0.08);
}

.demo-tools b {
  display: block;
  color: var(--primary);
  font-size: 1.05rem;
}

.demo-tools small {
  color: #6a7987;
  font-weight: 700;
}

.hero-callout {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 290px;
  padding: 18px;
  background: rgba(255,255,255,0.96);
  border-radius: 24px;
  border: 1px solid rgba(17,34,50,0.08);
  box-shadow: 0 22px 44px rgba(17,34,50,0.10);
}

.hero-callout-top {
  top: 0;
  right: 0;
}

.hero-callout-bottom {
  left: -26px;
  bottom: 0;
}

.hero-callout-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #efe5c2;
  color: var(--primary);
  font-weight: 900;
}

.hero-callout strong {
  display: block;
  font-size: 1rem;
  color: #16273a;
  line-height: 1.2;
}

.hero-callout small {
  display: block;
  margin-top: 2px;
  color: #5f6f7d;
  font-size: 0.95rem;
  line-height: 1.35;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 16px;
}

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

  .hero-form-card {
    max-width: 560px;
  }

  .hero-mockup {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .navbar {
    width: calc(100% - 18px);
    padding: 14px 18px;
    min-height: 82px;
    border-radius: 0 0 20px 20px;
  }

  .brand-logo {
    width: min(220px, 64vw);
  }

  .hero.hero-v3 {
    padding-top: 154px;
  }

  .hero-left {
    padding: 38px 24px 28px;
  }

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

  .hero-side-note {
    padding-left: 4px;
  }

  .hero-callout-top {
    right: 8px;
  }

  .hero-callout-bottom {
    left: 8px;
    bottom: -10px;
  }

  .hero-mockup {
    padding-top: 78px;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    gap: 12px;
    font-size: 0.83rem;
  }

  .navbar {
    width: calc(100% - 12px);
    padding: 14px 14px;
  }

  .brand-logo {
    width: min(196px, 66vw);
  }

  .hero.hero-v3 {
    padding-top: 146px;
  }

  .hero-left h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-form-card {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .consult-form input,
  .consult-form select,
  .form-submit {
    min-height: 56px;
  }

  .hero-mockup {
    padding: 0;
  }

  .hero-callout {
    position: static;
    max-width: none;
    margin-bottom: 14px;
  }

  .hero-callout-bottom {
    margin-top: 14px;
    margin-bottom: 0;
  }

  .hero-demo-card {
    border-radius: 28px;
    padding: 22px 18px;
  }

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

  .demo-ring {
    width: 84px;
    height: 84px;
    min-width: 84px;
    font-size: 1.4rem;
  }

  .demo-lines {
    padding: 18px;
  }

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

  .hero-meta span {
    width: 100%;
    justify-content: center;
  }
}


/* ===== V4 FIX: logo/header height and first section visibility ===== */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  background: #fff !important;
}

.topbar {
  min-height: 44px !important;
}

.navbar {
  width: 100% !important;
  max-width: none !important;
  min-height: 86px !important;
  height: 86px !important;
  padding: 10px max(22px, calc((100vw - 1180px) / 2)) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: 0 4px 18px rgba(17, 34, 50, 0.07) !important;
}

.brand-logo {
  width: auto !important;
  height: 68px !important;
  max-width: 245px !important;
  object-fit: contain !important;
  display: block !important;
}

.nav-menu {
  gap: 18px !important;
}

.nav-menu a {
  padding: 10px 8px !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.nav-menu a:hover {
  color: var(--teal) !important;
  background: transparent !important;
}

.nav-menu .nav-cta {
  padding: 16px 28px !important;
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 0 !important;
  box-shadow: 0 14px 28px rgba(217, 119, 6, 0.22) !important;
}

.hero.hero-v3 {
  padding-top: 32px !important;
  margin-top: 0 !important;
}

.hero-main {
  align-items: center !important;
}

@media (max-width: 860px) {
  .navbar {
    height: auto !important;
    min-height: 78px !important;
    padding: 10px 16px !important;
  }

  .brand-logo {
    height: 56px !important;
    max-width: 190px !important;
  }

  .hero.hero-v3 {
    padding-top: 24px !important;
  }

  .nav-menu.active {
    top: 122px !important;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 38px !important;
  }

  .navbar {
    min-height: 70px !important;
  }

  .brand-logo {
    height: 48px !important;
    max-width: 165px !important;
  }

  .hero.hero-v3 {
    padding-top: 18px !important;
  }
}


/* ===== V5 URGENT FIX: make all sections visible without animation dependency ===== */
/* Di beberapa browser iPad/Safari, IntersectionObserver kadang gagal menambahkan class .show.
   Akibatnya semua section dengan class .reveal tetap opacity:0. Ini membuat isi website terlihat kosong.
   Fix ini membuat seluruh konten tampil normal walaupun JavaScript animasi gagal jalan. */
.reveal,
.reveal.show,
.delay-1,
.delay-2,
.delay-3 {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.hero.hero-v3,
.hero-main,
.hero-left,
.hero-form-card,
.hero-showcase,
.hero-mockup,
.stats,
.section-pad,
main > section {
  opacity: 1 !important;
  visibility: visible !important;
}

.hero.hero-v3 {
  display: block !important;
  min-height: auto !important;
  padding-top: 32px !important;
  padding-bottom: 56px !important;
}

.hero-main {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr) !important;
  gap: 34px !important;
  align-items: center !important;
}

.hero-left,
.hero-form-card {
  display: block !important;
}

@media (max-width: 1080px) {
  .hero-main {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 860px) {
  .hero.hero-v3 {
    padding-top: 24px !important;
  }
}

@media (max-width: 560px) {
  .hero.hero-v3 {
    padding-top: 18px !important;
  }
}
