:root {
  --lm-blue-600: #06b6d4;
  --lm-blue-700: #0891b2;
  --lm-blue-800: #0e7490;
  --lm-slate-900: #1f2a3a;
  --lm-slate-700: #425066;
  --lm-red-600: #e11d48;
  --lm-red-700: #be123c;
  --lm-bg: #f5f7fb;
  --lm-card: #ffffff;
  --lm-border: rgba(31, 42, 58, 0.10);

  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(31, 42, 58, 0.12);
  --shadow-soft: 0 10px 26px rgba(31, 42, 58, 0.10);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--lm-slate-900);
  background: var(--lm-bg);
  line-height: 1.6;
}

body.is-home {
  background: #ffffff;
}

a {
  color: var(--lm-blue-700);
  text-decoration: none;
}

a:hover {
  color: var(--lm-red-700);
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.input {
  width: 100%;
  border: 1px solid rgba(31, 42, 58, 0.16);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  background: #fff;
}

.field {
  width: 100%;
  border: 1px solid rgba(31, 42, 58, 0.16);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  background: #fff;
}

.input:focus {
  outline: none;
  border-color: rgba(14, 165, 198, 0.65);
  box-shadow: 0 0 0 4px rgba(14, 165, 198, 0.14);
}

.field:focus {
  outline: none;
  border-color: rgba(14, 165, 198, 0.65);
  box-shadow: 0 0 0 4px rgba(14, 165, 198, 0.14);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--lm-blue-600), var(--lm-red-600));
  color: #fff;
  box-shadow: 0 12px 28px rgba(8, 145, 178, 0.25), 0 10px 26px rgba(225, 29, 72, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(8, 145, 178, 0.26), 0 14px 34px rgba(225, 29, 72, 0.22);
  color: #fff;
}

.btn-ghost {
  background: #ffffff;
  border-color: rgba(31, 42, 58, 0.14);
  color: var(--lm-slate-900);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(31, 42, 58, 0.10);
  background: #ffffff;
}

.topbar-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  justify-content: flex-end;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
}

.brand-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.brand-logo-text {
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--lm-slate-900);
  font-size: 1.05rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo-strong {
  background: linear-gradient(135deg, var(--lm-blue-700), var(--lm-red-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text {
  font-size: 1.05rem;
  color: var(--lm-slate-900);
}

.brand-strong {
  background: linear-gradient(135deg, var(--lm-blue-700), var(--lm-red-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lm-blue-600), var(--lm-red-600));
  box-shadow: 0 10px 24px rgba(31, 42, 58, 0.16);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
}

.topbar-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: rgba(31, 42, 58, 0.82);
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
}

.nav-link:hover {
  background: rgba(14, 165, 198, 0.10);
  color: var(--lm-blue-800);
}

.nav-link.is-active {
  background: rgba(196, 56, 74, 0.10);
  color: var(--lm-red-700);
}

.nav-link--cta {
  background: linear-gradient(135deg, rgba(14, 165, 198, 0.18), rgba(225, 29, 72, 0.16));
  border: 1px solid rgba(14, 165, 198, 0.25);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-weight: 900;
  color: var(--lm-slate-900);
  box-shadow: 0 12px 26px rgba(31, 42, 58, 0.10);
}

.nav-link--cta:hover {
  background: linear-gradient(135deg, rgba(14, 165, 198, 0.24), rgba(225, 29, 72, 0.20));
  border-color: rgba(225, 29, 72, 0.24);
  box-shadow: 0 16px 34px rgba(31, 42, 58, 0.14);
  color: var(--lm-slate-900);
}

.nav-link--cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.22), 0 16px 34px rgba(31, 42, 58, 0.14);
}

