
:root {
  --primary-bg: #050915;
  --primary-dark: #101F48;
  --primary-soft: #162846;
  --accent: #f3cd58;
  --accent-soft: #f8df8e;
  --text-main: #f5f7ff;
  --text-muted: #9ba4c0;
  --border-soft: rgba(243, 205, 88, 0.25);
  --error: #c0392b;
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.65);
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background: radial-gradient(circle at top, #111d35 0, var(--primary-bg) 55%);
  color: var(--text-main);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.page-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Topbar */

.topbar {
  background: #020712;
  border-bottom: 1px solid rgba(243, 205, 88, 0.1);
  color: #dfe7ff;
  font-size: 12px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.topbar a {
  color: var(--accent-soft);
}

.topbar a:hover {
  text-decoration: underline;
}

/* Header / nav */

header {
  background: linear-gradient(135deg, rgba(5, 9, 21, 0.3), rgba(12, 25, 52, 0.9));
  border-bottom: 1px solid rgba(243, 205, 88, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f9e7aa, var(--accent) 45%, #ad8627 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1c2f;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 0 12px rgba(243, 205, 88, 0.6);
}

.logo-text-main {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 15px;
}

.logo-text-sub {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

.nav-links a {
  color: #dde6ff;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(243, 205, 88, 0.7);
  color: #111216;
  background: linear-gradient(135deg, #f7dd80, var(--accent));
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.nav-cta:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.nav-lang {
  border-radius: 999px;
  border: 1px solid rgba(243, 205, 88, 0.4);
  padding: 4px 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.nav-lang span {
  opacity: 0.6;
}

.nav-lang span.active {
  color: var(--accent);
  opacity: 1;
}

.nav-lang span + span::before {
  content: " / ";
  opacity: 0.5;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  margin: 4px 0;
}

/* Hero */

.hero {
  padding: 52px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 10px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.25;
  margin: 0 0 12px;
}

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

.hero-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.badge {
  border-radius: 999px;
  border: 1px solid rgba(243, 205, 88, 0.4);
  padding: 4px 10px;
  font-size: 11px;
  color: var(--accent-soft);
  background: rgba(9, 18, 40, 0.8);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.btn-primary {
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #f7dd80, var(--accent));
  color: #111216;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(243, 205, 88, 0.4);
  background: transparent;
  color: var(--accent-soft);
  padding: 10px 18px;
  font-size: 13px;
  cursor: pointer;
}

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Sections */

main {
  flex: 1;
}

section {
  padding: 38px 0;
}

.section-header {
  margin-bottom: 22px;
}

.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.section-title {
  font-size: 22px;
  margin: 0 0 6px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 640px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}

.card {
  background: rgba(6, 11, 28, 0.92);
  border-radius: 16px;
  border: 1px solid rgba(243, 205, 88, 0.12);
  padding: 16px 16px 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}

.card h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  margin-bottom: 6px;
}

.card-number {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.list-bullets {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  padding-left: 18px;
}

.list-bullets li + li {
  margin-top: 3px;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
}

.contact-card {
  background: radial-gradient(circle at top left, rgba(243, 205, 88, 0.25), transparent 55%), #060b18;
  border-radius: 18px;
  border: 1px solid rgba(243, 205, 88, 0.2);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-soft);
}

.contact-info-item {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-info-item strong {
  color: var(--text-main);
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}

input, textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(243, 205, 88, 0.25);
  background: rgba(5, 9, 21, 0.95);
  color: var(--text-main);
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(243, 205, 88, 0.4);
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.form-footnote {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.error-message {
  display: none;
  font-size: 11px;
  color: var(--error);
  margin-top: 3px;
}

/* Footer */

footer {
  border-top: 1px solid rgba(243, 205, 88, 0.12);
  background: #040814;
  padding: 14px 0;
  margin-top: 22px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 52px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    padding: 12px;
    border-radius: 14px;
    background: #050b1b;
    border: 1px solid rgba(243, 205, 88, 0.25);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 36px;
  }

  .hero-title {
    font-size: 26px;
  }

  .grid-3 {
    grid-template-columns: minmax(0,1fr);
  }

  .form-row {
    grid-template-columns: minmax(0,1fr);
  }
}
