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

:root {
  --primary: #0c1426;
  --primary-light: #162240;
  --primary-mid: #1e2d50;
  --accent: #b8942e;
  --accent-light: #d4ad4a;
  --accent-subtle: rgba(184, 148, 46, 0.08);
  --accent-glow: rgba(184, 148, 46, 0.12);
  --text: #1a1f2b;
  --text-light: #5a6577;
  --text-muted: #8e99ab;
  --bg: #fafafb;
  --bg-alt: #f0f1f4;
  --bg-card: #ffffff;
  --border: #e2e5ea;
  --footer-bg: #080e1a;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --max-width: 1120px;
  --header-height: 76px;
  --radius: 12px;
  --radius-sm: 6px;
  --radius-xl: 16px;
  --shadow: 0 2px 20px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.10);
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

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

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

@media (min-width: 1200px) {
  .container {
    padding: 0 32px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184, 148, 46, 0.30);
  color: var(--primary);
}

.btn-primary i {
  font-size: 13px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(184, 148, 46, 0.08);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: #fff;
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(12, 20, 38, 0.25);
  color: #fff;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2.5px;
  background: var(--accent);
  margin-top: 18px;
  border-radius: 2px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 56px;
  max-width: 600px;
  line-height: 1.75;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(12, 20, 38, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--accent);
  background: var(--accent-subtle);
}

.nav a.active {
  color: var(--accent);
  background: var(--accent-subtle);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.88) 0%, rgba(12, 20, 38, 0.60) 50%, rgba(12, 20, 38, 0.78) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), radial-gradient(ellipse at 30% 50%, rgba(184, 148, 46, 0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero .container {
  width: 100%;
  text-align: center;
  padding-top: 60px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 58px;
  line-height: 1.12;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -0.8px;
}

.hero h1 span {
  color: var(--accent);
}

.hero .hero-tagline {
  font-size: 19px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.75;
  font-weight: 400;
}

.hero .hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 22px;
  background: rgba(184, 148, 46, 0.10);
  border: 1px solid rgba(184, 148, 46, 0.18);
  border-radius: 50px;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.2);
  font-size: 18px;
  animation: bounce 2.4s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

.page-banner {
  position: relative;
  padding: 148px 0 84px;
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.88) 0%, rgba(12, 20, 38, 0.65) 100%);
  z-index: 1;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 2;
}

.page-banner > * {
  position: relative;
  z-index: 3;
}

.page-banner h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.page-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.grid-4-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: transparent;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-subtle);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  color: var(--accent);
  transition: all var(--transition);
}

.card:hover .card-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08) rotate(-2deg);
}

.card h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.75;
}

.section-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 20, 38, 0.82) 0%, rgba(12, 20, 38, 0.65) 100%);
  z-index: 1;
}

.section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.section-bg > .container {
  position: relative;
  z-index: 2;
}

.section-bg .section-title {
  color: #fff;
}

.section-bg .section-title::after {
  background: var(--accent);
}

.section-bg .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.section-bg .card {
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,0.15);
}

.section-bg .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.section-bg .btn-outline:hover {
  border-color: var(--accent);
  background: rgba(184, 148, 46, 0.1);
  color: var(--accent);
}

.step-item {
  text-align: center;
  padding: 32px 16px;
}

.step-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-serif);
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -1px;
}

.step-item h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
}

.step-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.section-bg .step-item p {
  color: rgba(255,255,255,0.55);
}

.section-bg .step-item h4 {
  color: #fff;
}

.management-profile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 52px;
  display: flex;
  gap: 44px;
  align-items: flex-start;
  box-shadow: var(--shadow);
}

.management-avatar {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(12, 20, 38, 0.18);
}

.management-info h3 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 4px;
}

.management-info .role {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.management-info p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-details {
  display: grid;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item .icon-wrap {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--accent-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
}

.contact-item h4 {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 2px;
  font-weight: 600;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a {
  color: var(--text-light);
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(184, 148, 46, 0.08);
}

.form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
}

.contact-map {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 40px;
}

.legal-content h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 2.5px;
  background: var(--accent);
  margin-top: 18px;
  border-radius: 2px;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary);
  margin: 40px 0 12px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.85;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.85;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--text);
}

.facts-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
}

.facts-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 24px;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.facts-grid .fact-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
  font-weight: 500;
}

.facts-grid .fact-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.facts-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.facts-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.facts-row .fact-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.facts-row .fact-value {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.4);
  padding: 64px 0 32px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer h4 {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 22px;
  font-family: var(--font-serif);
  letter-spacing: 0.5px;
}

.footer p {
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.footer a {
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-org {
  color: var(--accent);
  opacity: 0.35;
  font-size: 11px;
  letter-spacing: 0.8px;
}

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

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-4-steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .management-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 769px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(12, 20, 38, 0.98);
    padding: 16px;
    gap: 2px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 20px;
    font-size: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero .hero-tagline {
    font-size: 16px;
  }

  .page-banner {
    padding: 120px 0 60px;
  }

  .page-banner h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .management-profile {
    padding: 32px;
  }

  .legal-content h1 {
    font-size: 28px;
  }

  .section-bg {
    background-attachment: scroll;
    text-align: left;
  }

  .section-bg .grid-2 > div {
    text-align: left;
  }

  .section-bg .facts-card {
    margin: 0;
    padding: 24px;
  }

  .section-bg .facts-grid {
    gap: 16px;
  }

  .section-bg .section-title::after {
    margin-left: 0;
    margin-right: 0;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
