:root {
  --navy: #18245d;
  --navy-dark: #111a47;
  --orange: #ff9f1c;
  --orange-dark: #e87500;
  --cream: #fffaf1;
  --soft: #f5f7fb;
  --white: #ffffff;
  --text: #1b2130;
  --muted: #6f7787;
  --line: #e5e8ef;

  --shadow: 0 20px 50px rgba(20, 30, 60, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));

  margin: auto;
}

/* =====================================================
   NAVBAR
===================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;

  height: 78px;

  background: rgba(255, 255, 255, 0.96);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(20, 25, 40, 0.07);
}

.nav-inner {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;

  min-width: 240px;
}

.nav-brand img {
  width: 46px;
  height: 46px;

  border-radius: 12px;

  object-fit: cover;
}

.nav-brand span {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.nav-brand b {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.nav-brand small {
  margin-top: 6px;

  font-size: 9px;
  letter-spacing: 0.13em;

  color: var(--orange-dark);
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 7px;
}

.nav-links a {
  padding: 10px 12px;

  border-radius: 999px;

  color: #4e5563;

  font-size: 12px;
  font-weight: 800;

  transition: 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: #eef2ff;
}

.nav-links .nav-contact {
  background: var(--orange);
  color: #111;

  padding: 11px 16px;
}

.nav-links .nav-contact:hover,
.nav-links .nav-contact.active {
  background: var(--orange-dark);
  color: #fff;
}

.nav-toggle {
  display: none;

  border: 1px solid var(--line);

  background: #fff;

  border-radius: 10px;

  padding: 7px 10px;

  font-size: 20px;

  cursor: pointer;
}

/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  min-height: 650px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(10, 17, 55, 0.94),
    rgba(18, 30, 85, 0.78),
    rgba(18, 30, 85, 0.32)
  );
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  gap: 50px;

  align-items: center;

  padding: 90px 0;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  color: #ffbd4d;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 0 0 20px;

  font-size: clamp(44px, 6vw, 78px);

  line-height: 0.98;

  letter-spacing: -0.05em;
}

.hero h1 em {
  color: #ffbd4d;
  font-style: normal;
}

.hero-copy p {
  max-width: 650px;

  color: #dce1f1;

  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 28px;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 13px 20px;

  border-radius: 999px;

  border: 0;

  font-weight: 900;

  cursor: pointer;

  transition: 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #111;
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: #fff;
}

.btn-ghost {
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.3);

  background: rgba(255, 255, 255, 0.08);
}

.impact-card {
  color: #fff;

  padding: 30px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  background: rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(15px);

  border-radius: 28px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.impact-title {
  margin-bottom: 20px;

  color: #ffbd4d;

  font-size: 11px;
  font-weight: 900;

  letter-spacing: 0.13em;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 22px;
}

.impact-grid div {
  display: flex;
  flex-direction: column;

  gap: 2px;
}

.impact-grid b {
  color: #ffbd4d;

  font-size: 11px;
}

.impact-grid strong {
  font-size: 22px;
}

.impact-grid small {
  color: #c5cbdc;

  font-size: 11px;
}

/* =====================================================
   SECTION
===================================================== */

.section,
.section-soft {
  padding: 90px 0;
}

.section-soft {
  background: var(--soft);
}

.cream {
  background: var(--cream);
}

.soft {
  background: var(--soft);
}

.two-col {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  align-items: center;
}

.section-tag {
  display: inline-block;

  font-size: 10px;

  font-weight: 900;

  letter-spacing: 0.12em;
}

.section-tag.blue {
  color: var(--navy);
}

.section-tag.orange {
  color: var(--orange-dark);
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);

  line-height: 1.08;

  letter-spacing: -0.04em;

  margin: 15px 0;
}

.section p {
  color: var(--muted);

  font-size: 14px;
}

.text-link {
  display: inline-block;

  margin-top: 10px;

  color: var(--navy);

  font-weight: 900;
}

