:root {
  --ars-blue: #172742;
  --ars-orange: #c85900;
  --ars-white: #ffffff;
  --ars-text: #30343b;
  --ars-muted: #f5f7fa;
  --ars-line: #dfe4ea;
  --ars-soft-blue: #eef3f8;
  --ars-shadow: 0 18px 48px rgba(23, 39, 66, 0.12);
  --ars-radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ars-text);
  background: var(--ars-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.ars-menu-open,
body.ars-search-open {
  overflow: hidden;
}

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

a:hover {
  color: var(--ars-orange);
}

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

button,
input,
textarea {
  font: inherit;
}

.ars-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.ars-section {
  padding: 82px 0;
}

.ars-muted {
  background: var(--ars-muted);
}

.ars-section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.ars-section-head h2,
.ars-final-cta h2,
.ars-entry h1 {
  margin: 0 0 14px;
  color: var(--ars-blue);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.ars-section-head p,
.ars-final-cta p {
  margin: 0;
  color: #596171;
  font-size: 18px;
}

.ars-section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.ars-kicker,
.ars-card-label,
.ars-post-meta {
  margin: 0 0 10px;
  color: var(--ars-orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ars-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--ars-orange);
  border-radius: 6px;
  background: var(--ars-orange);
  color: var(--ars-white);
  font-weight: 800;
  line-height: 1.2;
}

.ars-button:hover {
  background: #a84d00;
  color: var(--ars-white);
}

.ars-button-light {
  background: var(--ars-white);
  color: var(--ars-blue);
  border-color: var(--ars-white);
}

.ars-button-light:hover {
  background: #f0f4f8;
  color: var(--ars-blue);
}

.ars-button-outline {
  background: transparent;
  color: var(--ars-blue);
  border-color: var(--ars-blue);
}

.ars-button-outline:hover {
  background: var(--ars-blue);
  color: var(--ars-white);
  border-color: var(--ars-blue);
}

.ars-topbar {
  background: var(--ars-orange);
  color: var(--ars-white);
  font-size: 14px;
}

.ars-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ars-topbar-contact,
.ars-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ars-topbar-contact a,
.ars-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--ars-white);
}

.ars-social a {
  width: 28px;
  height: 28px;
}

.ars-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--ars-line);
  backdrop-filter: blur(14px);
}

.ars-header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ars-logo {
  flex: 0 0 auto;
  width: var(--ars-logo-width, 190px);
  max-width: 42vw;
}

.ars-logo-text {
  display: inline-flex;
  color: var(--ars-blue);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.ars-logo-img {
  width: var(--ars-logo-width, 190px);
  max-height: 64px;
  object-fit: contain;
}

.ars-nav {
  margin-left: auto;
}

.ars-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ars-blue);
  font-size: 15px;
  font-weight: 750;
}

.ars-menu a:hover {
  background: var(--ars-soft-blue);
  color: var(--ars-orange);
}

.ars-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ars-icon-button,
.ars-arrow,
.ars-backtop {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ars-line);
  border-radius: 6px;
  background: var(--ars-white);
  color: var(--ars-blue);
  cursor: pointer;
}

.ars-icon-button:hover,
.ars-arrow:hover,
.ars-backtop:hover {
  border-color: var(--ars-orange);
  color: var(--ars-orange);
}

.ars-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.ars-menu-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
}

.ars-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 20px 20px;
  background: rgba(23, 39, 66, 0.72);
}

.ars-search-open .ars-search-overlay {
  display: flex;
}

.ars-search-panel {
  position: relative;
  width: min(720px, 100%);
  padding: 34px;
  border-radius: var(--ars-radius);
  background: var(--ars-white);
  box-shadow: var(--ars-shadow);
}

.ars-search-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.ars-search-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--ars-blue);
  font-size: 25px;
  font-weight: 900;
}

.ars-search-line {
  display: flex;
  gap: 10px;
}

.ars-search-line input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--ars-line);
  border-radius: 6px;
}

.ars-search-line button {
  min-width: 90px;
  border: 0;
  border-radius: 6px;
  background: var(--ars-orange);
  color: var(--ars-white);
  font-weight: 800;
}

.ars-slider {
  position: relative;
  overflow: hidden;
}

