/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #d4af37;
  --primary-gold-dark: #b8941f;
  --primary-gold-light: #e5c158;
  --dark-bg: #0f0f0f;
  --dark-secondary: #1a1a1a;
  --dark-tertiary: #252525;
  --text-light: #ffffff;
  --text-muted: #aaaaaa;
  --border-dark: #333333;
  --accent-red: #dc2626;
  --success-green: #10b981;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

html {
  scroll-behavior: smooth;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(25, 25, 25, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.3s ease-out;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-brand {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-gold);
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.logo:hover {
  transform: translateX(4px);
}

.logo:hover .logo-icon {
  animation: bounce 0.6s ease;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-icon {
  font-size: 1.1rem;
  display: inline-flex;
}

.nav-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  transform: translateY(-2px);
}

.cta-header {
  padding: 0.7rem 1.6rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  color: var(--dark-bg);
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.95rem;
  border: 2px solid transparent;
}

.cta-header:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.4);
  border-color: var(--primary-gold);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(37, 37, 37, 0.8) 50%, rgba(15, 15, 15, 1) 100%),
              radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><filter id="blur"><feGaussianBlur in="SourceGraphic" stdDeviation="2"/></filter></defs><circle cx="100" cy="100" r="50" fill="%23d4af37" opacity="0.08" filter="url(%23blur)"/><circle cx="1100" cy="500" r="80" fill="%23d4af37" opacity="0.08" filter="url(%23blur)"/></svg>');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 500;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-out 0.3s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--dark-bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services h2 {
  font-size: 2.8rem;
  margin-bottom: 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(37, 37, 37, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-dark);
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-gold), transparent, var(--primary-gold-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 12px;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 500;
}

/* Shop Section */
.shop-section {
  background-color: var(--dark-bg);
  position: relative;
}

.shop-container {
  padding: 2rem;
  background-color: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.shop-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.shop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* PP3P Shop Container Fixes - Prevent hover effects overflow */
#rfh-main {
  overflow: hidden !important;
  position: relative;
  z-index: 1;
  width: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="200" height="200" fill="%231a1a1a"/><rect width="200" height="200" fill="url(%23grid)"/></svg>');
  background-size: 20px 20px;
  background-color: var(--dark-secondary);
  min-height: 600px;
}

#rfh-main * {
  font-family: inherit;
}

/* PP3P Button Overflow Prevention */
#rfh-main button,
#rfh-main a.btn,
#rfh-main .btn,
#rfh-main [role="button"],
#rfh-main input[type="button"],
#rfh-main input[type="submit"] {
  overflow: hidden !important;
  position: relative !important;
  max-width: 100%;
}

/* PP3P Menu/Modal Container - Keep on top */
#rfh-main .modal,
#rfh-main .dropdown,
#rfh-main .popover,
#rfh-main [class*="overlay"],
#rfh-main [class*="menu"],
#rfh-main [class*="tooltip"] {
  z-index: 100 !important;
}

.shop-header {
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
  border-bottom: 2px solid var(--primary-gold);
  padding: 2rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.shop-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.shop-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.shop-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  font-weight: 500;
  line-height: 1.5;
}

footer {
  background: linear-gradient(180deg, var(--dark-tertiary) 0%, var(--dark-bg) 100%);
  border-top: 3px solid var(--primary-gold);
  padding: 4rem 2rem 2rem;
  margin-top: 5rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0.5;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-gold);
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: var(--text-muted);
  line-height: 2;
  font-weight: 500;
}

.footer-section a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  padding-left: 0;
}

.footer-section a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary-gold);
  padding-left: 12px;
}

.footer-section a:hover::before {
  width: 8px;
}

/* Business Hours Styling */
.business-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hour-item {
  display: flex;
  gap: 1rem;
}

.hour-item .day {
  min-width: 45px;
  font-weight: 600;
  color: var(--text-light);
}

.hour-item .time {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  margin-top: 2rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(37, 37, 37, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
  color: var(--text-light);
  border: 2px solid var(--border-dark);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, rgba(37, 37, 37, 1) 0%, rgba(26, 26, 26, 1) 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25), inset 0 0 10px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* Contact Links - Email & Phone */
.contact-wrapper a[href^="mailto:"],
.contact-wrapper a[href^="tel:"] {
  transition: all 0.3s ease;
}

.contact-wrapper a[href^="mailto:"]:hover,
.contact-wrapper a[href^="tel:"]:hover {
  color: var(--primary-gold-light) !important;
  transform: translateX(4px);
}

.submit-btn {
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  color: var(--dark-bg);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(212, 175, 55, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-container {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }

  .logo-brand {
    font-size: 1.1rem;
  }

  .logo-tagline {
    font-size: 0.65rem;
  }

  .nav-menu {
    gap: 0;
    flex: 1;
  }

  .nav-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  .nav-icon {
    font-size: 1rem;
  }

  .cta-header {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .services h2 {
    font-size: 1.75rem;
  }

  .shop-header {
    padding: 1.5rem;
  }

  .shop-header h1 {
    font-size: 1.6rem;
  }

  .shop-header p {
    font-size: 0.9rem;
  }

  .shop-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .shop-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-direction: column;
  }

  .filter-group input,
  .filter-group select {
    width: 100%;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .modal-content {
    width: 95%;
  }

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

@media (max-width: 480px) {
  .header-container {
    padding: 0.6rem 0.75rem;
    gap: 0.75rem;
  }

  .logo-icon {
    font-size: 1.6rem;
  }

  .logo-brand {
    font-size: 1rem;
  }

  .logo-text {
    gap: -2px;
  }

  .logo-tagline {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .cta-header {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .shop-header {
    padding: 1rem;
  }

  .shop-header h1 {
    font-size: 1.4rem;
  }

  .shop-header p {
    font-size: 0.85rem;
  }

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

  .cart-item {
    padding: 0.75rem;
  }

  .submit-btn {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}

/* How It Works Section */
.how-it-works {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.how-it-works h2 {
  font-size: 2.8rem;
  margin-bottom: 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step-card {
  background: linear-gradient(135deg, rgba(37, 37, 37, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-dark);
  transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.step-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-gold), transparent, var(--primary-gold-dark));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 12px;
  pointer-events: none;
}

.step-card:hover::before {
  opacity: 1;
}

.step-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.2);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  color: var(--dark-bg);
  font-size: 2.5rem;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.step-card p {
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 500;
}

/* Legal Content Pages */
.legal-content {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.legal-text {
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 500;
}

.legal-text h2 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.legal-text h3 {
  font-size: 1.3rem;
  color: var(--primary-gold-light);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.legal-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-text ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-text li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.legal-text strong {
  color: var(--text-light);
  font-weight: 700;
}

/* Utilities */
.hidden {
  display: none;
}

/* Responsive adjustments for how-it-works */
@media (max-width: 768px) {
  .how-it-works h2 {
    font-size: 1.75rem;
  }

  .steps-grid {
    gap: 1.5rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .step-card h3 {
    font-size: 1.1rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }

  .legal-content {
    padding: 2rem 1rem;
  }

  .legal-content h1 {
    font-size: 1.75rem;
  }

  .legal-text h2 {
    font-size: 1.3rem;
  }

  .legal-text h3 {
    font-size: 1rem;
  }
}

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

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}
