/* =========================================================
   IMAJIREKA COMPANY PROFILE — ORIGINAL DESIGN SYSTEM
   Typography, spacing, padding and sizing follow the
   previous Imajireka website as the visual baseline.
========================================================= */

/* =========================================================
   NAVBAR
========================================================= */
.site-header,
header {
  width: 100%;
  height: 78px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid transparent;
  box-shadow: 0 4px 18px rgba(43, 43, 43, 0.06);
  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.site-header.scrolled,
header.navbar-scrolled {
  background: rgba(255, 248, 239, 0.68);
  border-bottom-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 30px rgba(43, 43, 43, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar {
  min-height: 78px;
  padding: 1rem var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-inline: auto;
}

.navbar .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.navbar .logo img {
  display: block;
  width: 9rem;
  height: auto;
}
.navbar-link {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.navbar-link li {
  margin: 0;
  padding: 0;
}
.navbar-link a {
  position: relative;
  display: inline-block;
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}
.navbar-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  border-radius: var(--radius-pill);
  transition: width var(--transition);
}
.navbar-link a:hover,
.navbar-link a.active {
  color: var(--color-orange);
}
.navbar-link a:hover::after,
.navbar-link a.active::after {
  width: 100%;
}

.nav-cta,
.button-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0.65rem 1.5rem;
  color: var(--color-white);
  background: var(--color-orange);
  border: 2px solid var(--color-orange);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.nav-cta:hover,
.button-nav a:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(247, 147, 30, 0.2);
}
.nav-toggle {
  display: none;
}

/* =========================================================
   SHARED SECTION LABELS
========================================================= */
.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--color-white);
  color: var(--color-orange);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(212, 176, 138, 0.18);
}

/* =========================================================
   HERO
========================================================= */
.hero-section {
  width: 100%;
  min-height: calc(100vh - 78px);
  background: var(--color-cream);
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding-left: var(--container-padding);
  padding-right: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 48%;
  flex-shrink: 0;
  padding: 0;
}

.hero h1 {
  margin: 14px 0 0;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-dark);
}
.hero h1 span,
.about-copy h2 span,
.section-heading h2 span,
.work-heading h2 span,
.faq-intro h2 span,
.contact-copy h2 span {
  color: var(--color-orange);
}

.hero-copy > p {
  max-width: 620px;
  margin-top: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 30px;
  transition: var(--transition);
}
.btn-primary {
  color: var(--color-white);
  background: var(--color-orange);
  border: 2px solid var(--color-orange);
}
.btn-secondary {
  color: var(--color-orange);
  background: transparent;
  border: 2px solid var(--color-orange);
}
.btn-primary:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
}
.btn-secondary:hover {
  color: var(--color-white);
  background: var(--color-orange);
}
.hero-note {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #999;
}
.hero-note span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--color-orange);
  border-radius: 50%;
  margin-right: 8px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 55%;
  height: 680px;
  margin-left: -3%;
  margin-right: -5%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art-card {
  width: min(660px, 92%);
  position: relative;
  z-index: 2;
}
.hero-art-card img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 28px 35px rgba(55, 44, 33, 0.08));
}
.visual-orbit {
  position: absolute;
  border: 1px dashed rgba(247, 147, 30, 0.25);
  border-radius: 50%;
}
.orbit-one {
  width: 520px;
  height: 520px;
}
.orbit-two {
  width: 380px;
  height: 380px;
  border-color: rgba(94, 176, 213, 0.24);
}
.visual-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.65;
}
.blob-orange {
  width: 160px;
  height: 160px;
  background: #ffe0b3;
  left: 8%;
  top: 12%;
}
.blob-blue {
  width: 115px;
  height: 115px;
  background: #d5eef6;
  right: 3%;
  bottom: 15%;
}
.floating-card {
  position: absolute;
  z-index: 3;
  background: var(--color-white);
  border: 1px solid rgba(43, 43, 43, 0.05);
  box-shadow: 0 18px 38px rgba(43, 43, 43, 0.1);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
}
.floating-card i {
  color: var(--color-orange);
  font-size: 16px;
}
.floating-idea {
  top: 20%;
  right: 9%;
}
.floating-create {
  bottom: 17%;
  left: 9%;
}