.ars-slider-track {
  display: flex;
  transition: transform 420ms ease;
}

.ars-slide {
  min-width: 100%;
}

.ars-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.ars-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b9c1ce;
  cursor: pointer;
}

.ars-slider-dots button.is-active {
  width: 24px;
  background: var(--ars-orange);
}

.ars-hero {
  background: var(--ars-blue);
}

.ars-hero-slider {
  aspect-ratio: 19 / 6;
}

.ars-hero-slider .ars-slider-track,
.ars-hero-slide {
  height: 100%;
}

.ars-hero-slide {
  position: relative;
  display: grid;
  align-items: center;
}

.ars-hero-media {
  position: absolute;
  inset: 0;
}

.ars-hero-media img,
.ars-hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ars-hero-placeholder {
  background:
    linear-gradient(90deg, rgba(23, 39, 66, 0.98), rgba(23, 39, 66, 0.68)),
    radial-gradient(circle at 75% 35%, rgba(200, 89, 0, 0.34), transparent 28%),
    linear-gradient(135deg, #1d3558, #172742);
}

.ars-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 39, 66, 0.95), rgba(23, 39, 66, 0.62), rgba(23, 39, 66, 0.22));
}

.ars-hero-content {
  position: relative;
  z-index: 2;
  color: var(--ars-white);
}

.ars-hero-content h1 {
  max-width: 830px;
  margin: 0 0 18px;
  color: var(--ars-white);
  font-size: clamp(34px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.ars-hero-content p:not(.ars-kicker) {
  max-width: 820px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.ars-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ars-service-item {
  padding: 26px 0 0;
  border-top: 3px solid var(--ars-orange);
}

.ars-service-item i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 6px;
  background: var(--ars-soft-blue);
  color: var(--ars-orange);
}

.ars-service-item h3,
.ars-update-card h3,
.ars-wawasan-feature h3,
.ars-latest-item h3 {
  margin: 0 0 10px;
  color: var(--ars-blue);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.ars-service-item p,
.ars-service-item div,
.ars-update-card p,
.ars-update-card div,
.ars-wawasan-feature p,
.ars-latest-item p {
  margin: 0;
}

.ars-slider-actions {
  display: flex;
  gap: 10px;
}

.ars-card-slider {
  margin-inline: -10px;
}

.ars-card-slider .ars-slide {
  min-width: 33.333%;
  padding: 10px;
}

.ars-update-card a {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
}

.ars-update-card figure {
  aspect-ratio: 4 / 5;
  margin: 0;
  background: var(--ars-soft-blue);
}

.ars-update-card img,
.ars-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ars-image-fallback {
  background:
    linear-gradient(135deg, rgba(23, 39, 66, 0.92), rgba(23, 39, 66, 0.7)),
    linear-gradient(45deg, rgba(200, 89, 0, 0.28), transparent);
}

.ars-update-card div {
  padding: 22px;
}

.ars-justify {
  text-align: justify;
}

.ars-wawasan-slider {
  margin-bottom: 28px;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
}

.ars-wawasan-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 22px;
}

.ars-wawasan-feature figure {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ars-soft-blue);
}

.ars-wawasan-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ars-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ars-orange);
  font-weight: 850;
}

.ars-latest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ars-latest-item {
  padding: 22px;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
}

.ars-logo-slider {
  margin-inline: -10px;
}

.ars-logo-slider .ars-slide {
  min-width: 20%;
  padding: 10px;
}

.ars-logo-item a {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
  color: var(--ars-blue);
  text-align: center;
  font-weight: 900;
}

.ars-logo-item img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.ars-final-cta {
  padding: 78px 0;
  background: var(--ars-blue);
  color: var(--ars-white);
  text-align: center;
}

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

.ars-final-cta p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.88);
}

.ars-footer {
  background: #101d31;
  color: rgba(255, 255, 255, 0.78);
}

.ars-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1.05fr 0.75fr;
  gap: 34px;
  padding: 62px 0;
}

.ars-footer .ars-logo,
.ars-footer .ars-logo-text {
  color: var(--ars-white);
}

.ars-footer h2 {
  margin: 0 0 16px;
  color: var(--ars-white);
  font-size: 17px;
  letter-spacing: 0;
}

.ars-footer p {
  margin: 0 0 14px;
}

