/* ========== Base ========== */
:root {
  --navy: #0c2434;
  --navy-2: #0b2130;
  --footer-navy: #071c2a; /* lebih gelap dari kiri */
  --orange: #f27028;
  --orange-2: #f07a3a;
  --text: #0a0a0a;
  --muted: #7a7f87;
  --card: #ffffff;
  --surface: #f4f6f8;
  --lime: #b7f0be;
  --google:#16c441;
  --white:#ffffff;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  overflow: hidden; /* lock page, the right pane will scroll */
}
img {
  max-width: 100%;
  display: block;
}

/* ========== Layout ========== */
.left-pane {
  position: fixed;
  inset: 0 auto 0 0;
  width: 480px;
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  z-index: 50;
}
.right-pane {
  margin-left: 480px;
  height: 100vh;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: #fff;
}

/* left pane */
.left-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.logo {
  height: 36px;
}
.btn-login {
  background: #c8f5ce;
  color: #102317;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.left-hero h1 {
  margin: 50px 0 30px;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.left-hero .sub {
  font-size: 14px;
  line-height: 1.6;
  color: #d8e4ee;
}
.left-services {
  margin-top: 26px;
}
.left-services h3 {
  font-size: 16px;
  color: #bde2c3;
  font-weight: 700;
  margin: 0 0 12px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 12px;
  padding: 16px 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.service-card img {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}
.sc-title {
  font-weight: 700;
  font-size: 14px;
}
.sc-sub {
  font-size: 12px;
}

.left-footer {
  margin-top: auto;
}
.mini-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.mini-links a {
  color: #bde2c3;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
}
.mini-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ========== Sections on right ========== */
.section {
  padding: 44px 0;
} /* lebih lega */
.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 32px; /* beri gutter biar tak nabrak */
}
h2 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #213547;
  text-align: center;
}
.muted {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
.center {
  text-align: center;
}

/* hero */
.hero .hero-media {
  margin-top: 24px;
}
.hero .hero-media img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
  width: 100%;
}

/* products */
.products .product-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-card img {
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.product-card h4 {
  font-size: 12px;
  margin: 14px 0 0;
  color: var(--orange);
}

/* lokasi */
.lokasi .lokasi-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.lokasi-item {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.lokasi-item img {
  border-radius: 10px;
  margin-bottom: 10px;
}
.lokasi-caption {
  padding: 4px 6px 2px;
}
.lokasi-caption h5 {
  margin: 0 0 4px;
  font-size: 16px;
}
.lokasi-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* features (ICON ONLY) */
.features .tagline {
  margin: 4px 0 18px;
}
.features .feature-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.feature-box {
  background: #243c2d;
  border: 1px solid #3f5a47;
  border-radius: 16px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #d8f1dd;
  min-height: 120px;
  text-align: center;
}
.feature-box i {
  font-size: 34px;
  line-height: 1;
  display: block;
}
.feature-box span {
  font-weight: 600;
  font-size: 14px;
}

/* pricing */
.pricing .pricing-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.pricing-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.pricing-card img {
  border-radius: 8px;
  margin-bottom: 10px;
}
.pricing-card h6 {
  margin: 6px 0 4px;
  font-size: 14px;
}
.price {
  margin: 0;
  color: #2d3648;
  font-weight: 600;
  font-size: 13px;
}

/* footer (dark blue) */
.footer {
  padding: 28px 0 36px;
  background: var(--footer-navy);
  color: #e7eef6;
  margin-top: 8px;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
}
.footer-logo {
  height: 44px;
  filter: brightness(1.05);
}
.footer-right ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-right a {
  color: #dbe7f1;
  text-decoration: none;
}
.footer-right a:hover {
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: #b6c6d6;
  text-decoration: none;
  font-size: 14px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .products .product-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .pricing .pricing-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .features .feature-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1024px) {
  .left-pane {
    width: 360px;
  }
  .right-pane {
    margin-left: 360px;
  }
  .container {
    padding: 0 24px;
  }
  .products .product-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing .pricing-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .features .feature-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .lokasi .lokasi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  body {
    overflow: auto;
  }
  .left-pane {
    position: sticky;
    width: auto;
    inset: auto;
    top: 0;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 60;
  }
  .right-pane {
    margin: 0;
    height: auto;
  }
  .section {
    padding: 32px 0;
  }
  .container {
    padding: 0 20px;
  }
  .service-cards {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
  }
  .products .product-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing .pricing-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .features .feature-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .lokasi .lokasi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .left-hero h1 {
    font-size: 28px;
    margin: 28px 0 14px;
  }
  .container {
    padding: 0 16px;
  }
  .product-card {
    padding: 10px;
  }
  .pricing-card {
    padding: 12px;
  }
}

/* ===== Layout dasar ===== */
.auth-body {
  background: var(--navy);
  color: #eaf2f9;
}
.auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 16px;
}

.auth-brand img {
  height: 64px;
  display: block;
  margin: 0 auto 18px;
}

/* Panel tengah */
.auth-panel {
  width: min(560px, 100%);
  text-align: center;
  margin: 10px auto 24px;
}

.auth-panel h1 {
  margin: 0 0 6px;
  font-size: 28px;
  color: #f8fbff;
}
.subtitle {
  margin: 0 0 18px;
  color: #cfdae6;
  font-size: 14px;
}

/* Form */
.auth-form {
  width: 100%;
  margin: 0 auto;
}
.form-row {
  margin-bottom: 14px;
  text-align: left;
}
.form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #e9f4ff;
  font-weight: 600;
}
.form-row input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  background: var(--white);
  color: #0b1720;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row input:focus {
  border-color: #9ef4a4;
  box-shadow: 0 0 0 4px rgba(158, 244, 164, 0.25);
}

/* Buttons */
.btn {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.05s ease, filter 0.15s ease;
  margin-top: 12px;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 112, 40, 0.35);
}
.btn-primary:hover {
  filter: brightness(1.03);
}
.btn-google {
  background: var(--google);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 196, 65, 0.35);
}

/* Meta links */
.auth-meta {
  margin-top: 14px;
}
.auth-meta .link {
  color: #d7e7f5;
  text-decoration: none;
  font-size: 14px;
}
.auth-meta .link:hover {
  text-decoration: underline;
}
.auth-meta p {
  margin: 8px 0 0;
  font-size: 14px;
}
.link-accent {
  color: var(--orange);
}
.link-accent:hover {
  text-decoration: underline;
}

/* Footer */
.auth-footer {
  margin-top: auto;
  padding: 14px 0;
}
.mini-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.mini-links a {
  color: var(--lime);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.95;
}
.mini-links a:hover {
  text-decoration: underline;
}

/* ===== Responsif ===== */
@media (max-width: 640px) {
  .auth-page {
    padding: 28px 14px;
  }
  .auth-panel h1 {
    font-size: 24px;
  }
  .subtitle {
    font-size: 13px;
  }
  .form-row input {
    height: 46px;
  }
  .btn {
    height: 46px;
  }
}

@media (max-width: 420px) {
  .auth-brand img {
    height: 54px;
  }
  .mini-links {
    gap: 14px;
  }
}