/* =========================================================
   ABOUT
========================================================= */
.about-section {
  width: 100%;
  background: var(--color-cream);
  overflow: hidden;
}
.about-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 3rem;
  padding: var(--container-padding);
}
.about-visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.image-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.image-frame img {
  display: block;
  width: 100%;
  max-width: 570px;
  height: auto;
  object-fit: contain;
}
.image-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--color-white);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(43, 43, 43, 0.1);
  display: flex;
  flex-direction: column;
}
.image-caption strong {
  font-family: var(--font-heading);
  font-size: 20px;
}
.image-caption span {
  font-size: 9px;
  color: #999;
}
.about-copy {
  width: 100%;
  min-width: 0;
}
.about-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
}
.about-copy > p {
  max-width: 620px;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}
.about-copy > p + p {
  margin-top: 14px;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 25px;
}
.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
}
.about-points i {
  color: var(--color-orange);
}
.about-point-accent {
  color: var(--color-orange);
}

/* =========================================================
   ECOSYSTEM — follows old SERVICES spacing/sizing
========================================================= */
.ecosystem-section {
  width: 100%;
  min-height: 560px;
  background: linear-gradient(
    180deg,
    var(--color-cream) 0%,
    var(--color-white) 100%
  );
  overflow: hidden;
}
.ecosystem-section > .container {
  padding: var(--container-padding);
  box-sizing: border-box;
}
.section-heading {
  text-align: center;
  margin-bottom: 35px;
}
.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 35px;
}
.section-heading h2 {
  margin: 16px 0 12px;
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-dark);
}
.section-heading > p {
  max-width: 650px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
}
.ecosystem-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  margin-top: 3rem;
}
.ecosystem-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 217px;
  padding: 2rem;
  box-sizing: border-box;
  background: var(--color-cream-card);
  border-radius: var(--radius-md);
  z-index: 1;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.ecosystem-card:hover {
  box-shadow: 15px 15px 0 var(--color-yellow);
  transform: translateY(-5px);
}
.ecosystem-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  opacity: 0.45;
}
.ecosystem-card.academy:before {
  background: #dceaff;
}
.ecosystem-card.studio:before {
  background: #e2f1d9;
}
.ecosystem-card.merchandise:before {
  background: #ffe1dd;
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-number {
  font-family: var(--font-display);
  font-size: 12px;
  color: #aaa;
}
.icon-wrap {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
}
.icon-wrap img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}
.card-top .icon-wrap {
  margin-bottom: 0;
}
.card-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 9px;
  color: #999;
  margin-top: 20px;
}
.ecosystem-card h3 {
  margin: 0 0 7px;
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-dark);
}
.ecosystem-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: var(--color-text);
  min-height: 60px;
}
.ecosystem-card a {
  display: inline-block;
  margin-top: 13px;
  padding: 0.7rem 2rem;
  background: var(--color-orange);
  border: 2px solid var(--color-orange);
  border-radius: 30px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition);
}
.ecosystem-card a:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
}
.ecosystem-line {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 3rem;
  color: #999;
  font-size: 11px;
  letter-spacing: 1px;
}
.ecosystem-line span {
  height: 1px;
  width: 80px;
  background: #ddd;
}
.ecosystem-line b {
  color: var(--color-orange);
  padding: 0 8px;
}

/* =========================================================
   WORK / PORTFOLIO — follows old portfolio spacing
========================================================= */
.work-section {
  position: relative;
  width: 100%;
  background: var(--color-orange);
  overflow: hidden;
  padding: 80px 0 95px;
}
.work-section > .container {
  position: relative;
  width: 100%;
  padding: var(--container-padding);
  box-sizing: border-box;
  z-index: 2;
}
.work-heading {
  text-align: left;
  margin-bottom: 35px;
}
.work-heading > div {
  max-width: 760px;
}
.work-heading h2 {
  margin: 16px 0 12px;
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-white);
}
.work-heading h2 span {
  color: var(--color-yellow);
}
.work-heading > p {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-white);
}
.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 217px;
  gap: 24px;
}
.work-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #eee;
}
.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.work-item:hover img {
  transform: scale(1.05);
}
.work-item:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}
.work-item figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
}
.work-item figcaption span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}
.work-item figcaption strong {
  font-family: var(--font-heading);
  font-size: 23px;
}
.work-large {
  grid-row: span 2;
}
.work-wide {
  grid-column: 2/4;
}