.nav-link--cta.is-active {
  background: linear-gradient(135deg, var(--lm-blue-600), var(--lm-red-600));
  border-color: transparent;
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  appearance: none;
  border: none;
  background: transparent;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem;
  border-radius: 16px;
  border: 1px solid rgba(31, 42, 58, 0.12);
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(31, 42, 58, 0.16);
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu .nav-link {
  width: 100%;
}

.nav-dropdown-menu .nav-link:hover {
  background: rgba(14, 165, 198, 0.10);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(31, 42, 58, 0.15);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font-weight: 800;
  cursor: pointer;
}

.topbar-cta {
  justify-self: end;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
  }

  .topbar-search {
    display: none;
  }

  .brand-logo img {
    height: 54px;
  }

  .brand-logo-text {
    display: none;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(31, 42, 58, 0.12);
    padding: 0.85rem 1.25rem 1.1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 0.15rem;
    display: flex;
    border-radius: 14px;
    box-shadow: none;
    background: rgba(245, 247, 251, 0.85);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1.1rem 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(31, 42, 58, 0.12);
  background:
    radial-gradient(1200px 520px at 20% 20%, rgba(6, 182, 212, 0.12), transparent 55%),
    radial-gradient(900px 420px at 80% 10%, rgba(225, 29, 72, 0.10), transparent 55%),
    #ffffff;
  box-shadow: var(--shadow-soft);
  color: var(--lm-slate-900);
}

.contact-card:hover {
  box-shadow: var(--shadow);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(6, 182, 212, 0.12);
  color: var(--lm-blue-800);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-icon--wa {
  background: rgba(34, 197, 94, 0.14);
  color: #166534;
}

.contact-icon--ig {
  background: rgba(225, 29, 72, 0.12);
  color: #9f1239;
}

.contact-icon--tt {
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.contact-icon--web {
  background: rgba(6, 182, 212, 0.12);
  color: var(--lm-blue-800);
}

.contact-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.contact-sub {
  color: rgba(31, 42, 58, 0.72);
  font-weight: 700;
  margin-top: 0.15rem;
  word-break: break-word;
}

.contact-arrow {
  font-weight: 900;
  color: rgba(31, 42, 58, 0.55);
}

.package-card {
  height: 100%;
}

.package-card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-features {
  flex: 1;
}

.package-cta {
  margin-top: auto;
}

.hero {
  padding: 1.5rem 0 1rem;
}

body.is-home .hero {
  padding: 0;
  color: #fff;
  background:
    radial-gradient(1100px 520px at 25% 20%, rgba(6, 182, 212, 0.55), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(225, 29, 72, 0.55), transparent 55%),
    radial-gradient(1000px 600px at 50% 80%, rgba(14, 116, 144, 0.55), transparent 60%),
    linear-gradient(135deg, #3b0764 0%, #1e3a8a 35%, #7c3aed 70%, #db2777 100%);
  position: relative;
  overflow: hidden;
}

body.is-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(280px 220px at 15% 30%, rgba(255, 255, 255, 0.14), transparent 62%),
    radial-gradient(340px 260px at 85% 35%, rgba(255, 255, 255, 0.10), transparent 64%),
    radial-gradient(420px 320px at 70% 75%, rgba(6, 182, 212, 0.18), transparent 66%);
  opacity: 0.9;
  pointer-events: none;
}

body.is-home .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: #ffffff;
  clip-path: polygon(
    0% 40%,
    10% 55%,
    20% 45%,
    30% 65%,
    40% 50%,
    50% 70%,
    60% 52%,
    70% 68%,
    80% 48%,
    90% 60%,
    100% 45%,
    100% 100%,
    0% 100%
  );
  opacity: 0.95;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  padding: 4rem 0 4.5rem;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  align-items: center;
  justify-items: start;
  text-align: left;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 20px;
  width: 360px;
  height: 360px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(225, 29, 72, 0.16), transparent 58%),
    radial-gradient(circle at 45% 75%, rgba(6, 182, 212, 0.16), transparent 60%);
  filter: blur(0px);
  opacity: 0.95;
  pointer-events: none;
}

.hero-head {
  max-width: 920px;
}

.hero-left {
  width: 100%;
}

.hero-visual {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 0.5rem 0.25rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 10px;
  top: -10px;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08) 45%, transparent 72%);
  transform: rotate(8deg);
  pointer-events: none;
  opacity: 1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 520px;
  height: 300px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    radial-gradient(520px 280px at 70% 30%, rgba(6, 182, 212, 0.18), transparent 60%),
    radial-gradient(520px 320px at 35% 70%, rgba(225, 29, 72, 0.16), transparent 62%),
    radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.65), transparent 65%),
    radial-gradient(2px 2px at 35% 45%, rgba(255, 255, 255, 0.5), transparent 65%),
    radial-gradient(2px 2px at 60% 30%, rgba(255, 255, 255, 0.55), transparent 65%),
    radial-gradient(2px 2px at 80% 55%, rgba(255, 255, 255, 0.45), transparent 65%),
    radial-gradient(2px 2px at 25% 75%, rgba(255, 255, 255, 0.5), transparent 65%);
  opacity: 0.95;
  pointer-events: none;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.hero-visual-img {
  width: min(520px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.28));
  position: relative;
  z-index: 2;
}