.feature-panel {
  padding: 40px;

  border-radius: 30px;

  background: linear-gradient(145deg, #243378, #121c4e);

  color: #fff;

  box-shadow: var(--shadow);
}

.feature-icon {
  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.1);

  color: #ffbd4d;

  font-size: 30px;
}

.feature-panel h3 {
  font-size: 30px;
}

.feature-panel p {
  color: #cfd5e5;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 25px;
}

.feature-list span {
  padding: 8px 10px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  color: #e6e9f2;

  font-size: 11px;
}

/* =====================================================
   SECTION HEAD
===================================================== */

.section-head {
  max-width: 750px;

  margin-bottom: 35px;
}

.section-head h2 {
  margin-bottom: 10px;
}

/* =====================================================
   HOME MENU
===================================================== */

.home-menu-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;
}

.home-menu-card {
  display: block;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 22px;

  padding: 25px;

  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);

  transition: 0.2s;
}

.home-menu-card:hover {
  transform: translateY(-3px);

  border-color: #cfd6ef;
}

.home-menu-card span {
  color: var(--orange-dark);

  font-size: 11px;

  font-weight: 900;
}

.home-menu-card h3 {
  margin: 12px 0 6px;
}

.home-menu-card p {
  min-height: 42px;

  color: var(--muted);

  font-size: 13px;
}

/* =====================================================
   INNOVATION
===================================================== */

.innovation-card {
  display: grid;

  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  border: 1px solid var(--line);

  border-radius: 30px;

  background: #fff;

  box-shadow: var(--shadow);
}

.innovation-image {
  position: relative;

  min-height: 430px;
}

.innovation-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.image-badge {
  position: absolute;

  top: 20px;
  left: 20px;

  padding: 8px 12px;

  border-radius: 999px;

  background: #fff;

  color: var(--navy);

  font-size: 10px;

  font-weight: 900;
}

.innovation-copy {
  padding: 50px;
}

.innovation-copy h3 {
  margin: 15px 0;

  font-size: 42px;
}

.specs {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  margin: 25px 0;

  gap: 8px;
}

.specs div {
  padding: 8px 12px;

  border: 1px solid var(--line);

  border-radius: 15px;

  background: #fff;
}

.specs strong {
  display: block;

  font-size: 18px;
}

.specs span {
  color: var(--muted);

  font-size: 10px;
}

/* =====================================================
   PAGE TITLE
===================================================== */

.page-title {
  padding: 80px 0 68px;

  background: linear-gradient(135deg, #f5f7ff 0%, #fff 60%, #fff6e8 100%);

  border-bottom: 1px solid var(--line);
}

.page-title h1 {
  max-width: 850px;

  margin: 18px 0 12px;

  font-size: clamp(38px, 5vw, 62px);

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.page-title p {
  max-width: 760px;

  color: var(--muted);

  font-size: 15px;
}

/* =====================================================
   PRODUCT
===================================================== */

.product-page {
  display: grid;

  grid-template-columns: 300px 1fr;

  gap: 20px;
}

.product-tabs {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.product-tab {
  display: flex;

  align-items: center;

  gap: 12px;

  width: 100%;

  padding: 17px;

  border: 1px solid var(--line);

  border-radius: 17px;

  background: #fff;

  text-align: left;

  cursor: pointer;
}

.product-tab.active {
  border-color: var(--orange);

  box-shadow: 0 10px 30px rgba(255, 159, 28, 0.1);
}

.product-tab span:nth-child(2) {
  flex: 1;
}

.product-tab b {
  display: block;

  font-size: 12px;
}

.product-tab small {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 9px;
}

.product-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--orange);

  flex: 0 0 auto;
}

.product-detail {
  min-width: 0;

  padding: 30px;

  border: 1px solid var(--line);

  border-radius: 28px;

  background: #fff;
}

.detail-top {
  margin-bottom: 25px;
}

.detail-top h2 {
  margin: 12px 0 5px;

  font-size: 35px;
}

.detail-subtitle {
  color: var(--muted);
}

.detail-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  gap: 30px;
}