/* =========================================================
   PROCESS — follows old creative-process typography
========================================================= */
.process-section {
  background: var(--color-yellow);
  padding: 0 var(--container-padding) var(--container-padding);
  color: var(--color-dark);
}
.process-section > .container {
  padding: 60px 50px 70px;
  background: var(--color-yellow);
  border-radius: 28px;
  overflow: hidden;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}
.process-card {
  min-height: 190px;
  padding: 30px 25px;
  background: var(--color-cream);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.process-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}
.process-card > span {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 10px;
  color: #aaa;
}
.process-card i {
  display: none;
}
.process-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}
.process-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  color: var(--color-text);
}

/* =========================================================
   FAQ — follows old FAQ typography
========================================================= */
.faq-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 3rem var(--container-padding);
  background: var(--color-orange);
  overflow: hidden;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.faq-intro h2 {
  margin: 12px 0 9px;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
.faq-intro h2 span {
  color: var(--color-yellow);
}
.faq-intro > p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray-light);
}
.faq-intro img {
  width: 260px;
  margin-top: 25px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.faq-list details {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}
.faq-list summary {
  min-height: 38px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary i {
  width: 18px;
  flex-shrink: 0;
  color: var(--color-white);
  font-size: 13px;
  transition: 0.2s;
}
.faq-list details[open] summary i {
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 430px;
  margin: 0;
  padding: 0 25px 11px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

/* =========================================================
   CONTACT
========================================================= */
.contact-section {
  position: relative;
  width: 100%;
  background: var(--color-cream);
  overflow: hidden;
  padding: 16px 0 26px;
}
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}
.contact-inner .section-label {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(212, 176, 138, 0.12);
}
.contact-inner h2 {
  margin: 13px 0 12px;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-dark);
}
.contact-inner h2 span {
  color: var(--color-orange);
}
.contact-inner > p {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 11px 20px;
  background: var(--color-orange);
  border: 2px solid var(--color-orange);
  border-radius: 5px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
}
.contact-button:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(-2px);
}

/* =========================================================
   FOOTER — follows old footer padding
========================================================= */
.site-footer {
  width: 100%;
  background: var(--color-dark);
  color: var(--color-white);
  overflow: hidden;
}
.footer-container {
  width: 100%;
  min-height: 445px;
  padding: 65px var(--container-padding) 55px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(500px, 1.2fr);
  column-gap: 100px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo img {
  display: block;
  width: 9rem;
  height: auto;
}
.footer-brand p {
  max-width: 330px;
  margin: 20px 0;
  color: var(--color-footer-text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
}
.footer-brand strong {
  font-size: 10px;
  color: #eee;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links h4 {
  margin: 0 0 8px;
  font-size: 11px;
  color: var(--color-white);
}
.footer-links a {
  font-size: 10px;
  color: #999;
  transition: var(--transition-fast);
}
.footer-links a:hover {
  color: var(--color-orange);
}
.footer-bottom {
  border-top: 1px solid #383838;
  margin-top: 0;
  padding: 20px var(--container-padding);
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 9px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 54px;
  }
  .hero-visual {
    height: 570px;
  }
  .about-container {
    gap: 50px;
  }
  .about-copy h2,
  .section-heading h2,
  .work-heading h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: 44px;
  }
  .ecosystem-grid {
    gap: 24px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   TYPOGRAPHY & SPACING ONLY
   Match the original Imajireka company-profile design system.
   No layout/display/position/grid/flex structure is changed here.
========================================================= */

/* Navbar */
.navbar {
  padding: 1rem var(--container-padding);
  gap: 2rem;
}
.navbar-link ul {
  gap: 2rem;
}
.navbar-link a {
  font-size: 13px;
  padding: 0.35rem 0;
}
.nav-cta,
.button-nav a {
  padding: 0.65rem 1.5rem;
  font-size: 12px;
}

/* Hero */
.hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.2;
}
.hero-copy > p {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.6;
}
.hero-actions {
  gap: 14px;
  margin-top: 25px;
}
.btn {
  font-size: 18px;
  padding: 0.7rem 2rem;
}
.hero-note {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 1.8px;
}

/* About */
.about-container {
  gap: 3rem;
  padding: var(--container-padding);
}
.about-copy h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.2;
}
.about-copy > p {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.6;
}
.about-copy > p + p {
  margin-top: 14px;
}
.about-points {
  gap: 10px;
  margin-top: 25px;
}
.about-points div {
  gap: 10px;
  font-size: 12px;
}