body.is-home .hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-title-line {
  display: block;
  opacity: 0.98;
}

.hero-title-highlight {
  display: inline-block;
  padding: 0.14rem 0.7rem 0.18rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  margin: 0.15rem 0;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

body.is-home .hero-sub {
  color: rgba(255, 255, 255, 0.90);
  font-weight: 600;
  margin: 1rem 0 0;
}

body.is-home .hero-search {
  width: min(980px, 100%);
  margin-top: 1.35rem;
  margin-bottom: 0.9rem;
  display: grid;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 0.6rem;
  backdrop-filter: blur(14px);
}

body.is-home .hero-search-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

body.is-home .hero-search-row--q {
  width: 100%;
}

body.is-home .hero-search-row--filters {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
}

body.is-home .hero-input,
body.is-home .hero-select {
  width: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.78rem 1rem;
  font: inherit;
  font-weight: 700;
  color: #0f172a;
}

body.is-home .hero-input {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}

body.is-home .hero-select {
  width: 100%;
  min-width: 0;
  padding-right: 2.1rem;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(15, 23, 42, 0.75) 50%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.75) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 13px) calc(50% - 3px),
    calc(100% - 2.2rem) 50%;
  background-size:
    6px 6px,
    6px 6px,
    1px 1.8rem;
  background-repeat: no-repeat;
}

body.is-home .hero-search .btn {
  flex: 0 0 auto;
  min-width: 96px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-weight: 900;
}

@media (min-width: 980px) {
  body.is-home .hero-search .btn {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}

body.is-home .hero-input:focus,
body.is-home .hero-select:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.22);
}

body.is-home .hero-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0;
}

body.is-home .hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.18);
}

body.is-home .hero-chip:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

@media (max-width: 980px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-visual {
    justify-content: center;
  }

  body.is-home .hero-chips {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  body.is-home .hero-search {
    justify-content: stretch;
  }

  body.is-home .hero-input,
  body.is-home .hero-select {
    border-radius: 14px;
    width: 100%;
    min-width: 0;
  }

  body.is-home .hero-search .btn {
    width: 100%;
  }
}

.hero-card {
  background: #fff;
  border: 1px solid rgba(31, 42, 58, 0.10);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-sub {
  margin: 0.55rem 0 0;
  color: var(--lm-slate-700);
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.65rem;
  background: rgba(6, 182, 212, 0.10);
  border: 1px solid rgba(6, 182, 212, 0.26);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--lm-blue-800);
}

.section {
  padding: 1.5rem 0 3.25rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-title {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.section-note {
  margin: 0;
  color: var(--lm-slate-700);
  font-weight: 600;
  font-size: 0.95rem;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 980px) {
  .layout {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
}

.sidebar {
  background: #ffffff;
  border: 1px solid rgba(31, 42, 58, 0.10);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.sidebar h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.filter-group {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.filter-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

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

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

.card {
  background: var(--lm-card);
  border: 1px solid rgba(31, 42, 58, 0.10);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(31, 42, 58, 0.14);
  border-color: rgba(14, 165, 198, 0.28);
}

.card-media {
  height: 170px;
  background: linear-gradient(135deg, rgba(14, 165, 198, 0.32), rgba(196, 56, 74, 0.26));
}

.card--lomba {
  border-color: rgba(6, 182, 212, 0.22);
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.06), rgba(255, 255, 255, 0) 55%), var(--lm-card);
}

.card--lomba:hover {
  border-color: rgba(6, 182, 212, 0.42);
}

.card--lomba .card-media {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.28), rgba(124, 58, 237, 0.22));
}

.card--event {
  border-color: rgba(124, 58, 237, 0.22);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.06), rgba(255, 255, 255, 0) 55%), var(--lm-card);
}

.card--event:hover {
  border-color: rgba(124, 58, 237, 0.42);
}

.card--event .card-media {
  height: 150px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.26), rgba(225, 29, 72, 0.20));
}

.card--event .badge-blue {
  border-color: rgba(124, 58, 237, 0.32);
  color: #4c1d95;
  background: rgba(124, 58, 237, 0.12);
}

.card--volunteer {
  border-color: rgba(16, 185, 129, 0.22);
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06), rgba(255, 255, 255, 0) 55%), var(--lm-card);
}

