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

:root {
  --bg: #F7F7F7;
  --card: #FFFFFF;
  --primary: #C89968;
  --primary-light: #DFB586;
  --primary-mid: #D4A574;
  --blue-soft: #ECF3FF;
  --blue-lighter: #F5F9FF;
  --accent-red: #A72608;
  --accent-green: #A4CF87;
  --text: #2C2C2C;
  --text-muted: #7A7A7A;
  --border: #EDEDED;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #DFB586, #C89968);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #ECF3FF 0%, #F5F9FF 40%, #FFF8F2 100%);
  padding: 80px 2rem 70px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #DFB586, #C89968);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text);
}

.hero h1 span {
  background: linear-gradient(135deg, #DFB586, #C89968);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 32px;
}

.hero-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, #DFB586, #C89968);
  color: white;
  box-shadow: 0 4px 14px rgba(200, 153, 104, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(200, 153, 104, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--card);
  color: var(--primary);
  border: 1.5px solid var(--primary-light);
}

.btn-outline:hover {
  background: #FFF8F2;
}

/* MAIN CONTENT */
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 3rem 5rem;
}

/* CARDS GRID (index) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 2.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 8px 30px rgba(200, 153, 104, 0.12);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.icon-gold {
  background: linear-gradient(135deg, #DFB586, #C89968);
}

.icon-blue {
  background: linear-gradient(135deg, #ECF3FF, #D0E4FF);
}

.icon-green {
  background: rgba(164, 207, 135, 0.25);
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.card-link:hover {
  color: var(--primary-mid);
}

/* LEGAL PAGES */
.page-header {
  background: linear-gradient(135deg, #ECF3FF 0%, #F5F9FF 50%, #FFF8F2 100%);
  padding: 60px 2rem 50px;
  text-align: center;
}

.page-header .badge {
  display: inline-block;
  background: rgba(200, 153, 104, 0.12);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header .updated {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* LEGAL CONTENT */
.legal-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  margin-top: 2.5rem;
}

.legal-content section {
  margin-bottom: 36px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #DFB586, #C89968);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.legal-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
}

.legal-content ul li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 6px 0 6px 20px;
  position: relative;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
}

.highlight-box {
  background: linear-gradient(135deg, #ECF3FF, #F5F9FF);
  border: 1px solid #D0E4FF;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 12px;
}

.highlight-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #4A6FA5;
}

.contact-box {
  background: linear-gradient(135deg, #FFF8F2, #FDF4ED);
  border: 1.5px solid var(--primary-light);
  border-radius: 14px;
  padding: 22px 24px;
  margin-top: 12px;
}

.contact-box p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-box a {
  color: var(--primary);
  font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 32px 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #DFB586, #C89968);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2.5rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}

.contact-card h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-card .sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFF8F2, #FDF4ED);
  border: 1.5px solid var(--primary-light);
  border-radius: 14px;
  padding: 18px 24px;
  text-decoration: none;
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.2s;
  width: 100%;
}

.contact-email-link:hover {
  box-shadow: 0 4px 16px rgba(200, 153, 104, 0.25);
  transform: translateY(-1px);
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.2s;
}

.social-item:hover {
  border-color: var(--primary-light);
  color: var(--text);
  background: #FFF8F2;
}

.social-item.placeholder {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.si-tg  { background: #EEF6FF; }
.si-ig  { background: linear-gradient(135deg, #fdf0e8, #fce4f0); }
.si-tt  { background: #F0F0F0; }
.si-yt  { background: #FFF0F0; }

.social-name { font-weight: 500; }
.social-handle { font-size: 0.82rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .legal-content { padding: 28px 20px; }
  .nav-links { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  main { padding: 2rem 1.5rem 4rem; }
}