.detail-image img {
  width: 100%;

  height: 330px;

  object-fit: cover;

  border-radius: 20px;
}

.detail-content p {
  color: var(--muted);

  font-size: 13px;
}

/* =====================================================
   ABOUT
===================================================== */

.about-card {
  display: grid;

  grid-template-columns: 240px 1fr;

  gap: 45px;

  align-items: center;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 30px;

  padding: 38px;

  box-shadow: var(--shadow);
}

.about-logo img {
  width: 100%;
  max-width: 220px;

  border-radius: 22px;

  display: block;
}

.about-card h2 {
  font-size: clamp(30px, 4vw, 46px);

  line-height: 1.1;

  margin: 15px 0;
}

.about-card p,
.mini-card p,
.mini-card li {
  color: var(--muted);

  font-size: 14px;
}

.about-mini {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 16px;

  margin-top: 20px;
}

.mini-card {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 24px;

  padding: 26px;
}

.mini-card h3 {
  margin-top: 0;
}

.mini-card ul {
  padding-left: 20px;

  margin-bottom: 0;
}

.structure {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}

.role-icon {
  width: 46px;
  height: 46px;

  border-radius: 14px;

  background: #eef2ff;

  color: var(--navy);

  display: grid;
  place-items: center;

  font-weight: 900;

  font-size: 20px;

  margin-bottom: 18px;
}

/* =====================================================
   PROGRAM
===================================================== */

.program-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 16px;
}

.program-card {
  min-height: 330px;
  flex: 0 1 calc(50% - 12px);
  box-sizing: border-box;
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(145deg, #25357f, #151e4c);
  color: #fff;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .program-card {
    flex: 0 1 100%;
  }
}

.program-card p {
  color: #cbd2e3;
}

.program-number {
  color: #ffbd4d;

  font-size: 11px;

  font-weight: 900;
}

.program-card h3 {
  font-size: 28px;
}

.program-card .focus {
  margin-top: 22px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  padding-top: 16px;
}

.program-card .focus strong {
  font-size: 10px;

  letter-spacing: 0.1em;

  color: #ffbd4d;
}

.program-card .focus ul {
  padding-left: 18px;

  color: #aeb6c7;

  font-size: 12px;
}

/* =====================================================
   CALCULATOR
===================================================== */

.calc-layout {
  display: grid;

  grid-template-columns: 1fr 0.9fr;

  gap: 20px;

  align-items: stretch;
}

.calc-card {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 28px;

  padding: 30px;
}

.calc-card h2 {
  font-size: 30px;

  margin: 0 0 7px;
}

.form-label {
  display: block;

  margin-top: 18px;

  margin-bottom: 7px;

  font-weight: 800;

  font-size: 12px;
}

.field {
  position: relative;
}

.field input,
.field select,
.form-grid select,
.form-grid textarea,
.form-grid input {
  width: 100%;

  border: 1px solid #dfe2e9;

  border-radius: 12px;

  padding: 12px 13px;

  font: inherit;

  background: #fff;
}

.field small {
  position: absolute;

  right: 12px;
  top: 13px;

  color: #8b93a2;

  pointer-events: none;
}