/* Ecosystem */
.ecosystem-section > .container {
  padding: var(--container-padding);
}
.section-heading {
  margin-bottom: 35px;
}
.section-heading.centered {
  margin-bottom: 35px;
}
.section-heading h2 {
  margin: 16px 0 12px;
  font-size: 44px;
  line-height: 1.2;
}
.section-heading > p {
  font-size: 16px;
}
.ecosystem-grid {
  gap: 3rem;
  margin-top: 3rem;
}
.ecosystem-card {
  min-height: 217px;
  padding: 2rem;
}
.card-number {
  font-size: 12px;
}
.icon-wrap {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.icon-wrap img {
  width: 50px;
  height: 50px;
}
.card-kicker {
  margin-top: 20px;
  font-size: 9px;
  letter-spacing: 2px;
}
.ecosystem-card h3 {
  margin: 0 0 7px;
  font-size: 23px;
  line-height: 1.3;
}
.ecosystem-card p {
  font-size: 12px;
  line-height: 1.55;
}
.ecosystem-card a {
  margin-top: 13px;
  padding: 0.7rem 2rem;
  font-size: 16px;
}
.ecosystem-line {
  gap: 20px;
  margin-top: 3rem;
  font-size: 11px;
  letter-spacing: 1px;
}

/* Work / Portfolio */
.work-section {
  padding: 80px 0 95px;
}
.work-section > .container {
  padding: var(--container-padding);
}
.work-heading {
  margin-bottom: 12px;
}
.work-heading h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.2;
}
.work-heading > p {
  margin: 1rem 0;
  font-size: 16px;
}
.work-item figcaption {
  left: 22px;
  bottom: 20px;
}
.work-item figcaption span {
  font-size: 9px;
  letter-spacing: 2px;
}
.work-item figcaption strong {
  font-size: 23px;
}

/* Creative flow */
.process-section {
  padding: 0 var(--container-padding) var(--container-padding);
}
.process-section > .container {
  padding: 60px 50px 70px;
}
.process-grid {
  gap: 24px;
  margin-top: 10px;
}
.process-card {
  padding: 30px 25px;
}
.process-card > span {
  top: 20px;
  right: 28px;
  font-size: 10px;
}
.process-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.process-card p {
  font-size: 12px;
  line-height: 1.55;
}

/* FAQ */
.faq-section {
  padding: 3rem var(--container-padding);
}
.faq-layout {
  gap: 60px;
}
.faq-intro h2 {
  margin: 12px 0 9px;
  font-size: 44px;
  line-height: 1.2;
}
.faq-intro > p {
  font-size: 16px;
}
.faq-intro img {
  width: 260px;
  margin-top: 25px;
}
.faq-list summary {
  min-height: 38px;
  padding: 10px 0;
  gap: 20px;
  font-size: 18px;
  line-height: 1.4;
}
.faq-list details p {
  padding: 0 25px 11px 0;
  font-size: 14px;
  line-height: 1.55;
}

/* Contact */
.contact-section {
  padding: var(--container-padding);
}
.contact-inner {
  gap: 50px;
}
.contact-copy h2 {
  margin: 16px 0 12px;
  font-size: 44px;
  line-height: 1.2;
}
.contact-copy p {
  font-size: 16px;
  line-height: 1.6;
}
.contact-action {
  gap: 13px;
}
.contact-button {
  gap: 14px;
  padding: 0.7rem 2rem;
  font-size: 18px;
}
.contact-action small {
  font-size: 10px;
  letter-spacing: 1px;
}