.ars-footer-tagline {
  color: var(--ars-white);
  font-weight: 800;
}

.ars-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-footer li {
  margin-bottom: 9px;
}

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

.ars-footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 14px;
}

.ars-floating-assistant,
.ars-backtop {
  position: fixed;
  z-index: 60;
  bottom: 22px;
  box-shadow: var(--ars-shadow);
}

.ars-floating-assistant {
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ars-orange);
  color: var(--ars-white);
  font-weight: 900;
}

.ars-floating-assistant:hover {
  color: var(--ars-white);
  background: #a84d00;
}

.ars-backtop {
  left: 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 180ms ease;
}

.ars-backtop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ars-page-content,
.ars-article-wrap {
  max-width: 860px;
}

.ars-entry-content {
  color: var(--ars-text);
}

.ars-single-media {
  margin: 28px 0;
}

.ars-about-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.ars-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 46px;
}

.ars-about-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--ars-blue);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.ars-about-hero-copy p:not(.ars-kicker) {
  margin: 0 0 24px;
  color: #596171;
  font-size: 18px;
}

.ars-about-hero-media {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: var(--ars-radius);
  background: var(--ars-soft-blue);
  box-shadow: var(--ars-shadow);
}

.ars-about-hero-media img,
.ars-about-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ars-about-image-fallback {
  background:
    linear-gradient(135deg, rgba(23, 39, 66, 0.94), rgba(23, 39, 66, 0.62)),
    linear-gradient(45deg, rgba(200, 89, 0, 0.34), transparent);
}

.ars-about-narrative {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
}

.ars-rich-text {
  color: #3f4652;
  font-size: 18px;
}

.ars-rich-text p {
  margin: 0 0 18px;
}

.ars-rich-text p:first-child {
  color: var(--ars-blue);
  font-weight: 650;
}

.ars-approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.ars-approach-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: approach;
}

.ars-approach-list li {
  counter-increment: approach;
  position: relative;
  min-height: 58px;
  padding: 0 0 22px 74px;
  color: var(--ars-blue);
  font-size: 18px;
  font-weight: 750;
}

.ars-approach-list li::before {
  content: counter(approach, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--ars-blue);
  color: var(--ars-white);
  font-size: 14px;
  font-weight: 900;
}

.ars-approach-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 55px;
  left: 24px;
  width: 1px;
  height: calc(100% - 50px);
  background: var(--ars-line);
}

.ars-about-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ars-about-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.ars-archive-hero,
.ars-single-hero {
  padding: 72px 0 58px;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.ars-archive-hero h1,
.ars-single-hero h1 {
  max-width: 920px;
  margin: 0 0 18px;
  color: var(--ars-blue);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
}

.ars-archive-hero p:not(.ars-kicker),
.ars-single-hero .ars-post-meta {
  max-width: 840px;
  margin: 0;
  color: #596171;
  font-size: 18px;
}

.ars-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.ars-category-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--ars-line);
  border-radius: 999px;
  background: var(--ars-white);
  color: var(--ars-blue);
  font-size: 14px;
  font-weight: 800;
}

.ars-category-filter a:hover,
.ars-category-filter a.is-active {
  border-color: var(--ars-orange);
  background: var(--ars-orange);
  color: var(--ars-white);
}

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

.ars-post-card {
  overflow: hidden;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
}

.ars-post-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--ars-soft-blue);
}

.ars-post-card-media img,
.ars-post-card-media .ars-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ars-post-card-body {
  padding: 20px;
}

.ars-post-card h2 {
  margin: 0 0 10px;
  color: var(--ars-blue);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.ars-post-card p {
  margin: 0;
}

.ars-pagination {
  margin-top: 36px;
}

.ars-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-pagination a,
.ars-pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--ars-line);
  border-radius: 6px;
  background: var(--ars-white);
  color: var(--ars-blue);
  font-weight: 850;
}

.ars-pagination .current,
.ars-pagination a:hover {
  border-color: var(--ars-orange);
  background: var(--ars-orange);
  color: var(--ars-white);
}

.ars-empty-state {
  padding: 42px;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
  text-align: center;
}

.ars-empty-state h2 {
  margin: 0 0 8px;
  color: var(--ars-blue);
}

.ars-empty-state p {
  margin: 0;
}

