/* ===== RESET & VARIABLES ===== */
:root {
  --dark: #0d0e11;
  --dark-2: #14171d;
  --dark-3: #1c212b;
  --dark-glass: rgba(13, 14, 17, 0.85);
  --gold: #d4af37;
  --gold-light: #f3cf65;
  --gold-dark: #aa8210;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --white: #ffffff;
  --grey: #a0a6b2;
  --grey-light: #e2e8f0;
  --border: rgba(255, 255, 255, 0.08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

.section {
  padding: 110px 0;
  position: relative;
}

.overline {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--white);
}

h2 {
  font-size: 2.75rem;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

h2 span, h1 span {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 65px;
}

.section-sub {
  color: var(--grey);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000000;
  font-weight: 600;
  box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffe285, var(--gold-light));
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  color: #000000;
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 42px;
  font-size: 1rem;
}

.text-link {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.text-link i {
  transition: transform 0.3s ease;
}

.text-link:hover {
  color: var(--gold-light);
}

.text-link:hover i {
  transform: translateX(4px);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: 2px;
  animation: pulse 1.4s ease infinite;
}

.preloader-logo span {
  color: var(--gold);
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--dark-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

.logo span {
  color: var(--gold);
}

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

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 400;
  color: #d1d5db;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--gold);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-cta,
.nav-links a.nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
  color: #000000;
}

.nav-cta:hover,
.nav-links a.nav-cta:hover {
  color: #000000;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hamburger:hover {
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 14, 17, 0.92) 0%, rgba(13, 14, 17, 0.78) 50%, rgba(13, 14, 17, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero h1 {
  font-size: 4.2rem;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-sub {
  color: var(--grey);
  max-width: 600px;
  margin-bottom: 38px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.25rem;
  z-index: 2;
  animation: bounce 2.2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

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

/* ===== STATS ===== */
.stats {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 55px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}

.stat {
  padding: 10px;
}

.stat h3 {
  font-size: 3rem;
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 700;
  margin-bottom: 6px;
}

.stat p {
  color: var(--grey);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.7;
}

.about-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-text p {
  color: var(--grey);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-list {
  list-style: none;
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  color: #e5e7eb;
}

.about-list i {
  color: var(--gold);
  background: var(--dark-3);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-right: 14px;
  border: 1px solid var(--border);
}

/* ===== SERVICES ===== */
.services {
  background: var(--dark-2);
}

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

.service-card {
  background: var(--dark-3);
  padding: 44px 34px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4);
}

.service-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.65;
}

/* ===== INDUSTRIES ===== */
.industries {
  background: var(--dark);
}

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

.industry-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 48px 24px;
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--gold);
  background: var(--dark-3);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.industry-card i {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 18px;
  transition: var(--transition);
}

.industry-card:hover i {
  transform: scale(1.1);
}

.industry-card h3 {
  font-size: 1.15rem;
}

/* ===== PROCESS ===== */
.process {
  background: var(--dark-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  position: relative;
  background: var(--dark-3);
  padding: 36px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--grey);
  font-size: 0.92rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--dark);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
  position: relative;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial {
  min-width: 100%;
  padding: 20px 30px;
}

.stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 4px;
  margin-bottom: 22px;
}

.testimonial p {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.6;
  color: #f3f4f6;
}

.testimonial h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
}

.testimonial span {
  color: var(--grey);
  font-size: 0.88rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.slider-controls button {
  background: var(--dark-2);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-controls button:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.08);
}

.dots {
  display: flex;
  gap: 10px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #374151;
  cursor: pointer;
  transition: var(--transition);
}

.dots span.active {
  background: var(--gold);
  transform: scale(1.25);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #aa8210 0%, #d4af37 50%, #f3cf65 100%);
  text-align: center;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 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='%23000000' fill-opacity='0.04' fill-rule='evenodd'%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/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2, .cta-banner p {
  color: var(--dark);
}

.cta-banner h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.cta-banner h2 span {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #ffffff;
}

.cta-banner p {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 1.15rem;
}

.cta-banner .btn-gold {
  background: var(--dark);
  color: var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-banner .btn-gold:hover {
  background: #000;
  color: var(--gold-light);
  transform: translateY(-3px);
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 75px;
  align-items: start;
}

.contact-desc {
  color: var(--grey);
  margin: 18px 0 32px;
  font-size: 1.05rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: #e5e7eb;
}

.contact-item i {
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--dark-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.socials a:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--dark-2);
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 15px 18px;
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-success {
  display: none;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-top: 18px;
  font-weight: 500;
  text-align: center;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== FOOTER ===== */
.footer {
  background: #08090b;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 60px;
}

.footer-grid p {
  color: var(--grey);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-grid h4 {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 20px;
}

.footer-grid a {
  display: block;
  color: var(--grey);
  font-size: 0.92rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-grid a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--grey);
  font-size: 0.85rem;
}

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

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.4rem; }
  .services-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img img { height: 420px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s ease;
    z-index: 1001;
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links .nav-cta {
    display: inline-flex;
    margin-top: 10px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat h3 { font-size: 2.4rem; }
  .form-row { grid-template-columns: 1fr; }
  h2 { font-size: 2.2rem; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }
  .services-grid, .industries-grid, .process-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
}

/* ===== LEGAL & POLICY PAGES ===== */
.legal-hero {
  padding: 160px 0 60px;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.legal-hero .last-updated {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.legal-container {
  max-width: 900px;
  margin: 60px auto 100px;
  padding: 0 24px;
}

.legal-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 30px;
  transition: var(--transition);
}

.legal-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.legal-card h2 {
  font-size: 1.55rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.legal-card h2 i {
  color: var(--gold);
  font-size: 1.25rem;
}

.legal-card h3 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin: 20px 0 10px;
}

.legal-card p {
  color: var(--grey);
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 0.98rem;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: 12px 0 18px 24px;
  color: var(--grey);
  line-height: 1.8;
  font-size: 0.98rem;
}

.legal-card ul li {
  margin-bottom: 8px;
}

.legal-card ul li strong {
  color: var(--white);
}

.legal-highlight {
  background: rgba(212, 175, 55, 0.05);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

.legal-highlight p {
  color: var(--grey-light);
  font-size: 0.95rem;
  margin: 0;
}

.legal-contact-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
  margin-top: 15px;
}

.legal-contact-box p {
  margin-bottom: 8px;
}

.legal-contact-box p strong {
  color: var(--gold);
}

@media (max-width: 768px) {
  .legal-hero { padding: 130px 0 40px; }
  .legal-hero h1 { font-size: 2.2rem; }
  .legal-card { padding: 26px 20px; }
  .legal-container { margin: 40px auto 70px; }
}