/* Footer */
.footer-container {
  padding: 65px var(--container-padding) 55px;
  column-gap: 100px;
}
.footer-logo img {
  width: 9rem;
}
.footer-brand p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.5;
}
.footer-brand strong {
  font-size: 10px;
}
.footer-links-grid {
  gap: 50px;
}
.footer-links {
  gap: 11px;
}
.footer-links h4 {
  margin: 0 0 8px;
  font-size: 11px;
}
.footer-links a {
  font-size: 10px;
}
.footer-bottom {
  padding: 20px var(--container-padding);
  font-size: 9px;
}

/* =========================================================
   REFERENCE MATCH — ECOSYSTEM / KARYA / PROSES
   Layout intentionally scoped to these three sections only.
========================================================= */

/* ECOSYSTEM — reference image 1 */
.ecosystem-section {
  background: #fff8ef;
  padding: 48px 0 42px;
  min-height: auto;
}
.ecosystem-section > .container {
  max-width: 974px;
  padding: 0;
}
.ecosystem-section .section-heading.centered {
  max-width: 760px;
  margin: 0 auto 34px;
}
.ecosystem-section .section-label,
.work-section .section-label,
.process-section .section-label {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(212, 176, 138, 0.12);
}
.ecosystem-section .section-heading h2,
.process-section .section-heading h2 {
  margin: 13px 0 10px;
  font-size: 34px;
  line-height: 1.08;
}
.ecosystem-section .section-heading > p,
.process-section .section-heading > p {
  max-width: 650px;
  font-size: 14px;
  line-height: 1.65;
}
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 0;
}
.ecosystem-card {
  min-height: 260px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(61, 48, 37, 0.055);
}
.ecosystem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(61, 48, 37, 0.08);
}
.ecosystem-card:before {
  width: 120px;
  height: 120px;
  right: -58px;
  top: -58px;
  opacity: 0.48;
}
.card-top {
  height: 48px;
}
.card-number {
  font-size: 8px;
}
.card-top .icon-wrap {
  width: 54px;
  height: 54px;
}
.icon-wrap img {
  width: 30px;
  height: 30px;
}
.card-kicker {
  margin-top: 17px;
  font-size: 7px;
  letter-spacing: 2px;
}
.ecosystem-card h3 {
  margin: 7px 0 7px;
  font-size: 19px;
  line-height: 1.2;
}
.ecosystem-card p {
  min-height: 58px;
  font-size: 11px;
  line-height: 1.65;
}
.ecosystem-card a {
  margin-top: 11px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--color-orange);
  font-size: 9px;
  font-weight: 600;
}
.ecosystem-card a:hover {
  background: transparent;
  border: 0;
  transform: none;
}
.ecosystem-card a i {
  margin-left: 4px;
  font-size: 8px;
}
.ecosystem-line {
  gap: 14px;
  margin-top: 30px;
  font-size: 8px;
}
.ecosystem-line span {
  width: 62px;
}
.ecosystem-line b {
  padding: 0 5px;
}

/* KARYA — reference image 2 */
.work-section {
  background: #fff;
  padding: 68px 0 70px;
}
.work-section > .container {
  max-width: 974px;
  padding: 0;
}
.work-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 27px;
}
.work-heading > div {
  max-width: none;
}
.work-heading h2 {
  margin: 13px 0 0;
  color: var(--color-dark);
  font-size: 34px;
  line-height: 1.08;
}
.work-heading h2 span {
  color: var(--color-orange);
}
.work-heading > p {
  max-width: 100%;
  margin: 0 0 2px;
  color: #777;
  font-size: 14px;
  line-height: 1.65;
}
.work-grid {
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 168px 166px;
  grid-auto-rows: unset;
  gap: 10px;
}
.work-item {
  border-radius: 14px;
}
.work-large {
  grid-row: 1 / 3;
}
.work-wide {
  grid-column: 2 / 4;
  grid-row: 2;
}
.work-item figcaption {
  left: 15px;
  bottom: 13px;
}
.work-item figcaption span {
  font-size: 7px;
  letter-spacing: 1.7px;
}
.work-item figcaption strong {
  font-size: 14px;
  line-height: 1.1;
}