.card--volunteer:hover {
  border-color: rgba(16, 185, 129, 0.42);
}

.card--volunteer .card-media {
  height: 185px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(6, 182, 212, 0.18));
}

.card--volunteer .badge-red {
  border-color: rgba(16, 185, 129, 0.30);
  color: #065f46;
  background: rgba(16, 185, 129, 0.12);
}

.card--beasiswa {
  border-color: rgba(245, 158, 11, 0.22);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.07), rgba(255, 255, 255, 0) 55%), var(--lm-card);
}

.card--beasiswa:hover {
  border-color: rgba(245, 158, 11, 0.42);
}

.card--beasiswa .card-media {
  height: 160px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.20), rgba(225, 29, 72, 0.16));
}

.card--beasiswa .badge-blue {
  border-color: rgba(245, 158, 11, 0.30);
  color: #92400e;
  background: rgba(245, 158, 11, 0.14);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1rem 1.1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.badge-deadline {
  border-color: rgba(31, 42, 58, 0.14);
  color: rgba(31, 42, 58, 0.82);
}

.badge-hot {
  border-color: rgba(225, 29, 72, 0.26);
  color: var(--lm-red-700);
  background: rgba(225, 29, 72, 0.10);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 42, 58, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.badge-blue {
  border-color: rgba(6, 182, 212, 0.30);
  color: var(--lm-blue-800);
  background: rgba(6, 182, 212, 0.10);
}

.badge-red {
  border-color: rgba(225, 29, 72, 0.26);
  color: var(--lm-red-700);
  background: rgba(225, 29, 72, 0.08);
}

.card-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.meta {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
  color: rgba(31, 42, 58, 0.86);
  font-weight: 600;
  font-size: 0.92rem;
}

.meta strong {
  color: var(--lm-slate-900);
}

.card-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

@media (min-width: 720px) {
  .section--volunteer .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section--beasiswa .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section--berita .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1060px) {
  /* Event now uses standard grid layout like other sections */
}

.section--volunteer .card--volunteer {
  position: relative;
}

.section--volunteer .card--volunteer .card-media {
  height: 210px;
  position: relative;
}

.section--volunteer .card--volunteer .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.06) 0%, rgba(2, 6, 23, 0.55) 100%);
  pointer-events: none;
}

.section--volunteer .card--volunteer .badges {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  margin: 0;
  z-index: 2;
}

.section--volunteer .card--volunteer .card-body {
  padding-top: 0.9rem;
}

.section--volunteer .card--volunteer .card-title {
  font-size: 1.02rem;
}

.section--volunteer .card--volunteer .meta {
  gap: 0.35rem;
  font-size: 0.9rem;
}

.section--beasiswa .card--beasiswa .card-media {
  height: 160px;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}

.section--beasiswa .card--beasiswa {
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: rgba(245, 158, 11, 0.45);
}

.section--beasiswa .card--beasiswa .meta {
  font-size: 0.9rem;
}

.section--beasiswa .card--beasiswa .meta li:nth-child(3),
.section--beasiswa .card--beasiswa .meta li:nth-child(4) {
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 14px;
  padding: 0.45rem 0.6rem;
}

.page {
  padding: 2rem 0 3rem;
}

.page-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 42, 58, 0.10);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.page-card h1 {
  margin-top: 0;
  letter-spacing: -0.03em;
}

.kv {
  display: grid;
  gap: 0.55rem;
}

.kv-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(31, 42, 58, 0.08);
  padding-top: 0.65rem;
}

.kv-row:first-child {
  border-top: none;
  padding-top: 0;
}

.kv-key {
  color: var(--lm-slate-700);
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(31, 42, 58, 0.10);
  background: #ffffff;
  padding: 2rem 0 1.25rem;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 840px) {
  .footer-inner {
    grid-template-columns: 1.4fr 0.6fr;
    align-items: start;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.footer-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-desc {
  margin: 0;
  color: var(--lm-slate-700);
  font-weight: 600;
  max-width: 70ch;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.footer-links a {
  font-weight: 800;
  color: rgba(31, 42, 58, 0.86);
}

.footer-links a:hover {
  color: var(--lm-blue-800);
}

.footer-bottom {
  padding-top: 1.1rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(31, 42, 58, 0.08);
  color: rgba(31, 42, 58, 0.70);
  font-weight: 700;
  font-size: 0.9rem;
}
