:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f6;
  --text: #0d0d0f;
  --muted: #6f7176;
  --line-light: #e9eaed;
  --orange: #ff6b35;
  --orange-soft: #fff2ec;
  --shadow: 0 24px 60px rgba(13, 13, 15, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

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

.shell {
  width: min(calc(100% - 32px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand-idr {
  color: var(--orange);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links > button:not(.nav-cta),
.footer-main button,
.back-top {
  color: #c5c7cd;
  transition: color 0.2s ease;
}

.nav-links > button:not(.nav-cta):hover,
.footer-main button:hover,
.back-top:hover,
.footer-main a:hover {
  color: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 40px rgba(255, 107, 53, 0.28);
}

.button-primary:hover {
  background: #ff7b4b;
}

.button-secondary {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.button-secondary:hover {
  background: #fff;
  color: #000;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding-bottom: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu button {
  width: 100%;
  text-align: left;
  color: #c5c7cd;
  padding: 14px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #000;
}

.hero-bg,
.hero-overlay,
.hero-grid,
.hero-shapes {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.hero-overlay {
  background: linear-gradient(135deg, #000 10%, rgba(0, 0, 0, 0.92) 50%, rgba(27, 29, 34, 0.82) 100%);
}

.hero-grid {
  opacity: 0.06;
  background-image:
    linear-gradient(var(--orange) 1px, transparent 1px),
    linear-gradient(90deg, var(--orange) 1px, transparent 1px);
  background-size: 60px 60px;
}

.shape,
.dot {
  position: absolute;
}

.shape {
  border: 1px solid rgba(255, 107, 53, 0.22);
}

.shape-a {
  top: 100px;
  right: 6%;
  width: 128px;
  height: 128px;
  transform: rotate(45deg);
  animation: spin 20s linear infinite;
}

.shape-b {
  left: 8%;
  bottom: 180px;
  width: 82px;
  height: 82px;
  transform: rotate(12deg);
  animation: spin 30s linear infinite reverse;
}

.shape-c {
  left: 24%;
  top: 35%;
  width: 190px;
  height: 190px;
  border-color: rgba(255, 107, 53, 0.1);
  animation: pulse 6s ease-in-out infinite;
}

.dot {
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.6);
  animation: pulse 4s ease-in-out infinite;
}

.dot-a {
  top: 92px;
  left: 52%;
  width: 8px;
  height: 8px;
}

.dot-b {
  top: 190px;
  right: 34%;
  width: 6px;
  height: 6px;
  animation-delay: 1s;
}

.dot-c {
  right: 12%;
  bottom: 220px;
  width: 8px;
  height: 8px;
  animation-delay: 2s;
}

.hero-main {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 88px;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  justify-content: center;
}

.eyebrow-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--orange);
}

.eyebrow {
  color: #ffab8d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-orange {
  color: var(--orange);
}

.hero h1,
.section-head h2 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  max-width: 860px;
  margin-inline: auto;
}

.hero h1 span,
.section-head h2 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 760px;
  margin: 26px 0 12px;
  color: #d1d3d8;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
  margin-inline: auto;
}

.hero-sublead {
  max-width: 640px;
  margin: 0 0 36px;
  color: #8f949c;
  line-height: 1.7;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

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

.stats-grid article {
  padding: 28px 24px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid article:first-child {
  border-left: 0;
}

.stats-grid strong,
.about-stats strong {
  display: block;
  color: var(--orange);
  font-size: 1.85rem;
  font-weight: 800;
}

.stats-grid span,
.about-stats span {
  color: #9ba0a8;
  font-size: 0.82rem;
}

.scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 110px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
}

.scroll-indicator span {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.scroll-indicator div {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #fff, transparent);
}

.section {
  padding: 96px 0;
}

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

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-head p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head-center {
  text-align: center;
}

.section-head-center p {
  max-width: 700px;
  margin: 16px auto 0;
}

.eyebrow-center {
  justify-content: center;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.about-copy .lead,
.about-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.about-copy .lead {
  font-size: 1.1rem;
}

.about-copy strong {
  color: var(--text);
}

.pillars {
  display: grid;
  gap: 16px;
  margin: 32px 0 36px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #2a2c31;
  font-weight: 700;
}

.icon-box,
.service-icon,
.audience-icon,
.contact-icon,
.success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 800;
}

.icon-box {
  width: 42px;
  height: 42px;
  background: var(--orange-soft);
  border: 1px solid #ffd8c8;
  color: var(--orange);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.about-media {
  position: relative;
}

.about-image-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-image-wrap img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.badge-card {
  position: absolute;
  left: -22px;
  bottom: -22px;
  padding: 22px 24px;
  color: #fff;
  background: #000;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.badge-card strong {
  display: block;
  color: var(--orange);
  font-size: 1.5rem;
}

.badge-card span {
  color: #9ba0a8;
  font-size: 0.82rem;
}

.accent-block {
  position: absolute;
  top: -24px;
  right: -24px;
  z-index: -1;
  width: 96px;
  height: 96px;
  background: var(--orange);
  border-radius: 22px;
}

.trust-strip {
  margin-top: 92px;
  padding-top: 42px;
  border-top: 1px solid var(--line-light);
}

.trust-strip p {
  margin: 0 0 24px;
  color: #adb1b8;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
  color: #8d929a;
}

.services {
  background: var(--bg-soft);
}

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

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #efeff2;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(18, 18, 20, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-bar {
  height: 6px;
}

.service-bar-orange {
  background: linear-gradient(90deg, var(--orange), #f08848);
}

.service-bar-dark {
  background: linear-gradient(90deg, #43454b, #111214);
}

.service-bar-black {
  background: linear-gradient(90deg, #000, #2a2d34);
}

.service-card-body {
  padding: 32px;
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-number {
  color: #e7e7ea;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-soft);
  color: var(--orange);
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: #fff;
}

.service-kicker {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card h3,
.audience-card h3,
.form-success h3 {
  margin: 8px 0 12px;
  font-size: 1.42rem;
  font-weight: 800;
}

.service-card p,
.audience-card p,
.note-card p,
.form-note,
.form-success p {
  color: var(--muted);
  line-height: 1.72;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: #43464d;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.pipeline,
.sectors {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.pipeline {
  background: #000;
}

.pipeline-head {
  text-align: center;
  margin-bottom: 28px;
}

.pipeline-head h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 1.55rem;
}

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

.pipeline-grid article {
  padding: 26px 18px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.pipeline-grid strong {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
}

.pipeline-grid h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.08rem;
}

.pipeline-grid p,
.sector-grid strong {
  color: #9ca1a9;
}

.community {
  color: #fff;
  background: #000;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.audience-card {
  padding: 32px;
  background: #111214;
  border: 1px solid #1e2025;
  border-radius: var(--radius-lg);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  background: rgba(31, 33, 39, 0.92);
  border-color: rgba(255, 107, 53, 0.45);
}

.audience-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: #ffab8d;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #2a2d33;
  background: #000;
  color: #9ca1a9;
  font-size: 0.76rem;
}

.quote-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
  border-radius: var(--radius-xl);
}

.quote-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.3;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22));
}

.quote-overlay > div {
  max-width: 700px;
  padding: 40px 56px;
}

.quote-mark {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 3rem;
}

.quote-overlay p {
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-style: italic;
  line-height: 1.65;
}

.quote-overlay strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 0.95rem;
}

.quote-overlay span:last-child {
  color: #9ca1a9;
  font-size: 0.82rem;
}

.sectors {
  border: 1px solid #1f2126;
  background: #111214;
}

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

.sector-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #242730;
  background: #000;
}

.sector-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 800;
}

.sector-grid strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact {
  background: var(--bg-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 36px;
}

.contact-sidebar {
  display: grid;
  gap: 24px;
}

.dark-card {
  padding: 32px;
  color: #fff;
  background: #000;
  border-radius: var(--radius-lg);
}

.dark-card h3,
.note-card h4 {
  margin: 0 0 22px;
  font-size: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.22);
  color: #ffab8d;
}

.contact-list small {
  display: block;
  color: #8d929a;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list strong {
  color: #fff;
  font-size: 0.94rem;
}

.socials {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.socials > span {
  display: block;
  color: #8d929a;
  margin-bottom: 12px;
  font-size: 0.84rem;
}

.socials div,
.footer-socials {
  display: flex;
  gap: 10px;
}

.socials a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
}

.social-links {
  flex-wrap: wrap;
}

.social-links a {
  min-height: 44px;
  padding: 0 14px 0 6px;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links-compact a {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links-compact .social-glyph {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  font-size: 1rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
}

.footer-socials .social-glyph {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  font-size: 1rem;
}

.social-glyph {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.social-name {
  font-size: 0.84rem;
  font-weight: 700;
}

.socials a:hover,
.footer-socials a:hover {
  background: var(--orange);
}

.note-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #e7e8ed;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-lg);
}

.form-card {
  padding: 34px;
  background: #fff;
  border: 1px solid #ececf0;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(23, 23, 26, 0.06);
}

.form-intro {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #ececf0;
}

.form-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-intro h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-weight: 800;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-card form {
  display: grid;
  gap: 22px;
}

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

.form-card label {
  display: grid;
  gap: 10px;
}

.form-card span {
  color: #30323a;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid #e0e2e7;
  border-radius: 14px;
  background: #f7f7f9;
  padding: 15px 16px;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.form-card textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  width: 100%;
}

.form-footer {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
}

.form-success {
  display: grid;
  place-items: center;
  min-height: 520px;
  text-align: center;
  padding: 80px 24px;
}

.success-badge {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  background: #e8f8ee;
  color: #18a24e;
}

.form-success p {
  max-width: 420px;
  margin: 0 auto;
}

.site-footer {
  color: #fff;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr 0.75fr;
  gap: 28px;
  padding: 68px 0 40px;
}

.footer-brand p {
  max-width: 320px;
  color: #8d929a;
  line-height: 1.75;
}

.footer-brand-button {
  margin-bottom: 18px;
}

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

.site-footer h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main button {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 28px;
  color: #777c84;
  font-size: 0.82rem;
}

.back-top {
  padding: 0;
}

@keyframes spin {
  to {
    transform: rotate(405deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .site-header {
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .hero-main {
    padding-top: 170px;
  }

  .stats-grid,
  .service-grid,
  .audience-grid,
  .pipeline-grid,
  .sector-grid,
  .footer-main,
  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .section-head-split,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-overlay > div {
    padding: 34px;
  }
}

@media (max-width: 720px) {
  .hero-main {
    padding-top: 210px;
  }

  .mobile-menu {
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .mobile-menu button:not(.button) {
    padding: 16px 0;
  }

  .button {
    width: 100%;
  }

  .form-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .stats-grid article:nth-child(odd) {
    border-left: 0;
  }

  .badge-card {
    position: static;
    margin-top: 18px;
    width: fit-content;
  }

  .accent-block,
  .scroll-indicator {
    display: none;
  }

  .pipeline,
  .sectors,
  .dark-card,
  .note-card,
  .form-card,
  .service-card-body,
  .audience-card {
    padding: 24px;
  }

  .quote-banner img {
    height: 360px;
  }

  .quote-overlay {
    align-items: flex-end;
  }

  .quote-overlay > div {
    padding: 24px;
  }

  .brand-title {
    display: none;
  }

  .brand-idr {
    font-size: 1rem;
    letter-spacing: 0;
    color: #fff;
  }

  .footer-logo-wordmark {
    width: min(100%, 280px);
  }

  .social-links a {
    width: 100%;
    justify-content: flex-start;
  }

  .social-links-compact a {
    width: 44px;
    justify-content: center;
  }
}