/* PROSES — reference image 3 */
.process-section {
  background: #292929;
  padding: 0;
  color: #fff;
}
.process-section > .container {
  max-width: 1080px;
  padding: 88px 0 88px;
  background: transparent;
  border-radius: 0;
}
.process-section .section-heading.centered {
  max-width: 650px;
  margin: 0 auto 39px;
}
.process-section .section-label {
  background: #343434;
  box-shadow: none;
}
.process-section .section-heading h2 {
  color: #fff;
  font-size: 36px;
  margin: 13px 0 9px;
}
.process-section .section-heading h2 span {
  color: var(--color-orange);
}
.process-section .section-heading > p {
  color: #d0d0d0;
  font-size: 14px;
  line-height: 1.65;
}
.process-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 0;
}
.process-card {
  min-height: 188px;
  aspect-ratio: auto;
  padding: 25px 20px;
  background: #303030;
  border: 1px solid #454545;
  border-radius: 15px;
  display: block;
  text-align: left;
  color: #fff;
}
.process-card:hover {
  transform: translateY(-3px);
  box-shadow: none;
}
.process-card > span {
  top: 15px;
  right: 16px;
  font-size: 8px;
  color: #777;
}
.process-card i {
  display: block;
  margin-bottom: 25px;
  color: var(--color-orange);
  font-size: 17px;
}
.process-card h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
}
.process-card p {
  font-size: 11px;
  line-height: 1.65;
  color: #c7c7c7;
}

@media (max-width: 900px) {
  .ecosystem-section {
    padding: 55px 24px 45px;
  }
  .ecosystem-section > .container,
  .work-section > .container,
  .process-section > .container {
    max-width: 100%;
  }
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ecosystem-card {
    min-height: 240px;
  }
  .work-section {
    padding: 60px 24px;
  }
  .work-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 170px 170px;
  }
  .work-large {
    grid-row: 1 / 2;
  }
  .work-wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }
  .process-section > .container {
    padding: 65px 24px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .ecosystem-section {
    padding-inline: 18px;
  }
  .ecosystem-section .section-heading h2,
  .work-heading h2,
  .process-section .section-heading h2 {
    font-size: 30px;
  }
  .work-section {
    padding: 52px 18px 58px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px 180px;
  }
  .work-large,
  .work-wide {
    grid-column: 1;
    grid-row: auto;
  }
  .process-section > .container {
    padding: 55px 18px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    min-height: 180px;
  }
}

