:root {
  --gold: #c9a34e;
  --gold-dark: #a7853f;
  --bg-dark: #111214;
  --bg-darker: #050608;
  --gray-light: #e5e5e5;
  --gray-card: #1d1f23;
  --white: #ffffff;
  --accent: #000000;
}

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

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

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

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
/**/
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title.align-left {
  text-align: left;
}

.section-subtitle {
  text-align: center;
  color: #cfd1d4;
  max-width: 720px;
  margin: 0 auto 32px auto;
  font-size: 15px;
}

.section-subtitle.align-left {
  text-align: left;
  margin-left: 0;
}

.section-kicker {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-outline {
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bg-dark);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

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

.btn-dark:hover {
  background: #222328;
}

/* TOP NAV */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 6, 8, 0.9);
  border-bottom: 1px solid #1f2128;
  backdrop-filter: blur(10px);
}

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

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

.logo-placeholder {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px dashed #30323a;
  background: linear-gradient(135deg, rgba(201, 163, 78, 0.16), rgba(255, 255, 255, 0.04));
}

.brand-text {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  color: #d6d8dc;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 4px;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 6px 10px;
  color: #d6d8dc;
  font-weight: 600;
  font-size: 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #9ea2a8;
  margin-top: 2px;
  transition: border-top-color 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  border-top-color: var(--white);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #0c0d10;
  border: 1px solid #1f2128;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 14px;
  color: #d6d8dc;
  font-weight: 600;
  font-size: 14px;
  background: transparent;
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
  padding: 10px 16px;
  font-size: 13px;
}

/* HERO */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: var(--bg-darker);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  width: 100%;
}

.hero-left {
  position: relative;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.85)
    ),
    url("https://images.pexels.com/photos/8297033/pexels-photo-8297033.jpeg?auto=compress&cs=tinysrgb&w=1200")
      center/cover no-repeat;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-pro .hero-left {
  background: linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.76)
    ),
    url("https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=1200")
      center/cover no-repeat;
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 16px;
  color: #d3d5d8;
  max-width: 480px;
  margin-bottom: 24px;
}

.hero-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-right {
  background: radial-gradient(circle at top left, #d9c28a, #8a6b2d);
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(0, 0, 0, 0.78);
  padding: 28px 26px 26px;
  border-radius: 6px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: left;
}

.hero-card-subtitle {
  font-size: 13px;
  color: #e0e2e6;
  margin-bottom: 16px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  color: #cfd1d4;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border-radius: 3px;
  border: 1px solid #343841;
  background: #101114;
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.form-control::placeholder {
  color: #72757e;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 163, 78, 0.6);
}

/* SECTIONS */

.section-light {
  background: linear-gradient(to bottom, #181a1f, #101217);
}

.section-dark {
    background: linear-gradient(to bottom, #101217, #181a1f);
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.service-section.flip {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.service-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-visual img {
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.bullet-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.bullet-list li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  border-radius: 4px;
  color: #d5d7dc;
}

.bullet-list.compact li {
  padding: 10px 12px;
}

/* Legal pages: keep lists minimal, no box styling */
.legal-page .bullet-list li {
  background: transparent;
  border: none;
  border-left: none;
  padding: 6px 0;
}

.bullet-list.two-column {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.list-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.list-title {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 6px;
}

/* FOOTER CTA */

.footer-cta {
  background: #050608;
  padding: 40px 0;
  border-top: 1px solid #1f2128;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cta-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-cta-text {
  font-size: 14px;
  color: #cfd1d4;
  max-width: 520px;
}

.footer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* LEGAL FOOTER */
.legal-footer {
  background: #050608;
  border-top: 1px solid #1f2128;
  padding: 32px 0;
}

.legal-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.legal-footer .footer-cta-text {
  max-width: none;
  line-height: 1.7;
}

.legal-return {
  margin-bottom: 16px;
}

/* SITE FOOTER */
.site-footer {
  background: #050608;
  border-top: 1px solid #1f2128;
  padding: 22px 0;
  color: #cfd1d4;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  color: var(--white);
}

.footer-address {
  font-size: 13px;
}

.site-footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer-links a {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

/* RESPONSIVE */

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

  .hero-left,
  .hero-right {
    padding: 40px 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-right {
    order: -1;
  }
}

@media (max-width: 960px) {
  .topbar-inner {
    padding: 12px 0;
  }

  .nav-links {
    justify-content: flex-end;
  }

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

  .service-section.flip .service-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 44px 0;
  }

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

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

  .nav-links {
    gap: 8px;
  }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
