* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0f172a;
  --navy-light: #1e293b;
  --navy-mid: #334155;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img { height: 42px; transition: var(--transition); }
.header.scrolled .header-logo img { height: 36px; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  padding: 8px 16px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.header-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.header-nav a.active {
  color: var(--gold);
  background: rgba(245,158,11,0.1);
}
.header-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.header-toggle:hover { background: rgba(255,255,255,0.08); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 8s ease;
}
.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.6) 50%, rgba(15,23,42,0.3) 100%);
}
.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 100px 0 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(245,158,11,0.05));
  border: 1px solid rgba(245,158,11,0.4);
  color: var(--gold-light);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(245,158,11,0.1);
}
.hero-badge i { color: var(--gold); font-size: 12px; }
.hero-content h1 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content h1 span {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,158,11,0.3);
  display: inline-block;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-nav { position: absolute; bottom: 120px; right: 40px; z-index: 3; display: flex; gap: 8px; }
.hero-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.hero-nav button:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hero-dots {
  position: absolute;
  bottom: 120px;
  left: 40px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }
.hero-dot:hover { background: var(--gold-light); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(245,158,11,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,158,11,0.1); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245,158,11,0.1);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-header p {
  color: var(--gray-500);
  font-size: 16px;
  line-height: 1.7;
}
.section-light { background: var(--gray-50); }

/* ===== SERVICES / PRODUCTS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link i { transition: transform 0.3s ease; }
.service-link:hover i { transform: translateX(4px); }

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.news-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.news-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-image img { transform: scale(1.05); }
.news-image .news-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: rgba(245,158,11,0.9);
  color: var(--navy);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.news-body { padding: 24px; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.news-meta i { margin-right: 4px; }
.news-body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}
.news-body h3 a { color: var(--navy); }
.news-body h3 a:hover { color: var(--gold-dark); }
.news-body p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== PARTNERS ===== */
.partner-category { margin-bottom: 48px; }
.partner-category h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.partner-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 28px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.partner-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.partner-item img { max-height: 40px; max-width: 140px; object-fit: contain; filter: grayscale(0.3); opacity: 0.7; transition: var(--transition); }
.partner-item:hover img { filter: grayscale(0); opacity: 1; }

/* ===== CTA ===== */
.section-cta {
  background: var(--navy);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(245,158,11,0.08) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--navy);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(245,158,11,0.06) 0%, transparent 50%);
}
.page-header h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ===== DETAIL ===== */
.detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.detail-main { min-width: 0; }
.detail-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray-500);
}
.detail-meta i { margin-right: 6px; }
.detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  max-width: 650px;
}
.detail-image-product {
  max-width: 200px;
}
.detail-image img {
  width: 100%;
  height: auto;
  display: block;
}
.detail-content { font-size: 16px; line-height: 1.9; color: var(--gray-600); }
.detail-content h2 { color: var(--navy); font-size: 24px; margin: 40px 0 16px; font-weight: 700; }
.detail-content p { margin-bottom: 16px; }
.product-description {
  white-space: pre-line;
}
.product-description p { margin-bottom: 8px; }

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.sidebar-widget h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-news { list-style: none; }
.sidebar-news li { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.sidebar-news li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.sidebar-news a { display: flex; gap: 12px; }
.sidebar-news img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.sidebar-news h4 { font-size: 13px; color: var(--navy); font-weight: 600; margin-bottom: 4px; line-height: 1.4; }
.sidebar-news span { font-size: 11px; color: var(--gray-400); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.gallery-overlay p { font-size: 12px; opacity: 0.8; }

/* ===== ABOUT ===== */

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: start;
  gap: 16px;
  transition: var(--transition);
}
.info-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.info-card i { font-size: 22px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.info-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.info-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .contact-info { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}



/* ===== FORM ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 13px; color: var(--navy); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 48px; color: var(--gray-300); margin-bottom: 16px; }
.empty-state p { color: var(--gray-400); font-size: 15px; }

/* ===== ALERT ===== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== PAGINATION ===== */
.pagination-wrapper { text-align: center; margin-top: 48px; }
.pagination { display: flex; justify-content: center; gap: 4px; }
.pagination a, .pagination strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.pagination strong { background: var(--navy); color: var(--white); }
.pagination a:hover { background: var(--gold); color: var(--navy); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 56px;
  margin-bottom: 16px;
  filter: brightness(1.2);
}
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-desc { margin-top: 12px; opacity: 0.7; font-size: 13px; }
.footer-links h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-item i { color: var(--gold); margin-top: 3px; width: 16px; }
.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--navy);
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
}
.page-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.9;
  color: var(--gray-600);
}
.page-content h2 { font-size: 24px; color: var(--navy); margin: 32px 0 16px; }
.page-content h3 { font-size: 20px; color: var(--navy); margin: 28px 0 12px; }
.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol { margin-bottom: 16px; padding-left: 24px; }
.page-content li { margin-bottom: 8px; }
.page-content img { border-radius: var(--radius); margin: 24px 0; max-width: 100%; height: auto; }
.page-content a { color: var(--gold-dark); text-decoration: underline; }
.page-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-600);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1024px) {
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,23,42,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 999;
  }
  .header-nav.open { display: flex; }
  .header-nav a {
    font-size: 20px;
    padding: 16px 32px;
    color: rgba(255,255,255,0.6);
  }
  .header-nav a:hover, .header-nav a.active { color: var(--gold); background: transparent; }
  .header-toggle { display: block; z-index: 1000; position: relative; }
  .header-toggle.open { position: fixed; top: 20px; right: 24px; }
  .detail-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .hero-content { padding: 80px 0 50px; }
  .hero-nav, .hero-dots { display: none; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}