.ars-single-page .ars-entry {
  padding: 54px 0 26px;
}

.ars-single .ars-entry-content {
  font-size: 18px;
  line-height: 1.82;
}

.ars-single .ars-entry-content h2,
.ars-single .ars-entry-content h3,
.ars-single .ars-entry-content h4 {
  margin: 1.75em 0 0.65em;
  color: var(--ars-blue);
  line-height: 1.22;
  letter-spacing: 0;
}

.ars-single .ars-entry-content p,
.ars-single .ars-entry-content ul,
.ars-single .ars-entry-content ol,
.ars-single .ars-entry-content blockquote,
.ars-single .ars-entry-content table {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.ars-single .ars-entry-content blockquote {
  padding: 18px 22px;
  border-left: 4px solid var(--ars-orange);
  background: var(--ars-muted);
  color: var(--ars-blue);
  font-weight: 650;
}

.ars-single .ars-entry-content img {
  height: auto;
  border-radius: 6px;
}

.ars-single .ars-entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.ars-single .ars-entry-content th,
.ars-single .ars-entry-content td {
  padding: 10px 12px;
  border: 1px solid var(--ars-line);
  vertical-align: top;
}

.ars-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--ars-line);
  border-bottom: 1px solid var(--ars-line);
}

.ars-post-nav div:empty {
  display: none;
}

.ars-post-nav a {
  display: block;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--ars-radius);
  background: var(--ars-muted);
}

.ars-post-nav span {
  display: block;
  margin-bottom: 6px;
  color: var(--ars-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ars-post-nav strong {
  display: block;
  color: var(--ars-blue);
  line-height: 1.35;
}

.ars-read-also {
  padding: 38px 0 72px;
}

.ars-read-also h2 {
  margin: 0 0 18px;
  color: var(--ars-blue);
  font-size: 30px;
  line-height: 1.15;
}

.ars-read-also-list article {
  padding: 16px 0;
  border-top: 1px solid var(--ars-line);
}

.ars-read-also-list h3 {
  margin: 0 0 5px;
  color: var(--ars-blue);
  font-size: 20px;
  line-height: 1.3;
}

.ars-read-also-list p {
  margin: 0;
  color: #596171;
}

.ars-services-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.ars-services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: 46px;
}

.ars-services-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--ars-blue);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: 0;
}

.ars-services-hero-copy p:not(.ars-kicker) {
  margin: 0 0 24px;
  color: #596171;
  font-size: 18px;
}

.ars-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ars-services-hero-media {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: var(--ars-radius);
  background: var(--ars-soft-blue);
  box-shadow: var(--ars-shadow);
}

.ars-services-hero-media img,
.ars-services-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ars-services-image-fallback {
  background:
    linear-gradient(135deg, rgba(23, 39, 66, 0.94), rgba(23, 39, 66, 0.64)),
    linear-gradient(45deg, rgba(200, 89, 0, 0.32), transparent);
}

.ars-services-intro {
  max-width: 880px;
}

