:root {
  --navy: #0b1733;
  --navy-2: #101f3f;
  --navy-soft: #182a52;
  --ink: #1c2434;
  --muted: #657184;
  --line: #e7eaf0;
  --soft: #f6f1e8;
  --soft-2: #fbfaf7;
  --gold: #b78022;
  --gold-2: #e0bb72;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(11, 23, 51, 0.14);
  --shadow-soft: 0 16px 38px rgba(11, 23, 51, 0.09);
  --radius: 28px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft-2);
  line-height: 1.6;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 234, 240, 0.9);
}

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

.brand img {
  width: 178px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.nav-menu a {
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-menu a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-cta {
  opacity: 1 !important;
  padding: 12px 18px;
  color: var(--white) !important;
  background: var(--navy);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  position: relative;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 12% 8%, rgba(196, 147, 58, 0.2), transparent 28%),
    linear-gradient(135deg, #fbfaf7 0%, #f4efe6 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(196, 147, 58, 0.13);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8f6418;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 5.6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  max-width: 760px;
}

.hero-lead {
  margin: 26px 0 0;
  max-width: 640px;
  color: #42506a;
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 12px 28px rgba(196, 147, 58, 0.27);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(11, 23, 51, 0.22);
  box-shadow: 0 8px 22px rgba(11, 23, 51, 0.08);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--white);
}

.hero-visual {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: var(--shadow);
  isolation: isolate;
  background: var(--navy);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(11, 23, 51, 0.72) 100%);
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(11, 23, 51, 0.68);
  backdrop-filter: blur(12px);
  color: var(--white);
}

.hero-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card strong {
  font-size: 18px;
  line-height: 1.45;
}

.trust-strip {
  padding: 24px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.trust-grid div {
  padding: 18px 20px;
  background: var(--white);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.3;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 92px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: start;
}

.section-heading h2,
.section-title h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-title p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  margin: 16px 0 0;
}

.prose p {
  margin: 0 0 18px;
  color: #435068;
  font-size: 17px;
}

.highlight-box {
  margin: 26px 0 18px;
  padding: 24px;
  color: var(--navy);
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
}

.supporting-quote {
  font-size: 16px !important;
  color: var(--gold) !important;
  font-weight: 800;
}

.dealer-section {
  background: var(--navy);
  color: var(--white);
}

.dealer-card {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 32px;
  align-items: stretch;
}

.dealer-content,
.dealer-proof {
  border-radius: var(--radius);
}

