:root {
  /* Tema senja — selaras gambar hero & solusi */
  --acc-sunset: #ea580c;
  --acc-sunset-dark: #c2410c;
  --acc-sunset-deep: #9a3412;
  --acc-sunset-light: #fff7ed;
  --acc-sunset-soft: #ffedd5;
  --acc-dusk: #7c2d12;
  --acc-twilight: #292524;
  --acc-amber: #d97706;
  --acc-amber-light: #fffbeb;
  --acc-ink: #1c1917;
  --acc-muted: #78716c;
  --acc-border: #e7e5e4;
  --acc-radius: 1rem;
  --acc-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
  --acc-shadow-lg: 0 20px 50px rgba(234, 88, 12, 0.14);

  /* alias kompatibilitas */
  --acc-blue: var(--acc-sunset);
  --acc-blue-dark: var(--acc-sunset-dark);
  --acc-blue-light: var(--acc-sunset-light);
  --acc-green: var(--acc-amber);
  --acc-green-light: var(--acc-amber-light);
}

.section-label {
  color: var(--acc-blue);
}

.section-title {
  color: var(--acc-ink);
}

/* Hero */
.acc-hero {
  margin-top: 4rem;
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 45%, #ffffff 100%);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .acc-hero { margin-top: 4.5rem; padding: 4rem 0 3rem; }
}

.acc-hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .acc-hero-inner { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
}

.acc-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acc-blue);
  background: var(--acc-blue-light);
  border: 1px solid #fed7aa;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.acc-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--acc-ink);
  margin-bottom: 1rem;
}

.acc-hero-title em {
  font-style: normal;
  color: var(--acc-blue);
}

.acc-hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--acc-muted);
  line-height: 1.65;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.acc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn-acc-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--acc-blue);
  border: none;
  border-radius: 0.65rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.32);
  transition: background 0.2s, transform 0.2s;
}

.btn-acc-primary:hover {
  background: var(--acc-blue-dark);
  transform: translateY(-1px);
}

.btn-acc-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--acc-blue);
  background: #fff;
  border: 2px solid var(--acc-blue);
  border-radius: 0.65rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-acc-outline:hover {
  background: var(--acc-blue-light);
}

.acc-hero-trust {
  font-size: 0.875rem;
  color: var(--acc-muted);
  font-weight: 500;
}

.acc-hero-trust strong { color: var(--acc-ink); }

.acc-hero-visual {
  position: relative;
}

.acc-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: var(--acc-shadow-lg);
}

/* Trust bar */
.acc-trust-bar {
  padding: 1.25rem 0;
  background: #fff;
  border-top: 1px solid var(--acc-border);
  border-bottom: 1px solid var(--acc-border);
}

.acc-trust-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--acc-muted);
  font-weight: 500;
}

/* Features strip */
.acc-features {
  padding: 4rem 0;
  background: #fff;
}

.acc-section-head {
  max-width: 80rem;
  margin: 0 auto 2.5rem;
  padding: 0 1.25rem;
  text-align: center;
}

.acc-section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--acc-ink);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: -0.02em;
}

.acc-section-head p {
  font-size: 1.05rem;
  color: var(--acc-muted);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.acc-feature-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .acc-feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .acc-feature-grid { grid-template-columns: repeat(4, 1fr); }
}

.acc-feature-card {
  padding: 1.5rem;
  border-radius: var(--acc-radius);
  border: 1px solid var(--acc-border);
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.acc-feature-card:hover {
  box-shadow: var(--acc-shadow);
  border-color: #fed7aa;
}

.acc-feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--acc-blue-light);
  color: var(--acc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.acc-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--acc-ink);
  margin-bottom: 0.4rem;
}

.acc-feature-card p {
  font-size: 0.875rem;
  color: var(--acc-muted);
  line-height: 1.55;
  margin: 0;
}

/* Solutions / Apps */
.acc-solutions {
  padding: 4rem 0 5rem;
  background: linear-gradient(180deg, #fffbeb 0%, #fff 100%);
}

.acc-solution-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .acc-solution-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .acc-solution-grid { grid-template-columns: repeat(3, 1fr); }
}

.acc-solution-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--acc-border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.acc-solution-card:hover {
  box-shadow: var(--acc-shadow-lg);
  transform: translateY(-4px);
}

.acc-solution-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}

.acc-solution-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acc-solution-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.acc-solution-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--acc-blue);
  margin-bottom: 0.35rem;
}

.acc-solution-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--acc-ink);
  margin-bottom: 0.5rem;
}

.acc-solution-body p {
  font-size: 0.875rem;
  color: var(--acc-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.acc-solution-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--acc-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Ecosystem */
.acc-ecosystem {
  padding: 4rem 0;
  background: #fff;
}

.acc-eco-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .acc-eco-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.acc-eco-visual img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: var(--acc-shadow);
}

.acc-eco-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--acc-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.acc-eco-inner h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--acc-ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.acc-eco-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.acc-eco-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.acc-eco-list-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--acc-green-light);
  color: var(--acc-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.acc-eco-list h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--acc-ink);
  margin-bottom: 0.25rem;
}

.acc-eco-list p {
  font-size: 0.875rem;
  color: var(--acc-muted);
  line-height: 1.5;
  margin: 0;
}

/* CTA band */
.acc-cta-band {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(67, 20, 7, 0.6) 45%, rgba(30, 41, 59, 0.75) 100%),
    url('../images/rm-cta-band-bg.png') center / cover no-repeat;
}

.acc-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 75% at 70% 40%, rgba(251, 191, 36, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.acc-cta-band > div {
  position: relative;
  z-index: 1;
}

.acc-cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}

.acc-cta-band p {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

.acc-cta-band .btn-acc-primary {
  background: #fff;
  color: #c2410c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.acc-cta-band .btn-acc-primary:hover {
  background: #fff7ed;
  color: #9a3412;
}

/* Integrations */
.acc-integrations {
  padding: 4rem 0;
  background: #fff7ed;
}

.acc-int-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .acc-int-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .acc-int-grid { grid-template-columns: repeat(3, 1fr); }
}

.acc-int-card {
  background: #fff;
  border: 1px solid var(--acc-border);
  border-radius: var(--acc-radius);
  padding: 1.35rem;
}

.acc-int-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--acc-ink);
  margin-bottom: 0.4rem;
}

.acc-int-card p {
  font-size: 0.825rem;
  color: var(--acc-muted);
  line-height: 1.5;
  margin: 0;
}

/* Testimonials */
.acc-testimonials {
  padding: 4rem 0;
  background: #fff;
}

.acc-testi-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .acc-testi-grid { grid-template-columns: repeat(3, 1fr); }
}

.acc-testi-card {
  border: 1px solid var(--acc-border);
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: #fff;
}

.acc-testi-sector {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--acc-blue);
  background: var(--acc-blue-light);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.acc-testi-card blockquote {
  font-size: 0.9rem;
  color: var(--acc-muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
}

.acc-testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--acc-border);
}

.acc-testi-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc-sunset), #f97316);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-testi-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--acc-ink);
}

.acc-testi-role {
  font-size: 0.75rem;
  color: var(--acc-muted);
}

/* Final CTA */
.acc-cta-final {
  padding: 4rem 0;
  background: linear-gradient(160deg, #1c1917 0%, #431407 55%, #292524 100%);
  color: #fff;
  text-align: center;
}

.acc-cta-final h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.acc-cta-final p {
  color: #fcd34d;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
}

.acc-cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.acc-cta-final .btn-acc-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.acc-cta-final .btn-acc-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}