.row-input {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.callout {
  background: #fff7e9;

  border-left: 3px solid var(--orange);

  padding: 12px;

  border-radius: 8px;

  color: #765b32;

  font-size: 12px;
}

.chips {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;
}

.chip {
  border: 1px solid var(--line);

  border-radius: 999px;

  padding: 7px 10px;

  background: #fff;

  font-size: 11px;

  cursor: pointer;
}

.chip.orange {
  border-color: #f2c47b;

  background: #fff5e5;
}

.result-card {
  background: linear-gradient(145deg, #263581, #172355);

  color: #fff;

  border-radius: 28px;

  padding: 30px;

  box-shadow: 0 25px 60px rgba(38, 53, 129, 0.2);
}

.result-card h4 {
  font-size: 11px;

  letter-spacing: 0.1em;

  color: #ffca73;

  margin: 0 0 22px;
}

.result-row {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 15px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  font-size: 13px;
}

.result-row b {
  color: #ffbd4d;
}

.water {
  margin: 22px 0;

  padding: 15px;

  border-radius: 15px;

  background: rgba(255, 255, 255, 0.08);

  font-size: 12px;

  color: #dce2f5;
}

.price-big {
  font-size: 34px;

  font-weight: 900;

  color: #ffbd4d;

  margin: 6px 0 15px;
}

.wa {
  display: flex;

  justify-content: center;

  margin-top: 20px;

  background: var(--orange);

  color: #111;

  border-radius: 999px;

  padding: 12px;

  font-weight: 900;
}

/* =====================================================
   FAQ
===================================================== */

.faq-box {
  max-width: 760px;
  margin: 0 auto 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(20, 30, 60, 0.06);
}

.faq-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 13px;
}

.faq-filters {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 12px;
}

.faq-filter {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 11px;
  font-family: inherit;
  font-size: 12px;
  color: var(--text);
  cursor: pointer;
}

.faq-filter.active {
  background: var(--orange);
  color: #111;
  border-color: var(--orange);
}

.faq-list {
  max-width: 760px;
  margin: auto;
}

.faq-item {
  padding: 20px;

  background: #fff;

  border: 1px solid var(--line);

  border-radius: 16px;

  margin-bottom: 10px;
}

.faq-item[hidden] {
  display: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.65;
}

.faq-item summary:before {
  content: "Q.";
  margin-right: 12px;
  color: var(--orange-dark);
}

.faq-item p:before {
  content: "A.";
  margin-right: 12px;
  color: #0a9c6a;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:after {
  content: "+";

  float: right;

  color: var(--orange-dark);

  font-weight: 900;
}

.faq-item[open] summary:after {
  content: "−";
}

/* =====================================================
   CONTACT
===================================================== */

.contact-info {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 12px;

  margin-bottom: 18px;
}

.contact-tile {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 20px;

  padding: 22px;
}

.contact-tile .icon {
  font-size: 25px;

  color: var(--orange-dark);

  margin-bottom: 12px;
}

.contact-tile b {
  font-size: 13px;
}

.contact-tile p {
  color: var(--muted);

  font-size: 12px;
}

.message-format {
  background: var(--cream);
  border: 1px solid #f0dfbd;
  border-radius: 20px;
  padding: 24px;
}

.message-format h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 20px;
}

.message-format p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.message-format-content {
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.9;
  white-space: normal;
}

.message-format-action {
  display: inline-flex;
  margin-top: 16px;
}

.contact-layout {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 18px;
}

.form-card,
.history-card {
  background: #fff;

  border: 1px solid var(--line);

  border-radius: 25px;

  padding: 30px;
}

.form-card h2 {
  margin-top: 0;

  font-size: 30px;
}

.form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;
}

.form-grid textarea {
  min-height: 140px;

  resize: vertical;

  grid-column: 1 / -1;
}

.form-full {
  grid-column: 1 / -1;
}

.history-card {
  background: #fffaf1;

  border-color: #f3dfbd;
}

.history-card h3 {
  margin-top: 0;
}

.history-card p {
  color: var(--muted);

  font-size: 12px;
}

.history-empty {
  text-align: center;

  padding: 45px 15px;

  color: #9aa2af;

  font-size: 13px;

  line-height: 2;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
  background: #101735;

  color: #fff;

  padding-top: 60px;
}

.footer-grid {
  display: grid;

  grid-template-columns: 1.2fr 0.7fr 1fr;

  gap: 40px;

  padding-bottom: 45px;
}

.footer-created-by {
  margin: 0 0 8px;

  color: #929aaa;

  font-size: 10px;
  letter-spacing: 0.08em;
}

.footer-logo {
  display: flex;

  align-items: center;

  gap: 10px;
}