.ars-services-intro h2 {
  margin: 0 0 14px;
  color: var(--ars-blue);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.ars-services-intro p:not(.ars-kicker) {
  margin: 0;
  color: #596171;
  font-size: 19px;
}

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

.ars-pillar-card {
  padding: 28px;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
}

.ars-pillar-card h3 {
  margin: 0 0 12px;
  color: var(--ars-blue);
  font-size: 25px;
  line-height: 1.2;
}

.ars-pillar-card p:not(.ars-card-label) {
  margin: 0 0 18px;
}

.ars-pillar-card a {
  color: var(--ars-orange);
  font-weight: 900;
}

.ars-step-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-step-timeline li {
  position: relative;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
}

.ars-step-timeline span {
  display: block;
  margin-bottom: 12px;
  color: var(--ars-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ars-step-timeline strong {
  display: block;
  color: var(--ars-blue);
  line-height: 1.3;
}

.ars-kit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 44px;
}

.ars-kit-grid h2 {
  margin: 0 0 14px;
  color: var(--ars-blue);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.ars-kit-grid p {
  margin: 0 0 16px;
  color: #596171;
  font-size: 18px;
}

.ars-note {
  color: var(--ars-blue) !important;
  font-weight: 850;
}

.ars-kit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ars-kit-list li {
  padding: 12px 14px;
  border: 1px solid var(--ars-line);
  border-radius: 6px;
  background: var(--ars-white);
  color: var(--ars-blue);
  font-weight: 750;
}

.ars-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ars-workflow-grid article {
  padding-top: 22px;
  border-top: 3px solid var(--ars-orange);
}

.ars-workflow-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--ars-orange);
  font-weight: 900;
}

.ars-workflow-grid h3 {
  margin: 0 0 10px;
  color: var(--ars-blue);
  font-size: 22px;
  line-height: 1.25;
}

.ars-workflow-grid p {
  margin: 0;
}

.ars-web-hero {
  padding: 72px 0;
  background: linear-gradient(180deg, #f7f9fc, #ffffff);
}

.ars-web-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: 46px;
}

.ars-web-hero-copy h1 {
  margin: 0 0 18px;
  color: var(--ars-blue);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: 0;
}

.ars-web-hero-copy p:not(.ars-kicker) {
  margin: 0 0 24px;
  color: #596171;
  font-size: 18px;
}

.ars-web-hero-media {
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-radius: var(--ars-radius);
  background: var(--ars-soft-blue);
  box-shadow: var(--ars-shadow);
}

.ars-web-hero-media img,
.ars-web-image-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ars-web-image-fallback {
  background:
    linear-gradient(135deg, rgba(23, 39, 66, 0.94), rgba(23, 39, 66, 0.64)),
    linear-gradient(45deg, rgba(200, 89, 0, 0.32), transparent);
}

.ars-editor-section {
  padding: 78px 0;
}

.ars-editor-section .ars-container > h2,
.ars-editor-narrow h2,
.ars-ai-strip h2 {
  margin: 0 0 14px;
  color: var(--ars-blue);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.ars-editor-section .ars-container > p,
.ars-editor-narrow p,
.ars-ai-strip p {
  margin: 0;
  color: #596171;
  font-size: 18px;
}

.ars-editor-narrow {
  max-width: 880px;
}

.ars-check-grid,
.ars-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ars-check-grid li,
.ars-feature-list li {
  padding: 12px 14px;
  border: 1px solid var(--ars-line);
  border-radius: 6px;
  background: var(--ars-white);
  color: var(--ars-blue);
  font-weight: 750;
}

.ars-editor-card-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.ars-editor-card-grid .wp-block-column {
  flex-basis: auto !important;
}

.ars-editor-card {
  padding: 24px;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
}

.ars-editor-card h3 {
  margin: 0 0 10px;
  color: var(--ars-blue);
  font-size: 24px;
  line-height: 1.2;
}

.ars-editor-card p {
  margin: 0;
}

.ars-ai-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--ars-radius);
  background: var(--ars-blue);
  color: var(--ars-white);
}

.ars-ai-strip h2,
.ars-ai-strip p {
  color: var(--ars-white);
}

.ars-ai-strip p {
  color: rgba(255, 255, 255, 0.84);
}

.ars-process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: web-process;
}

.ars-process-list li {
  counter-increment: web-process;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
  color: var(--ars-blue);
  font-weight: 850;
}

.ars-process-list li::before {
  content: counter(web-process, decimal-leading-zero);
  display: block;
  margin-bottom: 12px;
  color: var(--ars-orange);
  font-size: 13px;
  font-weight: 900;
}

.ars-button-block .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 6px;
  background: var(--ars-orange);
  color: var(--ars-white);
  font-weight: 850;
}

.ars-button-block .wp-block-button__link:hover {
  background: #a84d00;
  color: var(--ars-white);
}

.ars-button-light-block .wp-block-button__link {
  background: var(--ars-white);
  color: var(--ars-blue);
}

.ars-button-light-block .wp-block-button__link:hover {
  background: #f0f4f8;
  color: var(--ars-blue);
}