.about-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.about-card-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.about-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.visi-box, .misi-box {
  margin-bottom: 10px;
}
.visi-box strong, .misi-box strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.about-card .service-link { margin-top: 12px; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
}

.about-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.about-sidebar {
  flex: 0 0 250px;
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 0;
  overflow: hidden;
}
.about-sidebar .sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  padding: 0 20px 16px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-menu li {
  margin: 0;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-link:hover {
  background: #f8f4ed;
  color: var(--navy);
  border-left-color: var(--gold);
}
.sidebar-link i {
  width: 18px;
  color: var(--gold);
  font-size: 14px;
  text-align: center;
}
.about-content {
  flex: 1;
  min-width: 0;
}
.about-content h2 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.about-content h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-content ul { margin: 12px 0 24px 20px; }
.about-content ul li { margin-bottom: 8px; color: var(--gray-600); }

@media (max-width: 768px) {
  .about-layout { flex-direction: column; }
  .about-sidebar { flex: none; width: 100%; position: static; }
  .about-sidebar .sidebar-title { font-size: 15px; }
  .sidebar-link { padding: 10px 16px; font-size: 13px; }
}

.promo-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy), #0c2340);
  color: var(--white);
  text-align: center;
}
.promo-content {
  max-width: 720px;
  margin: 0 auto;
}
.promo-text h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.promo-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.6;
}
.promo-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.promo-buttons .btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.promo-buttons .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.home-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.home-product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.home-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.home-product-card a {
  display: block;
  padding: 30px;
  text-decoration: none;
  color: inherit;
}
.home-product-card img {
  width: 100%;
  max-width: 280px;
  height: 160px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}
.home-product-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.home-product-card p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.7;
}

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.keunggulan-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.keunggulan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.keunggulan-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.keunggulan-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.keunggulan-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

.anti-fraud {
  max-width: 800px;
  margin: 0 auto;
}
.anti-fraud h2 {
  font-size: 28px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}
.anti-fraud p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}
.anti-fraud ul {
  margin: 0 0 16px 20px;
  padding: 0;
}
.anti-fraud ul li {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.anti-fraud-footer {
  text-align: right;
  font-weight: 700;
  color: var(--navy);
  margin-top: 24px;
  font-size: 14px;
}

.rates-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.lps-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--gray-100);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.lps-badge i {
  font-size: 32px;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.lps-badge p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}
.rates-period {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
}
.rates-more a {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}
.rates-more a:hover { color: var(--gold); }
.rates-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.rates-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  font-size: 14px;
  text-align: left;
}
.rates-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
.rates-table td small { font-size: 12px; color: var(--gray-400); }
.ojk-lps-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  align-items: center;
}
.ojk-lps-logos img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition);
}
.ojk-lps-logos img:hover { opacity: 1; }

@media (max-width: 768px) {
  .promo-text h2 { font-size: 24px; }
  .home-products { grid-template-columns: 1fr; }
  .keunggulan-grid { grid-template-columns: 1fr 1fr; }
  .rates-section { grid-template-columns: 1fr; }
  .ojk-lps-logos { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  .keunggulan-grid { grid-template-columns: 1fr; }
}

.management-container { max-width: 900px; }
.mp-title {
  color: var(--navy);
  margin: 40px 0 25px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--gold);
  font-size: 22px;
  font-weight: 700;
}
.mp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.mp-card {
  width: 200px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
}
.mp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mp-card img { width: 100%; height: auto; display: block; }
.mp-card .body { padding: 15px; padding-top: 12px; }
.mp-card .body h4 { color: var(--navy); margin: 0 0 5px; font-size: 15px; font-weight: 700; }
.mp-card .body p { color: var(--gold-dark); font-weight: 600; margin: 0; font-size: 12px; }
.mp-sm { width: 175px; }
.mp-sm .body { padding: 10px; }
.mp-sm .body h4 { font-size: 13px; }
.mp-sm .body p { font-size: 10px; line-height: 1.3; }

.report-section { margin-bottom: 60px; }
.report-section:last-child { margin-bottom: 0; }
.report-divider { border: none; border-top: 2px solid var(--gray-200); margin: 50px 0; }
.report-table-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.report-table { width: 100%; border-collapse: collapse; }
.report-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}
.report-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.report-table tr:last-child td { border-bottom: none; }
.report-table tr:hover td { background: #f8f4ed; }
.report-year {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gray-100);
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}
.btn-download {
  padding: 8px 16px;
  font-size: 12px;
}
.report-na {
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(245,158,11,0.2); }
  50% { box-shadow: 0 0 40px rgba(245,158,11,0.4); }
}
.hero-content h1, .hero-content p, .hero-badge, .hero-buttons {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.hero-content p { animation-delay: 0.2s; }
.hero-buttons { animation-delay: 0.4s; }
.hero-content .btn-primary {
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
  animation: pulse 2s ease-in-out infinite;
}
.hero-content .btn-outline {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
}
.hero-content .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