.dealer-content {
  padding: 46px;
  background:
    radial-gradient(circle at 12% 20%, rgba(196, 147, 58, 0.22), transparent 34%),
    var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.dealer-content h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.dealer-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.dealer-proof {
  padding: 42px;
  background: linear-gradient(145deg, #ffffff, #f7f2e8);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.dealer-badge {
  display: inline-flex;
  padding: 9px 13px;
  margin-bottom: 28px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(196, 147, 58, 0.18);
  border: 1px solid rgba(196, 147, 58, 0.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dealer-proof img {
  width: min(320px, 82%);
  height: auto;
  margin: 0 auto 34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.proof-grid div {
  padding: 18px;
  border: 1px solid rgba(11, 23, 51, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 14px;
  line-height: 1.3;
}

.proof-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.service-section {
  background: var(--soft-2);
}

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

.service-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(11, 23, 51, 0.045);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.28;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.sector-section {
  background: var(--white);
}

.sector-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.sector-card {
  min-height: 100%;
  overflow: hidden;
  background: var(--soft-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(11, 23, 51, 0.06);
}

.sector-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.sector-card > div {
  padding: 22px;
}

.sector-card h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.24;
}

.sector-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.sector-tag {
  display: inline-flex;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-featured {
  grid-row: span 2;
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  background:
    linear-gradient(180deg, rgba(11, 23, 51, 0.18), rgba(11, 23, 51, 0.92)),
    url("../img/hero-koperasi.webp") center / cover no-repeat;
  color: var(--white);
}

.sector-featured .sector-story {
  padding: 32px;
}

.sector-featured .sector-tag {
  color: var(--gold-2);
}

.sector-featured h3 {
  color: var(--white);
  margin-top: 10px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
}

.sector-featured p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.mini-cta {
  padding: 54px 0;
  background: var(--white);
}

.mini-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 30%, rgba(196, 147, 58, 0.22), transparent 30%),
    var(--navy);
  color: var(--white);
}

.mini-cta h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.mini-cta p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.benefit-section {
  background: var(--soft);
}

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

.benefit-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(231, 234, 240, 0.85);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(11, 23, 51, 0.055);
}

.benefit-card span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.2;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-card {
  margin-top: 28px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card strong,
.contact-card span,
.contact-card a {
  display: block;
}

.contact-card strong {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-card span,
.contact-card a {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--soft-2);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(196, 147, 58, 0.14);
}

.contact-form .full,
.form-submit {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  min-height: 54px;
}

.footer {
  padding: 56px 0 28px;
  background: #071127;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 164px;
  margin-bottom: 18px;
  filter: brightness(1.05);
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
}

.footer p {
  margin: 0;
  max-width: 460px;
}

.footer a,
.footer span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 16px 34px rgba(11, 23, 51, 0.22);
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .dealer-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

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

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

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

  .sector-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 152px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero {
    padding: 54px 0 44px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
  }

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .hero-card strong {
    font-size: 15px;
  }

  .section {
    padding: 66px 0;
  }

  .trust-grid,
  .service-grid,
  .sector-grid,
  .benefit-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dealer-content,
  .dealer-proof {
    padding: 28px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .sector-featured {
    min-height: 420px;
  }

  .mini-cta-card {
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .hero-card {
    position: static;
    border-radius: 0;
  }

  .hero-visual {
    display: grid;
  }

  .hero-visual::after {
    display: none;
  }

  .hero-visual img {
    min-height: 270px;
  }

  .sector-card img {
    height: 190px;
  }
}


/* Conversion-focused revisions */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 23, 51, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(11, 23, 51, 0.05);
}

.service-card,
.sector-card,
.benefit-card,
.proof-grid div,
.trust-grid div {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.sector-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(183, 128, 34, 0.28);
}

.sector-card {
  display: flex;
  flex-direction: column;
}

.sector-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.sector-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.sector-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.sector-link:hover::after {
  transform: translateX(4px);
}

.sector-featured .sector-link {
  color: var(--gold-2);
}

.form-more {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft-2);
}

.form-more summary {
  color: var(--navy);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.form-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.82;
  transform: none;
}

.contact-form.is-submitted {
  border: 1px solid rgba(183, 128, 34, 0.28);
}

.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 15px;
}

.contact-form label {
  font-weight: 850;
}

.nav-menu a:focus-visible,
.btn:focus-visible,
.sector-link:focus-visible,
.whatsapp-float:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(183, 128, 34, 0.45);
  outline-offset: 3px;
}

@media (max-width: 780px) {
  .hero-badges {
    margin-top: 20px;
  }

  .hero-badges span {
    width: 100%;
    justify-content: center;
  }

  .form-more-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    width: auto;
    min-height: 54px;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.section-action {
  margin-top: 30px;
}


/* Final revamp feedback: stronger CTA, balanced sector grid, footer logo contrast */
.hero h1 {
  font-size: clamp(40px, 5.1vw, 64px);
  line-height: 1.02;
  max-width: 720px;
}

.hero-actions .btn-primary,
.mini-cta-card .btn-primary,
.form-submit {
  min-height: 56px;
  padding: 16px 26px;
  box-shadow: 0 16px 34px rgba(183, 128, 34, 0.34);
}

.trust-grid div {
  position: relative;
  padding: 22px 22px 22px 58px;
}

.trust-grid i {
  position: absolute;
  left: 22px;
  top: 22px;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(224, 187, 114, 0.42);
  font-style: normal;
  font-size: 13px;
  font-weight: 950;
}

.trust-grid strong {
  font-size: 16px;
}

.trust-grid span {
  font-size: 13.5px;
}

.highlight-box span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card {
  min-height: 100%;
  padding: 32px;
}

.service-card p,
.benefit-card p {
  font-size: 16px;
  line-height: 1.68;
}

.section-action .btn {
  width: auto;
  min-width: 260px;
}

.sector-grid {
  display: block;
}

.sector-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.04fr) minmax(0, 1.45fr);
  gap: 20px;
  align-items: stretch;
}

.sector-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sector-secondary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.sector-card {
  min-height: 100%;
}

.sector-card img {
  height: 188px;
}

.sector-card h3 {
  min-height: 52px;
}

.sector-card p {
  display: -webkit-box;
  min-height: 52px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sector-featured {
  grid-row: auto;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(11, 23, 51, 0.08), rgba(11, 23, 51, 0.93)),
    url("../img/hero-koperasi.webp") center / cover no-repeat;
}

.sector-featured .sector-story {
  padding: 36px;
}

.sector-featured h3 {
  max-width: 620px;
}

.sector-featured p {
  max-width: 560px;
  display: block;
  min-height: 0;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.sector-priority {
  padding: 8px 12px;
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.sector-custom {
  background:
    radial-gradient(circle at 0% 0%, rgba(224, 187, 114, 0.22), transparent 34%),
    var(--soft-2);
}

.sector-custom > div {
  justify-content: center;
  min-height: 188px;
}

.mini-cta-card {
  padding: 40px;
}

.mini-cta-card .btn {
  min-width: 240px;
}

.form-note {
  font-size: 13.5px;
}

.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.96;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}

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

@media (max-width: 1024px) {
  .sector-layout {
    grid-template-columns: 1fr;
  }

  .sector-featured {
    min-height: 460px;
  }

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

@media (max-width: 780px) {
  .hero h1 {
    font-size: clamp(34px, 10.5vw, 40px);
    letter-spacing: -0.045em;
  }

  .trust-grid div {
    padding: 20px 20px 20px 56px;
  }

  .sector-list,
  .sector-secondary-grid {
    grid-template-columns: 1fr;
  }

  .sector-featured {
    min-height: 430px;
  }

  .sector-featured .sector-story {
    padding: 28px;
  }

  .sector-card h3,
  .sector-card p {
    min-height: 0;
  }

  .mini-cta-card .btn,
  .section-action .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-logo {
    width: 156px;
  }
}

@media (max-width: 430px) {
  .sector-featured {
    min-height: 390px;
  }

  .sector-featured .sector-story {
    padding: 24px;
  }
}


/* =========================================================
   9.5+ Conversion Polish
   - stronger hero CTA
   - more readable trust/proof
   - stronger KDKMP narrative
   - premium balanced sector cards
   - WhatsApp CTA in contact card
   ========================================================= */

:root {
  --gold: #b57c1c;
  --gold-2: #efc66f;
  --navy-deep: #071127;
}

.site-header {
  box-shadow: 0 10px 30px rgba(11, 23, 51, 0.045);
}

.nav-cta {
  min-height: 42px;
  padding-inline: 20px;
  box-shadow: 0 12px 24px rgba(11, 23, 51, 0.12);
}

.nav-cta:hover {
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.hero {
  padding: 92px 0 66px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.92fr);
  gap: clamp(42px, 5vw, 68px);
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(42px, 4.85vw, 62px);
  line-height: 1.015;
  letter-spacing: -0.058em;
}

.hero-lead {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(16px, 1.34vw, 18px);
  line-height: 1.72;
}

.hero-lead span {
  display: block;
  margin-top: 6px;
  color: #303e59;
  font-weight: 760;
}

.hero-actions {
  margin-top: 30px;
  gap: 12px;
}

.hero-actions .btn-primary {
  min-width: 220px;
  transform: translateZ(0);
}

.hero-actions .btn-primary:hover,
.mini-cta-card .btn-primary:hover,
.form-submit:hover {
  box-shadow: 0 20px 42px rgba(183, 128, 34, 0.42);
}

.hero-badges {
  margin-top: 22px;
}

.hero-badges span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(239, 198, 111, 0.58);
  font-size: 11px;
  font-weight: 950;
}

.hero-visual {
  min-height: 470px;
  border: 1px solid rgba(11, 23, 51, 0.08);
  box-shadow: 0 28px 70px rgba(11, 23, 51, 0.18);
}

.hero-visual img {
  min-height: 470px;
}

.hero-card {
  padding: 18px 20px;
}

.hero-card strong {
  max-width: 520px;
  display: block;
}

.trust-strip {
  padding: 28px 0;
}

.trust-grid {
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(11, 23, 51, 0.055);
}

.trust-grid div {
  padding: 24px 24px 24px 64px;
}

.trust-grid i {
  left: 24px;
  top: 24px;
  width: 27px;
  height: 27px;
  background: linear-gradient(135deg, rgba(239, 198, 111, 0.72), rgba(181, 124, 28, 0.28));
  box-shadow: 0 8px 18px rgba(181, 124, 28, 0.16);
}

.trust-grid strong {
  font-size: 16.5px;
  letter-spacing: -0.012em;
}

.trust-grid span {
  color: #5b6678;
  font-size: 13.8px;
  line-height: 1.5;
}

.proof-strip {
  padding: 28px 0;
  background: linear-gradient(180deg, var(--navy), #0a1530);
  color: var(--white);
}

.proof-strip-card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.proof-strip-card span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.055);
  font-size: 13.5px;
  font-weight: 850;
}

.proof-strip-card span::before {
  content: "•";
  margin-right: 8px;
  color: var(--gold-2);
  font-size: 18px;
  line-height: 1;
}

.dealer-content {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.dealer-content::before {
  content: "Dealer resmi nasional PT Triangle Motorindo / VIAR Motor Indonesia";
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(239, 198, 111, 0.1);
  border: 1px solid rgba(239, 198, 111, 0.22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-grid div {
  padding: 16px;
}

.proof-grid strong {
  font-size: 14.5px;
}

.proof-grid span {
  line-height: 1.45;
}

.service-card,
.benefit-card {
  padding: 30px;
}

.service-card p,
.benefit-card p {
  font-size: 15.5px;
  line-height: 1.68;
}

.section-action .btn {
  min-height: 48px;
  padding-inline: 22px;
  border-color: rgba(11, 23, 51, 0.28);
}

.section-title-wide p {
  max-width: 760px;
}

.sector-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(239, 198, 111, 0.13), transparent 22%),
    var(--white);
}

.sector-layout-premium {
  grid-template-columns: minmax(350px, 1.02fr) minmax(0, 1.48fr);
  gap: 22px;
}

.sector-list,
.sector-secondary-grid {
  gap: 22px;
}

.sector-card {
  border-radius: 26px;
  background: #fffdfa;
  border-color: rgba(11, 23, 51, 0.09);
  box-shadow: 0 16px 36px rgba(11, 23, 51, 0.075);
}

.sector-card img {
  height: 196px;
}

.sector-card > div {
  padding: 24px;
}

.sector-card h3 {
  margin-top: 9px;
  font-size: 21.5px;
  min-height: 54px;
}

.sector-card p {
  color: #59667b;
  font-size: 15.2px;
}

.sector-tag {
  color: #a66c14;
  letter-spacing: 0.13em;
}

.sector-link {
  margin-top: auto;
  padding-top: 16px;
  color: var(--navy);
  font-size: 14.5px;
}

.sector-link:hover {
  color: var(--gold);
}

.sector-featured {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-color: rgba(239, 198, 111, 0.28);
  background:
    linear-gradient(180deg, rgba(11, 23, 51, 0.04), rgba(11, 23, 51, 0.94)),
    url("../img/hero-koperasi.webp") center / cover no-repeat;
}

.sector-featured::before {
  content: "";
  position: absolute;
  inset: auto -18% -22% auto;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  background: rgba(239, 198, 111, 0.18);
  filter: blur(4px);
}

.sector-featured .sector-story {
  position: relative;
  z-index: 1;
  padding: 38px;
}

.sector-featured h3 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.sector-featured p {
  margin-top: 14px;
  font-size: 16.2px;
  line-height: 1.62;
}

.sector-bullets {
  display: grid;
  gap: 9px;
  margin: 20px 0 2px;
  padding: 0;
  list-style: none;
}

.sector-bullets li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  font-weight: 760;
  line-height: 1.45;
}

.sector-bullets li::before {
  content: "✓";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 20px;
  height: 20px;
  margin: 1px 9px 0 0;
  border-radius: 999px;
  color: var(--navy);
  background: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
}

.sector-featured .sector-link {
  margin-top: 22px;
  color: var(--gold-2);
}

.sector-wide-card {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: stretch;
}

.sector-wide-card img {
  height: 100%;
  min-height: 210px;
}

.sector-custom > div {
  min-height: 210px;
  justify-content: center;
}

.mini-cta-card {
  padding: 42px;
  border: 1px solid rgba(239, 198, 111, 0.22);
  box-shadow: 0 22px 55px rgba(11, 23, 51, 0.14);
}

.mini-cta-card .btn {
  min-width: 260px;
}

.contact-card {
  padding: 28px;
}

.contact-wa {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  margin-top: 18px !important;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.form-intro {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(183, 128, 34, 0.22);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(239, 198, 111, 0.18), rgba(255, 255, 255, 0.9));
}

.form-intro strong {
  color: var(--navy);
  font-size: 16px;
}

.form-intro span {
  color: #657184;
  font-size: 13.5px;
  line-height: 1.45;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 48px;
}

.form-submit {
  margin-top: 4px;
}

.footer {
  background: linear-gradient(180deg, #071127, #050d20);
  color: rgba(255, 255, 255, 0.82);
}

.footer p,
.footer a,
.footer span {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 980px) {
  .hero {
    padding-top: 68px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 720px;
  }

  .trust-grid div {
    min-height: 118px;
  }

  .sector-layout-premium {
    grid-template-columns: 1fr;
  }

  .sector-featured {
    min-height: 520px;
  }

  .sector-wide-card {
    grid-template-columns: 1fr;
  }

  .sector-wide-card img {
    height: 220px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding: 54px 0 42px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.05;
  }

  .hero-lead span {
    margin-top: 8px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
  }

  .trust-grid div {
    min-height: auto;
  }

  .proof-strip-card {
    justify-content: flex-start;
  }

  .proof-strip-card span {
    width: 100%;
  }

  .sector-featured {
    min-height: 500px;
  }

  .sector-featured .sector-story {
    padding: 26px;
  }

  .sector-featured h3 {
    font-size: 30px;
  }

  .sector-list,
  .sector-secondary-grid {
    grid-template-columns: 1fr;
  }

  .sector-card img,
  .sector-wide-card img {
    height: 210px;
  }

  .sector-card h3,
  .sector-card p {
    min-height: 0;
  }

  .sector-bullets li {
    font-size: 14px;
  }

  .mini-cta-card {
    padding: 30px;
  }

  .mini-cta-card .btn,
  .section-action .btn {
    width: 100%;
    min-width: 0;
  }

  .contact-wa {
    width: 100%;
  }

  .whatsapp-float {
    min-height: 58px;
    font-size: 15px;
  }
}