@media (max-width: 1024px) {
  .ars-service-grid,
  .ars-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ars-card-slider .ars-slide {
    min-width: 50%;
  }

  .ars-logo-slider .ars-slide {
    min-width: 25%;
  }

  .ars-about-hero-grid,
  .ars-about-narrative,
  .ars-approach-grid,
  .ars-services-hero-grid,
  .ars-web-hero-grid,
  .ars-kit-grid {
    grid-template-columns: 1fr;
  }

  .ars-about-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ars-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ars-step-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ars-workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ars-check-grid,
  .ars-feature-list,
  .ars-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ars-menu-toggle {
    display: inline-flex;
  }

  .ars-nav {
    position: fixed;
    top: 116px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 24px;
    background: var(--ars-white);
    border-top: 1px solid var(--ars-line);
    overflow: auto;
  }

  .ars-menu-open .ars-nav {
    display: block;
  }

  .ars-menu {
    align-items: stretch;
    flex-direction: column;
  }

  .ars-menu a {
    min-height: 50px;
    padding: 12px 0;
    border-bottom: 1px solid var(--ars-line);
    border-radius: 0;
  }
}

@media (max-width: 760px) {
  .ars-container {
    width: min(100% - 28px, 1180px);
  }

  .ars-section {
    padding: 58px 0;
  }

  .ars-topbar-inner {
    justify-content: center;
  }

  .ars-topbar-contact span {
    display: none;
  }

  .ars-topbar-social {
    gap: 8px;
  }

  .ars-header-inner {
    min-height: 68px;
  }

  .ars-nav {
    top: 106px;
  }

  .ars-hero-slider {
    aspect-ratio: 4 / 5;
  }

  .ars-hero-media::after {
    background: linear-gradient(180deg, rgba(23, 39, 66, 0.92), rgba(23, 39, 66, 0.76));
  }

  .ars-hero-content h1 {
    font-size: 36px;
  }

  .ars-hero-content p:not(.ars-kicker) {
    font-size: 16px;
  }

  .ars-section-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ars-service-grid,
  .ars-latest-grid,
  .ars-about-post-grid,
  .ars-post-grid,
  .ars-pillar-grid,
  .ars-kit-list,
  .ars-workflow-grid,
  .ars-editor-card-grid,
  .ars-check-grid,
  .ars-feature-list,
  .ars-process-list,
  .ars-footer-grid,
  .ars-wawasan-feature {
    grid-template-columns: 1fr;
  }

  .ars-card-slider .ars-slide {
    min-width: 86%;
  }

  .ars-logo-slider .ars-slide {
    min-width: 50%;
  }

  .ars-about-hero {
    padding: 54px 0;
  }

  .ars-about-hero-grid {
    gap: 28px;
  }

  .ars-about-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ars-archive-hero,
  .ars-single-hero,
  .ars-services-hero,
  .ars-web-hero {
    padding: 54px 0 42px;
  }

  .ars-services-hero-grid,
  .ars-web-hero-grid {
    gap: 28px;
  }

  .ars-editor-section {
    padding: 58px 0;
  }

  .ars-ai-strip {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ars-step-timeline {
    grid-template-columns: 1fr;
  }

  .ars-post-card-body {
    padding: 18px;
  }

  .ars-post-nav {
    grid-template-columns: 1fr;
  }

  .ars-search-panel {
    padding: 28px 18px 20px;
  }

  .ars-search-line {
    flex-direction: column;
  }

  .ars-search-line button {
    min-height: 46px;
  }

  .ars-floating-assistant {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 10px 13px;
  }

  .ars-backtop {
    left: 14px;
    bottom: 14px;
  }
}

@media (max-width: 390px) {
  .ars-floating-assistant span {
    display: none;
  }

  .ars-floating-assistant {
    width: 46px;
    justify-content: center;
  }
}

/* v0.1.2 homepage polish */
.ars-kicker,
.ars-card-label,
.ars-post-meta {
  color: var(--ars-orange) !important;
}

.ars-section-head p,
.ars-hero-content p:not(.ars-kicker),
.ars-service-item p,
.ars-service-item div,
.ars-update-copy,
.ars-wawasan-feature p,
.ars-latest-item p,
.ars-footer p {
  text-align: justify;
  text-justify: inter-word;
}

.ars-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
}

.ars-header {
  top: 38px;
  z-index: 79;
}

.admin-bar .ars-topbar {
  top: 32px;
}

.admin-bar .ars-header {
  top: 70px;
}

.ars-menu li {
  position: relative;
}

.ars-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 90;
  min-width: 230px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--ars-white);
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  box-shadow: var(--ars-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 160ms ease;
}