.footer-logo img {
  width: 44px;
  height: 44px;

  border-radius: 10px;

  object-fit: cover;
}

.footer-logo span {
  display: flex;

  flex-direction: column;
}

.footer-logo small {
  color: var(--orange);

  font-size: 9px;

  letter-spacing: 0.1em;

  margin-top: 4px;
}

.footer-grid > div > p {
  color: #929aaa;

  font-size: 12px;
}

.footer-grid h4 {
  margin-top: 0;

  font-size: 11px;

  letter-spacing: 0.1em;

  color: #ffbd4d;
}

.footer-links {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;
}

.footer-links a {
  color: #b7bfd1;

  font-size: 11px;
}

.footer-links a:hover {
  color: #fff;
}

.map-card {
  display: block;

  width: 100%;
  height: 150px;

  overflow: hidden;

  border: 0;
  border-radius: 15px;
}

.copyright {
  padding: 18px 20px;

  text-align: center;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: #7d869d;

  font-size: 10px;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
  .site-nav {
    height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;

    position: absolute;

    top: 78px;

    left: 14px;
    right: 14px;

    padding: 12px;

    background: #fff;

    border: 1px solid var(--line);

    border-radius: 18px;

    box-shadow: var(--shadow);

    flex-direction: column;

    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    border-radius: 10px;
  }

  .hero-grid,
  .two-col,
  .product-page,
  .calc-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr 1fr;
  }

  .about-card {
    grid-template-columns: 1fr;
  }

  .structure {
    grid-template-columns: 1fr 1fr;
  }

  .innovation-card {
    grid-template-columns: 1fr;
  }

  .home-menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-brand {
    min-width: 0;
  }

  .nav-brand small {
    font-size: 7px;
  }

  .nav-brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 75px 0;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .impact-grid {
    gap: 14px;
  }

  .section,
  .section-soft {
    padding: 68px 0;
  }

  .page-title {
    padding: 60px 0 50px;
  }

  .about-mini,
  .structure,
  .contact-info,
  .form-grid,
  .home-menu-grid,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .row-input {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 24px;
  }

  .product-page .product-tabs {
    display: grid;

    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-image img {
    height: 260px;
  }

  .innovation-copy {
    padding: 30px;
  }

  .innovation-copy h3 {
    font-size: 34px;
  }

  .contact-layout {
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .specs {
    grid-template-columns: 1fr;
  }
}

/* Box Luar (Container Utama) */
.outer-box {
  background: rgba(20, 45, 85, 0.55); /* Biru tua transparan */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Judul Kecil di Luar */
.outer-box .section-title {
  color: #ffa500; /* Warna oranye/kuning emas */
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Box Dalam (Kotak Transparan Biru) */
.inner-box {
  background: rgba(30, 65, 115, 0.45); /* Layer biru transparan kedua */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 35px 25px;
  width: fit-content;
  min-width: 260px;
  margin: 0 auto;

  /* Menengahkan teks & isi di dalam box */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Angka Animasi 60+ */
.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffa500; /* Warna oranye terang */
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

/* Teks Keterangan */
.stat-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

.inner-box {
  position: relative;
  overflow: hidden;
}

.stat-number.pulse-animation {
  animation: flipUp 0.6s ease-out forwards;
}

.stat-number.pulse-animation span {
  display: inline-block;
  background: linear-gradient(90deg, #ffa500 0%, #fff 50%, #ffa500 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 2s linear infinite;
}

@keyframes flipUp {
  0% {
    transform: rotateX(-90deg);
    opacity: 0;
  }
  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.about-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.about-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Baris Atas Grid */
.about-top-row {
  display: flex;
  gap: 40px;
  align-items: stretch;
  margin-bottom: 25px;
}

.about-col-left {
  flex: 1.1;
}

.about-col-right {
  flex: 0.9;
  display: flex;
}

/* Typography (Heading tidak merenggang lagi) */
.sub-title {
  color: #1a243d;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.main-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: left; /* Mengatasi spasi besar antar kata */
}

.about-text {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
  text-align: justify;
}

/* Card Paving Block Kanan */
.product-highlight-card {
  background: #1a243d;
  color: #ffffff;
  padding: 35px 25px;
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(26, 36, 61, 0.15);
  width: 100%;
}

.card-icon-badge {
  background: rgba(252, 163, 17, 0.2);
  width: fit-content;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.product-highlight-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.product-highlight-card p {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: justify;
}

.tag-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #f3f4f6;
}

/* Baris Bawah: 2 Kotak Fitur Pasti Presisi Sejajar */
.about-bottom-row {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.feature-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(252, 163, 17, 0.12);
}

.feature-icon {
  background-color: #fef3e6;
  padding: 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-info h4 {
  margin: 0 0 4px 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #111827;
}

.feature-info p {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
  line-height: 1.5;
  text-align: justify;
}

/* Read More & Extra Profile */
.read-more-wrapper {
  margin-top: 10px;
}

.btn-read-more {
  background: none;
  border: none;
  color: #1a243d;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.btn-read-more:hover {
  color: #fca311;
}

.extra-profile {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.5s ease;
  opacity: 0;
}

.extra-profile.active {
  max-height: 500px;
  opacity: 1;
  margin-top: 20px;
}

.vm-grid {
  display: flex;
  gap: 20px;
}

.vm-card {
  flex: 1;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #fca311;
}

.vm-card h4 {
  margin: 0 0 10px 0;
  color: #1a243d;
}

.vm-card p,
.vm-card li {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.5;
  text-align: justify;
}

/* Mobile */
@media (max-width: 850px) {
  .about-top-row,
  .about-bottom-row,
  .vm-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* Container Toggle Profil */
.extra-profile {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
  opacity: 0;
}

.extra-profile.active {
  max-height: 2000px;
  opacity: 1;
  margin-top: 35px;
}

/* ================= VISI MISI STYLING ================= */
.vm-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
}

.vm-card {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(26, 36, 61, 0.05);
}

.vm-icon-badge {
  background: rgba(252, 163, 17, 0.15); /* Kuning/Oranye soft */
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a243d; /* Biru Tua Utama */
  margin-bottom: 16px;
}

.vm-card p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: justify;
}

.misi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.misi-list li {
  position: relative;
  padding-left: 20px;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: justify;
}

.misi-list li::before {
  content: "•";
  color: #fca311; /* Titik Kuning/Oranye */
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ================= STRUKTUR & INSTRUKTUR ================= */
.struktur-section {
  padding-top: 30px;
  border-top: 1px dashed #cbd5e1;
}

.section-header-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 35px auto;
}

.section-header-center h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a243d; /* Biru Tua Utama */
  margin-bottom: 8px;
}

.section-header-center p {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.5;
}

.struktur-grid {
  display: flex;
  gap: 20px;
}

.struktur-card {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(26, 36, 61, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.struktur-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(26, 36, 61, 0.1);
}

.avatar-badge {
  background: #fca311; /* Kuning/Oranye Utama */
  color: #1a243d; /* Teks Biru Tua */
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(252, 163, 17, 0.3);
}

.struktur-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a243d; /* Biru Tua */
  margin: 0 0 6px 0;
}

.role-subtitle {
  color: #fca311; /* Kuning/Oranye Aksesori */
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.struktur-card p {
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Responsif HP */
@media (max-width: 850px) {
  .vm-grid,
  .struktur-grid {
    flex-direction: column;
  }
}

.one-page-section {
  scroll-margin-top: 78px;
}

.calc-intro {
  margin: 2px 0;
  color: var(--muted);
  font-size: 9px;
}

.calc-area-callout {
  margin-top: 9px;
}

.calculate-button {
  margin-top: 20px;
}

.result-caption {
  color: #8b93a2;
  font-size: 9px;
}

.result-note {
  color: #9aa2af;
  font-size: 8px;
}

.contact-cooperative {
  color: #ff6b00;
}

.form-message {
  color: #0a9c6a;
  font-size: 8px;
}

/* Container Toggle Profil */
.extra-profile {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
  opacity: 0;
}

.extra-profile.active {
  max-height: 2000px;
  opacity: 1;
  margin-top: 35px;
}

/* ================= VISI MISI STYLING ================= */
.vm-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
}

.vm-card {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(26, 36, 61, 0.05);
}

.vm-icon-badge {
  background: rgba(252, 163, 17, 0.15); /* Kuning/Oranye soft */
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.vm-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a243d; /* Biru Tua Utama */
  margin-bottom: 16px;
}

.vm-card p {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.7;
  text-align: justify;
}

.misi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.misi-list li {
  position: relative;
  padding-left: 20px;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
  text-align: justify;
}

.misi-list li::before {
  content: "•";
  color: #fca311; /* Titik Kuning/Oranye */
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ================= STRUKTUR & INSTRUKTUR ================= */
.struktur-section {
  padding-top: 30px;
  border-top: 1px dashed #cbd5e1;
}

.section-header-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 35px auto;
}

.section-header-center h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a243d; /* Biru Tua Utama */
  margin-bottom: 8px;
}

.section-header-center p {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.5;
}

.struktur-grid {
  display: flex;
  gap: 20px;
}

.struktur-card {
  flex: 1;
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(26, 36, 61, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.struktur-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(26, 36, 61, 0.1);
}

.avatar-badge {
  background: #fca311; /* Kuning/Oranye Utama */
  color: #1a243d; /* Teks Biru Tua */
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(252, 163, 17, 0.3);
}

.struktur-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a243d; /* Biru Tua */
  margin: 0 0 6px 0;
}

.role-subtitle {
  color: #fca311; /* Kuning/Oranye Aksesori */
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.struktur-card p {
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Responsif HP */
@media (max-width: 850px) {
  .vm-grid,
  .struktur-grid {
    flex-direction: column;
  }
}

/* Layout Grid 2 Top 2 Bottom */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* Base Card Program Utama */
.program-card {
  background: #1a243d;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}

/* Header Khusus Card Program */
.program-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.program-card-badge {
  background: rgba(252, 163, 17, 0.15);
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.program-card-stat {
  text-align: right;
}

.program-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fca311;
  line-height: 1;
  display: block;
}

.program-stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.program-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.program-card p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.focus-section {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.focus-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: #fca311;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}

/* Styling Umum untuk Titik Warna */
.chip .dot {
  font-size: 1.1rem;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* Pewarnaan Masing-Masing Titik */
.dot-abu {
  color: #8892b0; /* Abu-abu */
}

.dot-merah {
  color: #e63946; /* Merah Terakota */
}

.dot-kuning {
  color: #ffb703; /* Kuning Mustard */
}

.dot-hitam {
  color: #2b2d42; /* Hitam Arang */
}

/* (Opsional) Styling Tambahan Tombol Chip */
.chip {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Tampilan Saat Chip Aktif / Dipilih */
.chip.active,
.chip[aria-pressed="true"] {
  background: #fff7ed;
  border-color: #fca311;
  color: #1e293b;
}

/* Styling Utama Dropdown Select */
#type {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a243d; /* Warna teks Biru Tua */
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Efek Hover & Focus Saat Dropdown Diklik */
#type:hover,
#type:focus {
  border-color: #fca311; /* Ubah border jadi Kuning/Oranye */
  box-shadow: 0 0 0 4px rgba(252, 163, 17, 0.15); /* Ring Oranye Soft */
}

/* Styling Opsi Pilihan di Dalam Dropdown */
#type option {
  background-color: #1a243d; /* Latar Belakang Biru Tua */
  color: #ffffff; /* Teks Putih */
  padding: 12px;
  font-size: 0.95rem;
}

/* Warna Pilihan yang Sedang Dihover / Disorot (Di Browser Modern) */
#type option:hover,
#type option:focus,
#type option:checked {
  background-color: #fca311 !important; /* Latar Kuning/Oranye saat dipilih */
  color: #1a243d !important; /* Teks berubah jadi Biru Tua */
}
.card-icon-badge {
  width: 48px;
  height: 48px;
  background: rgba(252, 163, 17, 0.15); /* Background Kuning Soft */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.usage-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a243d;
  margin-top: 12px;
  margin-bottom: 8px;
}

.usage-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px 14px;
  list-style: none;
  padding: 0;
  margin: 10px 0 16px 0;
}

.usage-check-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  padding: 5px 10px;
}

/* Badge Centang Oranye */
.usage-check-grid .check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(252, 163, 17, 0.2);
  color: #fca311;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Styling Emoji */
.usage-check-grid .emoji-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Container Tombol Berdampingan */
.action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap; /* Rapi saat dibuka di layar HP */
}

/* Tombol Utama (Oranye) */
.btn-primary {
  background-color: #fca311;
  color: #1a243d;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #e5920c;
  transform: translateY(-2px);
}

/* Tombol Sekunder / Kalkulator (Biru Tua / Outline) */
.btn-secondary {
  background-color: transparent;
  color: #1a243d;
  border: 2px solid #1a243d;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #1a243d;
  color: #ffffff;
  transform: translateY(-2px);
}

.product-title-badge {
  display: inline-block;
  background-color: #ffffff;
  color: #083463; /* Warna biru gelap */
  font-size: 1.4rem;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 12px;
  border-left: 6px solid #fca311; /* Aksen garis kuning */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

  /* PENGATURAN POSISI */
  margin-top: -20px; /* Angka minus ini untuk menaikkan posisi ke atas */
  margin-bottom: 50px;
  margin-left: 55px; /* Memberi jarak dari pinggir kiri agar sejajar tombol */
}

/* Jarak antar tombol dibuat lebih rapat */
.use-case-item {
  margin-bottom: 6px;
  border-radius: 20px; /* Lengkungan disesuaikan agar pas dengan ukuran kecil */
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

/* Tombol utama (Pill) dibuat lebih ramping */
.use-case-pill {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px; /* Padding dikurangi dari 12px ke 6px */
  cursor: pointer;
  font-size: 0.85rem; /* Font diperkecil */
  font-weight: 600;
  color: #1e293b;
  user-select: none;
  list-style: none;
}

.pill-content {
  display: flex;
  align-items: center;
  gap: 8px; /* Jarak antar elemen diperkecil */
}

/* Lingkaran centang dibuat lebih kecil */
.check-icon {
  width: 18px;
  height: 18px;
  background-color: #fef3c7;
  color: #fca311;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
}

/* Panah kecil di kanan */
.arrow-icon {
  font-size: 1rem;
  color: #64748b;
  transition: transform 0.2s ease;
  margin-left: auto;
}

/* Isi detail saat dibuka juga disesuaikan ukurannya */
.use-case-detail {
  background-color: #ffffff;
  padding: 8px 14px 10px 40px;
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.4;
}

.use-case-detail .detail-bullet-list {
  margin: 0;
  padding-left: 14px;
}

.use-case-detail .detail-bullet-list li {
  font-size: 0.8rem;
  margin-bottom: 2px;
}

/* Mengecilkan ukuran tombol khusus di area aksi produk */
.action-buttons .btn {
  padding: 8px 16px !important; /* Menipiskan ketebalan atas-bawah & samping */
  font-size: 0.85rem !important; /* Ukuran teks lebih ringkas */
  border-radius: 20px !important; /* Kurva sudut disesuaikan agar proporsional */
  min-height: unset !important; /* Menghapus batasan tinggi bawaan jika ada */
}

/* Mengatur jarak antar tombol agar lebih rapat */
.action-buttons {
  display: flex;
  gap: 8px; /* Jarak antar tombol diperkecil */
  margin-top: 16px;
}

.program-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.program-card {
  flex: 0 1 calc(50% - 12px);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .program-card {
    flex: 0 1 100%;
  }
}