/* =========================================================
   FINAL REFINEMENTS — FAQ & FOOTER
========================================================= */
.faq-section {
  background: #fff !important;
  color: var(--color-dark);
  min-height: 0;
  padding: 80px var(--container-padding);
}
.faq-layout {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.faq-intro h2 {
  color: var(--color-dark);
}
.faq-intro h2 span {
  color: var(--color-orange);
}
.faq-intro > p {
  color: #777;
  max-width: 430px;
}
.faq-list details {
  border: 1px solid #e8e3dc;
  border-radius: 14px;
  margin-bottom: 10px;
  background: #fff;
  overflow: hidden;
}
.faq-list summary {
  min-height: 42px;
  padding: 16px 18px;
  color: var(--color-dark);
  font-size: 14px;
  font-weight: 600;
}
.faq-list summary i {
  color: var(--color-orange);
}
.faq-list details p {
  max-width: none;
  padding: 0 18px 16px;
  color: #777;
  font-size: 11px;
}

.site-footer {
  min-height: 0;
}
.footer-container {
  min-height: 0;
  padding: 55px var(--container-padding) 45px;
}
.footer-bottom {
  padding: 16px var(--container-padding);
}

/* FINAL ALIGNMENT: navbar, Karya, dan Proses memakai garis konten yang sama */
@media (min-width: 1200px) {
  .navbar.container,
  .work-section > .container,
  .process-section > .container {
    width: 974px;
    max-width: 974px;
    margin-left: auto;
    margin-right: auto;
  }

  .navbar.container,
  .work-section > .container,
  .process-section > .container {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =========================================================
   CONTENT ALIGNMENT — SECTIONS FOLLOW THE EXISTING NAVBAR
   The navbar remains the reference. Do not resize or reposition
   the navbar; section content uses the same container geometry.
========================================================= */
@media (min-width: 1101px) {
  /* Keep the navbar exactly on its existing .container geometry. */
  .navbar.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  /* Match the left/right content edge of the navbar. */
  .ecosystem-section > .container,
  .work-section > .container,
  .process-section > .container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    box-sizing: border-box;
  }

  .ecosystem-section > .container,
  .work-section > .container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .process-section {
    padding-left: 0;
    padding-right: 0;
  }

  .process-section > .container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}

/* =========================================================
   MASTER ALIGNMENT — ALL SECTIONS FOLLOW THE EXISTING NAVBAR
   IMPORTANT: the navbar is NOT modified. Its original container
   geometry is the master reference for desktop alignment.
========================================================= */
@media (min-width: 1101px) {
  /* Restore/keep the original navbar geometry as the master. */
  .navbar.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  /* Every section uses the exact same outer container geometry. */
  .about-container,
  .ecosystem-section > .container,
  .work-section > .container,
  .process-section > .container,
  .faq-section > .container,
  .contact-section > .container,
  .footer-container,
  .footer-bottom {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    box-sizing: border-box;
  }

  /* The section containers own the same horizontal padding as navbar. */
  .about-container,
  .ecosystem-section > .container,
  .work-section > .container,
  .process-section > .container,
  .faq-section,
  .contact-section,
  .footer-container,
  .footer-bottom {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  /* Prevent nested containers from adding a second horizontal inset. */
  .faq-section > .container,
  .contact-section > .container {
    padding-left: 0;
    padding-right: 0;
  }

  /* FAQ/contact already get their horizontal inset from the section. */
  .faq-section,
  .contact-section {
    padding-left: max(
      var(--container-padding),
      calc((100vw - var(--container-width)) / 2 + var(--container-padding))
    );
    padding-right: max(
      var(--container-padding),
      calc((100vw - var(--container-width)) / 2 + var(--container-padding))
    );
  }

  /* Footer bottom follows the same content edges without double padding. */
  .footer-bottom {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}

/* =========================================================
   CONTACT — compact vertical rhythm
   Keep the approved contact design, remove excessive inherited gap/padding.
========================================================= */
@media (min-width: 1101px) {
  .contact-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .contact-inner {
    gap: 0 !important;
  }

  .contact-inner h2 {
    margin: 12px 0 10px !important;
  }

  .contact-inner > p {
    margin: 0 !important;
  }

  .contact-button {
    margin-top: 16px !important;
  }
}

/* =========================================================
   LANGUAGE SWITCHER
   Visual treatment follows the provided reference.
========================================================= */
.language-switcher {
  position: relative;
  flex: 0 0 auto;
}
.language-toggle {
  width: 50px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  color: var(--color-dark);
  transition: background 0.2s ease;
}
.language-toggle:hover,
.language-switcher.open .language-toggle {
}
.language-toggle img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
}
.language-toggle i {
  font-size: 13px;
  transition: transform 0.2s ease;
}
.language-switcher.open .language-toggle i {
  transform: rotate(180deg);
}
.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 150px;
  padding: 7px;
  background: var(--color-white);
  border: 1px solid rgba(247, 147, 30, 0.12);
  border-radius: 13px;
  box-shadow: 0 14px 32px rgba(43, 43, 43, 0.13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}
.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-option {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--color-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}
.language-option:hover,
.language-option.active {
  color: var(--color-orange);
}
.language-option img {
  width: 28px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
}
@media (max-width: 1100px) {
  .language-switcher {
    display: none;
  }
}
@media (max-width: 768px) {
  .language-switcher {
    display: none;
  }
}
