/* Generic layout for the home page */
.home-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2933;
}

/* Fix for sticky header covering section content */
section[id] {
  scroll-margin-top: 50px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: #111827;
}

.site-logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-main {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #111827;
}

.site-logo-sub {
  font-size: 11px;
  color: #6b7280;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav-link {
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav-link:hover {
  color: #f59e0b;
}

.site-nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: #fbbf24;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav-cta:hover {
  background: #f59e0b;
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f59e0b;
  color: #111827;
  border: none;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.language-toggle:hover {
  background: #d97706;
}

.language-toggle .lang-id {
  display: none;
}

.language-toggle.active .lang-en {
  display: none;
}

.language-toggle.active .lang-id {
  display: inline;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #020617, #0f172a, #020617);
  color: #fff;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.12);
  margin-bottom: 20px;
  font-size: 13px;
  color: #fbbf24;
}

.hero-title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 16px;
}

.hero-title span {
  display: block;
  margin-top: 6px;
  color: #fbbf24;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #e5e7eb;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 13px;
}

.hero-stat-label {
  color: #9ca3af;
}

.hero-stat-value {
  font-size: 20px;
  font-weight: 700;
}

.hero-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.hero-image-main {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  max-width: 420px;
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SERVICES SECTION */
.services-section {
  padding: 64px 20px;
  background: #f9fafb;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d97706;
  font-weight: 600;
}

.section-title {
  margin-top: 12px;
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.section-description {
  margin-top: 10px;
  font-size: 15px;
  color: #4b5563;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  padding: 22px;
  border: 1px solid #e5e7eb;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #1d4ed8;
  color: #fff;
}

.service-icon i {
  width: 24px;
  height: 24px;
  color: #fff;
}

.service-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* USP SECTION */
.usp-section {
  padding: 64px 20px;
  background: #ffffff;
}

.usp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.usp-badge {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d97706;
  font-weight: 600;
}

.usp-title {
  margin-top: 12px;
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

.usp-copy {
  margin-top: 16px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
}

.usp-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.usp-item {
  display: flex;
  gap: 12px;
}

.usp-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fef3c7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
}

.usp-icon i {
  width: 20px;
  height: 20px;
  color: #d97706;
}

.usp-image {
  position: relative;
}

.usp-image-main {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.55);
}

.usp-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usp-stats-card {
  position: absolute;
  left: -20px;
  bottom: -20px;
  background: #020617;
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 13px;
}

.usp-stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.usp-stat-label {
  color: #9ca3af;
  margin-top: 2px;
}

/* TARGET MARKET SECTION */
.target-section {
  padding: 64px 20px;
  background: #020617;
  color: #e5e7eb;
}

.target-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.target-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fbbf24;
  font-weight: 600;
}

.target-title {
  margin-top: 12px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.target-description {
  margin-top: 12px;
  font-size: 15px;
  color: #9ca3af;
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.market-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  border: 1px solid rgba(55, 65, 81, 0.7);
}

.market-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
}

.market-icon i {
  width: 28px;
  height: 28px;
  color: #fff;
}

.market-label {
  font-weight: 600;
  margin-bottom: 2px;
}

.market-text {
  font-size: 13px;
  color: #9ca3af;
}

.target-subjects {
  margin-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 20px;
}

.target-subject-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.target-subject-text {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.7;
}

.target-pill {
  border-radius: 16px;
  padding: 16px;
  color: #e5e7eb;
}

.target-pill h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.target-pill p {
  font-size: 14px;
}

/* CTA SECTION */
.cta-section {
  padding: 60px 20px 70px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  text-align: center;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cta-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-text {
  font-size: 16px;
  margin-bottom: 28px;
}

.cta-actions {
  margin-bottom: 28px;
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 14px;
}

.cta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
}

.cta-contact-link:hover {
  text-decoration: underline;
}

/* BASIC BUTTON SKIN to complement the Button component */
.btn-primary {
  display: inline-block;
  background: #020617;
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #111827;
}

/* FOOTER */
.site-footer {
  background: #020617;
  color: #9ca3af;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #1f2937;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 32px;
}

.site-footer-brand h3 {
  color: #e5e7eb;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.site-footer-brand p {
  font-size: 14px;
}

.site-footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
}

.site-footer-column h4 {
  color: #e5e7eb;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.site-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.site-footer-column li+li {
  margin-top: 6px;
}

.site-footer-column a {
  color: inherit;
  text-decoration: none;
}

.site-footer-column a:hover {
  color: #fbbf24;
}

.site-footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 10px 20px 16px;
  font-size: 12px;
  text-align: center;
  color: #6b7280;
}

@media (max-width: 768px) {
  .site-header-inner {
    padding: 10px 16px;
  }

  .site-logo-sub {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    gap: 16px;
    border-top: 1px solid #e5e7eb;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav-link {
    font-size: 15px;
    padding: 8px 0;
    width: 100%;
    text-align: left;
  }

  .site-nav-cta {
    padding: 10px 16px;
    width: 100%;
    text-align: center;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-title {
    font-size: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid,
  .target-subjects {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}