.beranda {
  padding-top: 80px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--clr-dark) 0%, var(--clr-forest) 40%, var(--clr-forest-mid) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(45, 106, 79, 0.2) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: var(--section-pad) 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
}

.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--clr-white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--clr-gold);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-gold);
  color: var(--clr-forest);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  border: none;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--clr-white);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
  display: inline-flex;
  background: transparent;
  color: var(--clr-forest);
  border: 1.5px solid var(--clr-sand);
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--clr-forest);
  color: var(--clr-white);
  border-color: var(--clr-forest);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
}

.hero-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
}

.hero-card-main {
  inset: 0;
  background: linear-gradient(145deg, var(--clr-forest-mid), var(--clr-forest-light));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.hero-card-quote {
  position: relative;
  z-index: 2;
}

.hero-card-quote .q-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--clr-gold);
  opacity: 0.5;
}

.hero-card-quote p {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-style: italic;
  margin: -12px 0 16px;
}

.hero-card-quote .q-author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gold-light);
}

.hero-float-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.hero-float-stat.s1 {
  top: 10%;
  right: -30px;
}

.hero-float-stat.s2 {
  bottom: 15%;
  left: -40px;
}

.hero-float-stat .stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--clr-forest);
}

.hero-float-stat .stat-label {
  font-size: 12px;
  color: var(--clr-text-light);
  font-weight: 500;
}

/* About Preview */
.about-preview {
  padding: var(--section-pad) 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--clr-forest-mid), var(--clr-forest));
  position: relative;
  overflow: hidden;
}

.about-image-inner {
  position: absolute;
  inset: 30px;
  border: 1.5px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-image-inner .emblem {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.about-image-inner .emblem-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 16px;
}

.about-image-inner .emblem-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.about-year-badge {
  position: absolute;
  bottom: -16px;
  right: 30px;
  background: var(--clr-gold);
  color: var(--clr-forest);
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--clr-text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.about-stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--clr-white);
  border-radius: 16px;
  border: 1px solid var(--clr-sand);
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--clr-forest);
}

.about-stat .label {
  font-size: 12px;
  color: var(--clr-text-light);
  margin-top: 4px;
  font-weight: 500;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1.5px;
  background: var(--clr-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--clr-forest);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .about-stat {
    padding: 16px 8px;
  }

  .about-stat .num {
    font-size: 28px;
  }
}

/* ── Small Mobile ────────────────────────────── */
@media (max-width: 640px) {
  .hero-content {
    padding: clamp(40px, 8vw, 80px) 0;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-image-wrapper {
    max-width: 300px;
  }
}

@media (max-width: 400px) {
  .about-stats {
    gap: 8px;
  }

  .about-stat {
    padding: 12px 4px;
  }

  .about-stat .num {
    font-size: 22px;
  }

  .about-stat .label {
    font-size: 10px;
  }
}