.ars-menu li:hover > .sub-menu,
.ars-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ars-menu .sub-menu a {
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  padding: 9px 10px;
  font-size: 14px;
}

.ars-hero-slider {
  min-height: 430px;
}

.ars-hero-media::after {
  background: linear-gradient(90deg, rgba(23, 39, 66, 0.98) 0%, rgba(23, 39, 66, 0.84) 42%, rgba(23, 39, 66, 0.28) 100%);
}

.ars-card-slider {
  margin-inline: 0;
}

.ars-card-slider .ars-slide {
  min-width: 100%;
  padding: 0;
}

.ars-update-card-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  background: var(--ars-white);
  box-shadow: 0 14px 34px rgba(23, 39, 66, 0.08);
}

.ars-update-card > a {
  display: none;
}

.ars-update-card figure {
  aspect-ratio: 4 / 5;
}

.ars-update-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 5vw, 58px);
}

.ars-update-cta {
  align-self: flex-start;
  margin-top: 20px;
}

.ars-logo-item a {
  box-shadow: 0 12px 35px rgba(23, 39, 66, 0.05);
}

.ars-final-cta {
  background: var(--ars-muted);
  color: var(--ars-text);
  border-top: 1px solid var(--ars-line);
  text-align: left;
}

.ars-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.ars-final-cta h2 {
  color: var(--ars-blue);
}

.ars-final-cta p {
  margin: 0;
  color: #596171;
}

.ars-footer-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(260px, 100%);
  margin-bottom: 20px;
  padding: 10px 14px;
  background: var(--ars-white);
  border: 2px solid var(--ars-orange);
  border-radius: 16px;
}

.ars-footer-logo-frame .ars-logo {
  width: auto;
  max-width: 230px;
}

.ars-footer-logo-frame .ars-logo-text {
  color: var(--ars-blue);
}

.ars-footer-logo-frame .ars-logo-img {
  max-height: 54px;
}

.ars-footer-tagline {
  margin-top: 0;
}

.ars-floating-assistant {
  right: 22px;
  width: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1000;
}

.ars-floating-assistant:hover {
  background: transparent;
}

.ars-float-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid #a84d00;
  border-radius: 999px;
  background: var(--ars-orange);
  color: var(--ars-white);
  box-shadow: 0 18px 50px rgba(23, 39, 66, 0.25);
  font-weight: 900;
  cursor: pointer;
}

.ars-float-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(380px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 130px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--ars-white);
  border: 1px solid var(--ars-line);
  border-radius: var(--ars-radius);
  box-shadow: var(--ars-shadow);
}

.ars-float-panel[hidden] {
  display: none;
}

.ars-float-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--ars-white);
  background: var(--ars-blue);
}

.ars-float-head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ars-white);
  cursor: pointer;
}

.ars-prechat {
  display: grid;
  gap: 12px;
  padding: 16px;
  overflow-y: auto;
}

.ars-prechat label {
  display: grid;
  gap: 6px;
  color: var(--ars-blue);
  font-size: 14px;
  font-weight: 800;
}

.ars-prechat input,
.ars-prechat textarea {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--ars-line);
  border-radius: 6px;
}

.ars-form-notice {
  margin: 12px 16px 0;
  padding: 10px 12px;
  border-radius: 6px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 800;
}

@media (max-width: 1024px) {
  .ars-menu .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (max-width: 782px) {
  .admin-bar .ars-topbar {
    top: 46px;
  }

  .admin-bar .ars-header {
    top: 90px;
  }
}

@media (max-width: 760px) {
  .ars-header {
    top: 44px;
  }

  .ars-nav {
    top: 112px;
  }

  .ars-hero-slider {
    min-height: 0;
  }

  .ars-update-card-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ars-update-copy {
    padding: 22px;
  }

  .ars-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .ars-floating-assistant {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
  }

  .ars-floating-assistant > * {
    pointer-events: auto;
  }

  .ars-float-panel {
    position: fixed;
    right: 14px;
    bottom: 84px;
    left: 14px;
    width: auto;
    max-width: none;
    max-height: 85vh;
  }
}

@media (max-width: 390px) {
  .ars-float-button span {
    display: none;
  }

  .ars-float-button {
    width: 54px;
    justify-content: center;
    padding: 12px;
  }
}
