/* ================================================
   Billinary - Crypto Asset Services
   Mobile-first CSS with CSS Variables
   ================================================ */

/* CSS Variables */
:root {
  /* Neutral Palette */
  --white: #FFFFFF;
  --beige: #F5F1EB;
  --cream: #FAF8F4;
  --warm-white: #FFFCF8;
  --light-beige: #F9F6F1;
  --brown: #8B6F47;
  --dark-brown: #3D2E1F;
  --medium-brown: #6B5A3F;
  
  /* Accent Colors */
  --gold: #D4AF37;
  --gold-hover: #B8941F;
  --copper: #B87333;
  --copper-hover: #9A5F28;
  
  /* Text Colors */
  --text-primary: #3D2E1F;
  --text-secondary: #6B5A3F;
  --text-light: #8B6F47;
  
  /* Background Colors */
  --bg-primary: #FFFCF8;
  --bg-secondary: #FAF8F4;
  --bg-tertiary: #F5F1EB;
  
  /* Borders & Dividers */
  --border-light: rgba(139, 111, 71, 0.15);
  --border-medium: rgba(139, 111, 71, 0.25);
  --divider: rgba(61, 46, 31, 0.1);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(61, 46, 31, 0.06);
  --shadow-md: 0 4px 16px rgba(61, 46, 31, 0.08);
  --shadow-lg: 0 8px 32px rgba(61, 46, 31, 0.12);
  --shadow-xl: 0 16px 48px rgba(61, 46, 31, 0.15);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 252, 248, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(61, 46, 31, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1.25rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 { 
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
h2 { 
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
h3 { 
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: var(--space-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--dark-brown);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold), 0 8px 24px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, var(--gold-hover) 0%, var(--copper-hover) 100%);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-brown);
  border: 2px solid var(--brown);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--brown) 0%, var(--dark-brown) 100%);
  color: var(--cream);
  border-color: var(--dark-brown);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

/* ================================================
   Header
   ================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

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

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

.nav-links {
  display: none;
  gap: var(--space-lg);
}

.nav-links a {
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  transition: width var(--transition-base);
}

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

.nav-links a:hover {
  color: var(--brown);
}

.nav > .btn {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-brown);
  transition: var(--transition-fast);
  border-radius: 2px;
}

/* Mobile Navigation */
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: var(--space-md);
  border-bottom: 1px solid var(--glass-border);
  gap: var(--space-sm);
  box-shadow: var(--shadow-md);
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
  padding: calc(70px + var(--space-2xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--light-beige) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(184, 115, 51, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulse 10s ease-in-out infinite 2s;
}

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

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

.hero .container {
  display: grid;
  gap: var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge::before {
  content: '✨';
  font-size: 1rem;
}

.hero-title {
  margin-bottom: var(--space-md);
  background: linear-gradient(
    90deg,
    var(--dark-brown) 0%,
    var(--brown) 25%,
    var(--gold) 50%,
    var(--brown) 75%,
    var(--dark-brown) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  line-height: 1.1;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}


.hero-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 650px;
  line-height: 1.8;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  overflow: hidden;
}

.btn-primary svg {
  transition: transform var(--transition-base);
  position: relative;
  z-index: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Trust Points */
.hero-trust-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-3xl);
}

.trust-point {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.trust-point svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

/* Hero Showcase */
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 400px;
  perspective: 1000px;
}

.showcase-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  cursor: pointer;
}

.showcase-card:hover {
  box-shadow: var(--shadow-lg), 0 25px 50px rgba(61, 46, 31, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.showcase-card .showcase-icon,
.showcase-card .showcase-label {
  transform: translateZ(20px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .showcase-icon {
  transform: translateZ(40px);
}

.showcase-card:hover .showcase-label {
  transform: translateZ(30px);
}

.showcase-card.card-main {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  z-index: 3;
  animation: floatMain 6s ease-in-out infinite;
}

.showcase-card.card-main:hover {
  transform: translateX(-50%) translateY(-10px) rotateX(10deg) rotateY(-5deg);
  animation-play-state: paused;
}

.showcase-card.card-secondary {
  top: 100px;
  left: 0;
  width: 140px;
  z-index: 2;
  animation: floatSecondary 6s ease-in-out infinite 1s;
}

.showcase-card.card-secondary:hover {
  transform: translateY(-10px) rotateX(8deg) rotateY(12deg);
  animation-play-state: paused;
}

.showcase-card.card-tertiary {
  top: 100px;
  right: 0;
  width: 140px;
  z-index: 2;
  animation: floatTertiary 6s ease-in-out infinite 2s;
}

.showcase-card.card-tertiary:hover {
  transform: translateY(-10px) rotateX(8deg) rotateY(-12deg);
  animation-play-state: paused;
}

@keyframes floatMain {
  0%, 100% { transform: translateX(-50%) translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateX(-50%) translateY(-12px) rotateX(3deg) rotateY(2deg); }
}

@keyframes floatSecondary {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateX(-3deg) rotateY(5deg); }
}

@keyframes floatTertiary {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateX(-3deg) rotateY(-5deg); }
}

.showcase-icon {
  width: 64px;
  height: 64px;
  color: var(--brown);
  transition: color var(--transition-base);
}

.showcase-card:hover .showcase-icon {
  color: var(--gold);
}

.showcase-icon svg {
  width: 100%;
  height: 100%;
}

.showcase-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.showcase-crypto {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s ease-in-out infinite;
  z-index: 4;
}

/* Particle sparkles around crypto icon */
.showcase-crypto::before,
.showcase-crypto::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

.showcase-crypto::before {
  background: 
    radial-gradient(circle at 20% 10%, rgba(212, 175, 55, 0.8) 1px, transparent 2px),
    radial-gradient(circle at 80% 15%, rgba(212, 175, 55, 0.6) 1.5px, transparent 3px),
    radial-gradient(circle at 90% 50%, rgba(212, 175, 55, 0.7) 1px, transparent 2px),
    radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.5) 1px, transparent 2px),
    radial-gradient(circle at 50% 95%, rgba(212, 175, 55, 0.6) 1.5px, transparent 3px),
    radial-gradient(circle at 15% 80%, rgba(212, 175, 55, 0.7) 1px, transparent 2px),
    radial-gradient(circle at 5% 45%, rgba(212, 175, 55, 0.8) 1px, transparent 2px);
  animation: sparkleRotate 8s linear infinite;
  transform: scale(1.8);
  opacity: 0.9;
}

.showcase-crypto::after {
  background: 
    radial-gradient(circle at 30% 5%, rgba(255, 215, 0, 0.9) 1.5px, transparent 3px),
    radial-gradient(circle at 70% 10%, rgba(255, 215, 0, 0.5) 1px, transparent 2px),
    radial-gradient(circle at 95% 35%, rgba(255, 215, 0, 0.6) 1px, transparent 2px),
    radial-gradient(circle at 92% 70%, rgba(255, 215, 0, 0.8) 1.5px, transparent 3px),
    radial-gradient(circle at 60% 92%, rgba(255, 215, 0, 0.7) 1px, transparent 2px),
    radial-gradient(circle at 25% 90%, rgba(255, 215, 0, 0.6) 1px, transparent 2px),
    radial-gradient(circle at 8% 60%, rgba(255, 215, 0, 0.5) 1px, transparent 2px);
  animation: sparkleRotate 12s linear infinite reverse;
  transform: scale(2.2);
  opacity: 0.7;
}

@keyframes sparkleRotate {
  from { transform: scale(1.8) rotate(0deg); }
  to { transform: scale(1.8) rotate(360deg); }
}

/* Floating sparkle particles */
.showcase-crypto .sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(212, 175, 55, 0.6);
}

.showcase-crypto svg {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

@keyframes pulse {
  0%, 100% { 
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
  }
  50% { 
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 25px 15px rgba(212, 175, 55, 0.15), 0 0 50px rgba(212, 175, 55, 0.1);
  }
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Coins Marquee */
.coins-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(245, 241, 235, 0.8) 30%, var(--beige) 100%);
  overflow: hidden;
  z-index: 2;
  display: flex;
  gap: 0;
  mask-image: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.coins-track {
  display: flex;
  gap: var(--space-lg);
  flex-shrink: 0;
  animation: marquee 40s linear infinite;
  will-change: transform;
  padding-right: var(--space-lg);
}

.coins-marquee:hover .coins-track {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.coin-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: default;
  flex-shrink: 0;
}

.coin-item:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-sm);
}

.coin-item svg {
  width: 28px;
  height: 28px;
  color: var(--brown);
  transition: color var(--transition-base);
}

.coin-item:hover svg {
  color: var(--gold);
}

.coin-item span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ================================================
   Section Styles
   ================================================ */
section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-title {
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.7;
}

/* ================================================
   Services Section
   ================================================ */
.services {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.services-grid {
  display: grid;
  gap: var(--space-lg);
}

a.service-card,
a.property-type-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Featured service card (full-width) */
.service-card-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card-featured:hover::before {
  transform: scaleX(1);
}

.service-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 175, 55, 0.1);
}

.service-card-featured-main {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-decoration: none;
  color: inherit;
}

.service-sublink {
  text-decoration: none;
}

.service-card-featured-main .service-icon {
  flex-shrink: 0;
}

.service-card-featured-main h3 {
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.service-card-featured-main p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.service-card-featured-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.service-sublink {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-brown);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.service-sublink:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
  .service-card-featured-main {
    flex-direction: column;
  }
  .service-card-featured-links {
    grid-template-columns: 1fr;
  }
}

/* 2x2 services grid */
@media (min-width: 769px) {
  .services-grid--2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 900px;
    margin: 0 auto;
  }
}

.service-card {
  padding: var(--space-xl);
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  color: var(--brown);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  color: var(--gold);
  transform: scale(1.1);
}

.service-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-features li {
  position: relative;
  padding-left: var(--space-md);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

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

.steps-grid {
  display: grid;
  gap: var(--space-lg);
}

.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--dark-brown);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  border-radius: 50%;
  box-shadow: var(--shadow-gold);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-gold), 0 0 30px rgba(212, 175, 55, 0.4);
}

.step-content h3 {
  margin-bottom: var(--space-xs);
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ================================================
   Benefits Section
   ================================================ */
.benefits {
  background: var(--bg-primary);
  position: relative;
}

.benefits-grid {
  display: grid;
  gap: var(--space-lg);
}

.benefit {
  text-align: center;
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  color: var(--brown);
  transition: all var(--transition-base);
}

.benefit:hover .benefit-icon {
  color: var(--gold);
  transform: scale(1.1);
}

.benefit h3 {
  margin-bottom: var(--space-xs);
  font-size: 1.1rem;
}

.benefit p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ================================================
   FAQ Section
   ================================================ */
.faq {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-lg);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast);
}

.faq-item[open] .faq-question {
  color: var(--brown);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--gold);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--copper);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer p {
  margin-bottom: 0;
}

/* ================================================
   CTA Section
   ================================================ */
.cta-section {
  background: linear-gradient(135deg, #1a1209 0%, #3d2e1f 50%, #2c1f14 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: #ffffff;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--dark-brown);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.cta-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* ================================================
   Contact Section
   ================================================ */
.contact {
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  font-family: var(--font-body);
  color: var(--text-primary);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), var(--shadow-sm);
  background: var(--cream);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-item {
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.3);
}

.contact-item svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold);
  transition: color var(--transition-base);
}

.contact-item:hover svg {
  color: var(--copper);
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

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

/* ================================================
   Footer
   ================================================ */
.footer {
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
  color: rgba(255, 252, 248, 0.85);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
}

.footer-grid {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-sm);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 280px;
  margin-bottom: 0;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-sm);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

/* Locale Picker */
.locale-picker {
  position: relative;
  display: inline-flex;
  margin-top: var(--space-md);
}

.locale-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.locale-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
}

.locale-trigger svg:first-child {
  opacity: 0.7;
}

.locale-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.locale-divider {
  opacity: 0.4;
}

.locale-chevron {
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.locale-trigger[aria-expanded="true"] .locale-chevron {
  transform: rotate(180deg);
}

.locale-dropdown {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 0;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
}

.locale-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.locale-dropdown-content {
  background: linear-gradient(135deg, #3d2e1f 0%, #2c1f14 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-width: 240px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.locale-field {
  margin-bottom: 1rem;
}

.locale-field:last-of-type {
  margin-bottom: 1.25rem;
}

.locale-field-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.locale-field-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.locale-field-select:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
}

.locale-field-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.locale-field-select option {
  background: #2c1f14;
  color: var(--white);
  padding: 0.5rem;
}

.locale-apply {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown) 100%);
  border: none;
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.locale-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.locale-apply:active {
  transform: translateY(0);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: center;
  font-size: 0.9rem;
}

/* ================================================
   Animations
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================================================
   Simple & Fast Section
   ================================================ */
.simple-fast {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--beige) 0%, var(--cream) 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

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

.simple-fast-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.simple-fast-content .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.simple-fast-content .section-subtitle {
  text-align: left;
  max-width: 500px;
  margin-bottom: var(--space-xl);
}

.simple-fast-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sf-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: default;
}

.sf-feature:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(8px);
}

.sf-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.sf-feature:hover .sf-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(184, 115, 51, 0.15) 100%);
}

.sf-icon svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.sf-text h4 {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.sf-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.simple-fast-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  perspective: 1000px;
}

.sf-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  box-shadow: 
    0 25px 50px rgba(61, 46, 31, 0.12),
    0 10px 20px rgba(61, 46, 31, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.sf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.sf-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 
    0 35px 70px rgba(61, 46, 31, 0.18),
    0 15px 30px rgba(61, 46, 31, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.sf-card-main {
  width: 220px;
}

.sf-card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-md);
  color: var(--brown);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  border-radius: 50%;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.sf-card:hover .sf-card-icon {
  transform: scale(1.1);
}

.sf-card-icon svg {
  width: 100%;
  height: 100%;
}

.sf-card-badge {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.sf-stat {
  position: absolute;
  background: var(--white);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  box-shadow: 
    0 15px 35px rgba(61, 46, 31, 0.1),
    0 5px 15px rgba(61, 46, 31, 0.05);
  transition: all 0.3s ease;
  cursor: default;
}

.sf-stat:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 
    0 20px 45px rgba(61, 46, 31, 0.15),
    0 8px 20px rgba(61, 46, 31, 0.08);
}

.sf-stat-1 {
  top: 10px;
  right: 5%;
  animation: float-stat 5s ease-in-out infinite;
}

.sf-stat-2 {
  bottom: 30px;
  left: 5%;
  animation: float-stat 5s ease-in-out infinite 1.5s;
}

.sf-stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.sf-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@keyframes float-stat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

/* ================================================
   Purchase Process Section
   ================================================ */
.purchase-process {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  position: relative;
}

.purchase-process::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 50px;
  bottom: 50px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--copper) 50%, var(--gold) 100%);
  opacity: 0.4;
  border-radius: 2px;
}

.process-step {
  display: flex;
  gap: var(--space-lg);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(5px);
}

.process-step-number {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-heading);
  z-index: 1;
  box-shadow: 
    0 8px 25px rgba(212, 175, 55, 0.35),
    0 4px 10px rgba(212, 175, 55, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: 
    0 12px 35px rgba(212, 175, 55, 0.45),
    0 6px 15px rgba(212, 175, 55, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.process-step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-number::after {
  opacity: 1;
  inset: -8px;
}

.process-step-content {
  flex: 1;
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  position: relative;
  box-shadow: 
    0 10px 30px rgba(61, 46, 31, 0.06),
    0 4px 12px rgba(61, 46, 31, 0.04);
  transition: all 0.3s ease;
  overflow: hidden;
}

.process-step-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--copper) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover .process-step-content {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 
    0 15px 40px rgba(61, 46, 31, 0.1),
    0 6px 18px rgba(61, 46, 31, 0.06);
}

.process-step:hover .process-step-content::before {
  opacity: 1;
}

.process-step-icon {
  width: 44px;
  height: 44px;
  color: var(--brown);
  margin-bottom: var(--space-sm);
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.process-step:hover .process-step-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 115, 51, 0.1) 100%);
}

.process-step-icon svg {
  width: 100%;
  height: 100%;
}

.process-step-content h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.process-step-content p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.process-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.process-step:hover .process-duration {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
  border-color: rgba(212, 175, 55, 0.4);
}

/* ================================================
   Global Coverage Section
   ================================================ */
.global-coverage {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.global-coverage::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.global-coverage::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.global-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.map-visual {
  position: relative;
  padding: var(--space-xl);
}

.global-map {
  position: relative;
  background: 
    radial-gradient(ellipse at 50% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(184, 115, 51, 0.06) 0%, transparent 40%),
    linear-gradient(160deg, #FFFDF8 0%, #F8F3E8 50%, #F0EBE0 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 
    0 25px 60px rgba(61, 46, 31, 0.12),
    0 10px 30px rgba(61, 46, 31, 0.06),
    inset 0 1px 0 rgba(255,255,255,1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.global-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--bronze) 50%, var(--gold) 100%);
  opacity: 0.6;
}

.map-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: var(--space-md);
}

.europe-map {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(61, 46, 31, 0.08));
}

/* Base dot styling - small, smooth dots */
.europe-dots .dot {
  fill: #A89968;
  opacity: 0.7;
  transform-origin: center;
  transform-box: fill-box;
  transition: all 0.5s ease-in-out;
}

/* Blink state applied via JS */
.europe-dots .dot.blink {
  fill: #D4AF37;
  opacity: 1;
  transform: scale(2.2);
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

/* Map highlights - feature list */
.map-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.map-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: var(--space-sm) var(--space-xs);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.12);
  transition: all var(--transition-base);
}

.map-highlight:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 46, 31, 0.08);
}

.map-highlight svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}

.map-highlight span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .map-highlights {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
  
  .map-highlight {
    flex-direction: row;
    text-align: left;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }
}

/* Random animation delays for all dots */
.dot.d1 { animation-delay: 0.1s; } .dot.d2 { animation-delay: 2.3s; } .dot.d3 { animation-delay: 1.7s; }
.dot.d4 { animation-delay: 0.8s; } .dot.d5 { animation-delay: 3.1s; } .dot.d6 { animation-delay: 0.4s; }
.dot.d7 { animation-delay: 2.9s; } .dot.d8 { animation-delay: 1.2s; } .dot.d9 { animation-delay: 0.6s; }
.dot.d10 { animation-delay: 2.1s; } .dot.d11 { animation-delay: 3.5s; } .dot.d12 { animation-delay: 0.3s; }
.dot.d13 { animation-delay: 1.9s; } .dot.d14 { animation-delay: 2.7s; } .dot.d15 { animation-delay: 0.9s; }
.dot.d16 { animation-delay: 3.3s; } .dot.d17 { animation-delay: 1.4s; } .dot.d18 { animation-delay: 2.5s; }
.dot.d19 { animation-delay: 0.2s; } .dot.d20 { animation-delay: 3.7s; } .dot.d21 { animation-delay: 1.1s; }
.dot.d22 { animation-delay: 2.8s; } .dot.d23 { animation-delay: 0.7s; } .dot.d24 { animation-delay: 3.2s; }
.dot.d25 { animation-delay: 1.6s; } .dot.d26 { animation-delay: 2.2s; } .dot.d27 { animation-delay: 0.5s; }
.dot.d28 { animation-delay: 3.9s; } .dot.d29 { animation-delay: 1.3s; } .dot.d30 { animation-delay: 2.6s; }
.dot.d31 { animation-delay: 0.0s; } .dot.d32 { animation-delay: 3.4s; } .dot.d33 { animation-delay: 1.8s; }
.dot.d34 { animation-delay: 2.0s; } .dot.d35 { animation-delay: 0.8s; } .dot.d36 { animation-delay: 3.6s; }
.dot.d37 { animation-delay: 1.5s; } .dot.d38 { animation-delay: 2.4s; } .dot.d39 { animation-delay: 0.1s; }
.dot.d40 { animation-delay: 3.8s; } .dot.d41 { animation-delay: 1.0s; } .dot.d42 { animation-delay: 2.9s; }
.dot.d43 { animation-delay: 0.6s; } .dot.d44 { animation-delay: 3.0s; } .dot.d45 { animation-delay: 1.7s; }
.dot.d46 { animation-delay: 2.3s; } .dot.d47 { animation-delay: 0.4s; } .dot.d48 { animation-delay: 3.1s; }
.dot.d49 { animation-delay: 1.2s; } .dot.d50 { animation-delay: 2.7s; } .dot.d51 { animation-delay: 0.9s; }
.dot.d52 { animation-delay: 3.5s; } .dot.d53 { animation-delay: 1.4s; } .dot.d54 { animation-delay: 2.1s; }
.dot.d55 { animation-delay: 0.3s; } .dot.d56 { animation-delay: 3.3s; } .dot.d57 { animation-delay: 1.9s; }
.dot.d58 { animation-delay: 2.5s; } .dot.d59 { animation-delay: 0.2s; } .dot.d60 { animation-delay: 3.7s; }
.dot.d61 { animation-delay: 1.1s; } .dot.d62 { animation-delay: 2.8s; } .dot.d63 { animation-delay: 0.7s; }
.dot.d64 { animation-delay: 3.2s; } .dot.d65 { animation-delay: 1.6s; } .dot.d66 { animation-delay: 2.2s; }
.dot.d67 { animation-delay: 0.5s; } .dot.d68 { animation-delay: 3.9s; } .dot.d69 { animation-delay: 1.3s; }
.dot.d70 { animation-delay: 2.6s; } .dot.d71 { animation-delay: 0.0s; } .dot.d72 { animation-delay: 3.4s; }
.dot.d73 { animation-delay: 1.8s; } .dot.d74 { animation-delay: 2.0s; } .dot.d75 { animation-delay: 0.8s; }
.dot.d76 { animation-delay: 3.6s; } .dot.d77 { animation-delay: 1.5s; } .dot.d78 { animation-delay: 2.4s; }
.dot.d79 { animation-delay: 0.1s; } .dot.d80 { animation-delay: 3.8s; } .dot.d81 { animation-delay: 1.0s; }
.dot.d82 { animation-delay: 2.9s; } .dot.d83 { animation-delay: 0.6s; } .dot.d84 { animation-delay: 3.0s; }
.dot.d85 { animation-delay: 1.7s; } .dot.d86 { animation-delay: 2.3s; } .dot.d87 { animation-delay: 0.4s; }
.dot.d88 { animation-delay: 3.1s; } .dot.d89 { animation-delay: 1.2s; } .dot.d90 { animation-delay: 2.7s; }
.dot.d91 { animation-delay: 0.9s; } .dot.d92 { animation-delay: 3.5s; } .dot.d93 { animation-delay: 1.4s; }
.dot.d94 { animation-delay: 2.1s; } .dot.d95 { animation-delay: 0.3s; } .dot.d96 { animation-delay: 3.3s; }
.dot.d97 { animation-delay: 1.9s; } .dot.d98 { animation-delay: 2.5s; } .dot.d99 { animation-delay: 0.2s; }
.dot.d100 { animation-delay: 3.7s; } .dot.d101 { animation-delay: 1.1s; } .dot.d102 { animation-delay: 2.8s; }
.dot.d103 { animation-delay: 0.7s; } .dot.d104 { animation-delay: 3.2s; } .dot.d105 { animation-delay: 1.6s; }
.dot.d106 { animation-delay: 2.2s; } .dot.d107 { animation-delay: 0.5s; } .dot.d108 { animation-delay: 3.9s; }
.dot.d109 { animation-delay: 1.3s; } .dot.d110 { animation-delay: 2.6s; } .dot.d111 { animation-delay: 0.0s; }
.dot.d112 { animation-delay: 3.4s; } .dot.d113 { animation-delay: 1.8s; } .dot.d114 { animation-delay: 2.0s; }
.dot.d115 { animation-delay: 0.8s; } .dot.d116 { animation-delay: 3.6s; } .dot.d117 { animation-delay: 1.5s; }
.dot.d118 { animation-delay: 2.4s; } .dot.d119 { animation-delay: 0.1s; } .dot.d120 { animation-delay: 3.8s; }
.dot.d121 { animation-delay: 1.0s; } .dot.d122 { animation-delay: 2.9s; } .dot.d123 { animation-delay: 0.6s; }
.dot.d124 { animation-delay: 3.0s; } .dot.d125 { animation-delay: 1.7s; } .dot.d126 { animation-delay: 2.3s; }
.dot.d127 { animation-delay: 0.4s; } .dot.d128 { animation-delay: 3.1s; } .dot.d129 { animation-delay: 1.2s; }
.dot.d130 { animation-delay: 2.7s; } .dot.d131 { animation-delay: 0.9s; } .dot.d132 { animation-delay: 3.5s; }
.dot.d133 { animation-delay: 1.4s; } .dot.d134 { animation-delay: 2.1s; } .dot.d135 { animation-delay: 0.3s; }
.dot.d136 { animation-delay: 3.3s; } .dot.d137 { animation-delay: 1.9s; } .dot.d138 { animation-delay: 2.5s; }
.dot.d139 { animation-delay: 0.2s; } .dot.d140 { animation-delay: 3.7s; } .dot.d141 { animation-delay: 1.1s; }
.dot.d142 { animation-delay: 2.8s; } .dot.d143 { animation-delay: 0.7s; } .dot.d144 { animation-delay: 3.2s; }
.dot.d145 { animation-delay: 1.6s; } .dot.d146 { animation-delay: 2.2s; } .dot.d147 { animation-delay: 0.5s; }
.dot.d148 { animation-delay: 3.9s; } .dot.d149 { animation-delay: 1.3s; } .dot.d150 { animation-delay: 2.6s; }
.dot.d151 { animation-delay: 0.0s; } .dot.d152 { animation-delay: 3.4s; } .dot.d153 { animation-delay: 1.8s; }
.dot.d154 { animation-delay: 2.0s; } .dot.d155 { animation-delay: 0.8s; } .dot.d156 { animation-delay: 3.6s; }
.dot.d157 { animation-delay: 1.5s; } .dot.d158 { animation-delay: 2.4s; } .dot.d159 { animation-delay: 0.1s; }
.dot.d160 { animation-delay: 3.8s; } .dot.d161 { animation-delay: 1.0s; } .dot.d162 { animation-delay: 2.9s; }
.dot.d163 { animation-delay: 0.6s; } .dot.d164 { animation-delay: 3.0s; } .dot.d165 { animation-delay: 1.7s; }
.dot.d166 { animation-delay: 2.3s; } .dot.d167 { animation-delay: 0.4s; } .dot.d168 { animation-delay: 3.1s; }
.dot.d169 { animation-delay: 1.2s; } .dot.d170 { animation-delay: 2.7s; } .dot.d171 { animation-delay: 0.9s; }
.dot.d172 { animation-delay: 3.5s; } .dot.d173 { animation-delay: 1.4s; } .dot.d174 { animation-delay: 2.1s; }
.dot.d175 { animation-delay: 0.3s; } .dot.d176 { animation-delay: 3.3s; } .dot.d177 { animation-delay: 1.9s; }
.dot.d178 { animation-delay: 2.5s; } .dot.d179 { animation-delay: 0.2s; } .dot.d180 { animation-delay: 3.7s; }
.dot.d181 { animation-delay: 1.1s; } .dot.d182 { animation-delay: 2.8s; } .dot.d183 { animation-delay: 0.7s; }
.dot.d184 { animation-delay: 3.2s; } .dot.d185 { animation-delay: 1.6s; } .dot.d186 { animation-delay: 2.2s; }
.dot.d187 { animation-delay: 0.5s; } .dot.d188 { animation-delay: 3.9s; } .dot.d189 { animation-delay: 1.3s; }
.dot.d190 { animation-delay: 2.6s; } .dot.d191 { animation-delay: 0.0s; } .dot.d192 { animation-delay: 3.4s; }
.dot.d193 { animation-delay: 1.8s; } .dot.d194 { animation-delay: 2.0s; } .dot.d195 { animation-delay: 0.8s; }
.dot.d196 { animation-delay: 3.6s; } .dot.d197 { animation-delay: 1.5s; } .dot.d198 { animation-delay: 2.4s; }
.dot.d199 { animation-delay: 0.1s; } .dot.d200 { animation-delay: 3.8s; } .dot.d201 { animation-delay: 1.0s; }
.dot.d202 { animation-delay: 2.9s; } .dot.d203 { animation-delay: 0.6s; } .dot.d204 { animation-delay: 3.0s; }
.dot.d205 { animation-delay: 1.7s; } .dot.d206 { animation-delay: 2.3s; } .dot.d207 { animation-delay: 0.4s; }
.dot.d208 { animation-delay: 3.1s; } .dot.d209 { animation-delay: 1.2s; } .dot.d210 { animation-delay: 2.7s; }
.dot.d211 { animation-delay: 0.9s; } .dot.d212 { animation-delay: 3.5s; } .dot.d213 { animation-delay: 1.4s; }
.dot.d214 { animation-delay: 2.1s; } .dot.d215 { animation-delay: 0.3s; } .dot.d216 { animation-delay: 3.3s; }
.dot.d217 { animation-delay: 1.9s; } .dot.d218 { animation-delay: 2.5s; } .dot.d219 { animation-delay: 0.2s; }
.dot.d220 { animation-delay: 3.7s; } .dot.d221 { animation-delay: 1.1s; } .dot.d222 { animation-delay: 2.8s; }
.dot.d223 { animation-delay: 0.7s; } .dot.d224 { animation-delay: 3.2s; } .dot.d225 { animation-delay: 1.6s; }
.dot.d226 { animation-delay: 2.2s; } .dot.d227 { animation-delay: 0.5s; } .dot.d228 { animation-delay: 3.9s; }
.dot.d229 { animation-delay: 1.3s; } .dot.d230 { animation-delay: 2.6s; } .dot.d231 { animation-delay: 0.0s; }
.dot.d232 { animation-delay: 3.4s; } .dot.d233 { animation-delay: 1.8s; } .dot.d234 { animation-delay: 2.0s; }
.dot.d235 { animation-delay: 0.8s; } .dot.d236 { animation-delay: 3.6s; } .dot.d237 { animation-delay: 1.5s; }
.dot.d238 { animation-delay: 2.4s; } .dot.d239 { animation-delay: 0.1s; } .dot.d240 { animation-delay: 3.8s; }
.dot.d241 { animation-delay: 1.0s; } .dot.d242 { animation-delay: 2.9s; } .dot.d243 { animation-delay: 0.6s; }
.dot.d244 { animation-delay: 3.0s; } .dot.d245 { animation-delay: 1.7s; } .dot.d246 { animation-delay: 2.3s; }
.dot.d247 { animation-delay: 0.4s; } .dot.d248 { animation-delay: 3.1s; } .dot.d249 { animation-delay: 1.2s; }
.dot.d250 { animation-delay: 2.7s; } .dot.d251 { animation-delay: 0.9s; } .dot.d252 { animation-delay: 3.5s; }
.dot.d253 { animation-delay: 1.4s; } .dot.d254 { animation-delay: 2.1s; } .dot.d255 { animation-delay: 0.3s; }
.dot.d256 { animation-delay: 3.3s; } .dot.d257 { animation-delay: 1.9s; } .dot.d258 { animation-delay: 2.5s; }
.dot.d259 { animation-delay: 0.2s; } .dot.d260 { animation-delay: 3.7s; } .dot.d261 { animation-delay: 1.1s; }
.dot.d262 { animation-delay: 2.8s; } .dot.d263 { animation-delay: 0.7s; } .dot.d264 { animation-delay: 3.2s; }
.dot.d265 { animation-delay: 1.6s; } .dot.d266 { animation-delay: 2.2s; } .dot.d267 { animation-delay: 0.5s; }
.dot.d268 { animation-delay: 3.9s; } .dot.d269 { animation-delay: 1.3s; } .dot.d270 { animation-delay: 2.6s; }
.dot.d271 { animation-delay: 0.0s; } .dot.d272 { animation-delay: 3.4s; } .dot.d273 { animation-delay: 1.8s; }
.dot.d274 { animation-delay: 2.0s; } .dot.d275 { animation-delay: 0.8s; } .dot.d276 { animation-delay: 3.6s; }
.dot.d277 { animation-delay: 1.5s; } .dot.d278 { animation-delay: 2.4s; } .dot.d279 { animation-delay: 0.1s; }
.dot.d280 { animation-delay: 3.8s; } .dot.d281 { animation-delay: 1.0s; } .dot.d282 { animation-delay: 2.9s; }
.dot.d283 { animation-delay: 0.6s; } .dot.d284 { animation-delay: 3.0s; } .dot.d285 { animation-delay: 1.7s; }
.dot.d286 { animation-delay: 2.3s; } .dot.d287 { animation-delay: 0.4s; } .dot.d288 { animation-delay: 3.1s; }
.dot.d289 { animation-delay: 1.2s; } .dot.d290 { animation-delay: 2.7s; } .dot.d291 { animation-delay: 0.9s; }
.dot.d292 { animation-delay: 3.5s; } .dot.d293 { animation-delay: 1.4s; } .dot.d294 { animation-delay: 2.1s; }
.dot.d295 { animation-delay: 0.3s; } .dot.d296 { animation-delay: 3.3s; } .dot.d297 { animation-delay: 1.9s; }
.dot.d298 { animation-delay: 2.5s; } .dot.d299 { animation-delay: 0.2s; } .dot.d300 { animation-delay: 3.7s; }
.dot.d301 { animation-delay: 1.1s; } .dot.d302 { animation-delay: 2.8s; } .dot.d303 { animation-delay: 0.7s; }
.dot.d304 { animation-delay: 3.2s; } .dot.d305 { animation-delay: 1.6s; } .dot.d306 { animation-delay: 2.2s; }
.dot.d307 { animation-delay: 0.5s; } .dot.d308 { animation-delay: 3.9s; } .dot.d309 { animation-delay: 1.3s; }
.dot.d310 { animation-delay: 2.6s; } .dot.d311 { animation-delay: 0.0s; } .dot.d312 { animation-delay: 3.4s; }
.dot.d313 { animation-delay: 1.8s; } .dot.d314 { animation-delay: 2.0s; } .dot.d315 { animation-delay: 0.8s; }
.dot.d316 { animation-delay: 3.6s; } .dot.d317 { animation-delay: 1.5s; } .dot.d318 { animation-delay: 2.4s; }
.dot.d319 { animation-delay: 0.1s; } .dot.d320 { animation-delay: 3.8s; } .dot.d321 { animation-delay: 1.0s; }
.dot.d322 { animation-delay: 2.9s; } .dot.d323 { animation-delay: 0.6s; } .dot.d324 { animation-delay: 3.0s; }
.dot.d325 { animation-delay: 1.7s; } .dot.d326 { animation-delay: 2.3s; } .dot.d327 { animation-delay: 0.4s; }
.dot.d328 { animation-delay: 3.1s; } .dot.d329 { animation-delay: 1.2s; } .dot.d330 { animation-delay: 2.7s; }
.dot.d331 { animation-delay: 0.9s; } .dot.d332 { animation-delay: 3.5s; } .dot.d333 { animation-delay: 1.4s; }
.dot.d334 { animation-delay: 2.1s; } .dot.d335 { animation-delay: 0.3s; } .dot.d336 { animation-delay: 3.3s; }
.dot.d337 { animation-delay: 1.9s; } .dot.d338 { animation-delay: 2.5s; } .dot.d339 { animation-delay: 0.2s; }
.dot.d340 { animation-delay: 3.7s; } .dot.d341 { animation-delay: 1.1s; } .dot.d342 { animation-delay: 2.8s; }
.dot.d343 { animation-delay: 0.7s; } .dot.d344 { animation-delay: 3.2s; } .dot.d345 { animation-delay: 1.6s; }
.dot.d346 { animation-delay: 2.2s; } .dot.d347 { animation-delay: 0.5s; } .dot.d348 { animation-delay: 3.9s; }
.dot.d349 { animation-delay: 1.3s; } .dot.d350 { animation-delay: 2.6s; } .dot.d351 { animation-delay: 0.0s; }
.dot.d352 { animation-delay: 3.4s; } .dot.d353 { animation-delay: 1.8s; } .dot.d354 { animation-delay: 2.0s; }
.dot.d355 { animation-delay: 0.8s; } .dot.d356 { animation-delay: 3.6s; } .dot.d357 { animation-delay: 1.5s; }
.dot.d358 { animation-delay: 2.4s; } .dot.d359 { animation-delay: 0.1s; } .dot.d360 { animation-delay: 3.8s; }
.dot.d361 { animation-delay: 1.0s; } .dot.d362 { animation-delay: 2.9s; } .dot.d363 { animation-delay: 0.6s; }
.dot.d364 { animation-delay: 3.0s; } .dot.d365 { animation-delay: 1.7s; } .dot.d366 { animation-delay: 2.3s; }
.dot.d367 { animation-delay: 0.4s; } .dot.d368 { animation-delay: 3.1s; } .dot.d369 { animation-delay: 1.2s; }
.dot.d370 { animation-delay: 2.7s; } .dot.d371 { animation-delay: 0.9s; } .dot.d372 { animation-delay: 3.5s; }
.dot.d373 { animation-delay: 1.4s; } .dot.d374 { animation-delay: 2.1s; } .dot.d375 { animation-delay: 0.3s; }
.dot.d376 { animation-delay: 3.3s; } .dot.d377 { animation-delay: 1.9s; } .dot.d378 { animation-delay: 2.5s; }
.dot.d379 { animation-delay: 0.2s; } .dot.d380 { animation-delay: 3.7s; } .dot.d381 { animation-delay: 1.1s; }
.dot.d382 { animation-delay: 2.8s; }


.map-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(145deg, var(--white) 0%, rgba(255,255,255,0.95) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: 
    0 15px 40px rgba(212, 175, 55, 0.2),
    0 6px 15px rgba(61, 46, 31, 0.08);
  transition: all 0.3s ease;
  animation: float-badge 4s ease-in-out infinite;
}

.map-badge:hover {
  transform: scale(1.05);
  box-shadow: 
    0 20px 50px rgba(212, 175, 55, 0.3),
    0 8px 20px rgba(61, 46, 31, 0.12);
}

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

.map-badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.map-badge-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.global-content .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.global-content .section-subtitle {
  text-align: left;
  max-width: 500px;
  margin-bottom: var(--space-xl);
}

.global-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.global-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: default;
}

.global-feature:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(5px);
}

.global-feature svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  padding: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.global-feature:hover svg {
  transform: scale(1.15);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(184, 115, 51, 0.1) 100%);
}

/* ================================================
   Proof of Funds Section
   ================================================ */
.proof-of-funds {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #1a1209 0%, #2c1f14 30%, #3d2e1f 50%, #2c1f14 70%, #1a1209 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.proof-of-funds::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}

.proof-of-funds::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite 4s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.pof-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.pof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.2) 100%);
  border: 2px solid rgba(212, 175, 55, 0.7);
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  color: #f5d663;
  font-weight: 700;
  margin-bottom: var(--space-md);
  animation: badge-glow 3s ease-in-out infinite;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

.pof-content .section-title {
  text-align: left;
  color: #ffffff;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  -webkit-text-fill-color: #ffffff;
  background: none;
}

.pof-content .section-subtitle {
  text-align: left;
  color: rgba(255, 255, 255, 0.95);
  max-width: 500px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.pof-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.pof-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: default;
}

.pof-step:hover {
  background: rgba(212, 175, 55, 0.08);
  transform: translateX(8px);
}

.pof-step-number {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--dark-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 
    0 6px 20px rgba(212, 175, 55, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.pof-step:hover .pof-step-number {
  transform: scale(1.1);
  box-shadow: 
    0 10px 30px rgba(212, 175, 55, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.pof-step-text strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pof-step-text p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.pof-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.pof-document {
  background: linear-gradient(145deg, var(--white) 0%, #f8f6f3 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-xl);
  max-width: 340px;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.4),
    0 15px 35px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pof-document::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--copper) 50%, var(--gold) 100%);
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.pof-document:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-3deg);
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 20px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255,255,255,1);
}

.pof-doc-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  margin-bottom: var(--space-md);
}

.pof-doc-header svg {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.pof-doc-header span {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}

.pof-doc-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.pof-doc-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.pof-doc-details {
  background: linear-gradient(145deg, var(--bg-secondary) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.pof-doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
}

.pof-doc-row:last-child {
  border-bottom: none;
}

.pof-doc-row span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pof-doc-row strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 700;
}

.pof-doc-stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(212, 175, 55, 0.4);
  animation: stamp-pulse 2s ease-in-out infinite;
}

@keyframes stamp-pulse {
  0%, 100% { border-color: rgba(212, 175, 55, 0.4); }
  50% { border-color: rgba(212, 175, 55, 0.7); }
}

.pof-doc-stamp svg {
  width: 36px;
  height: 36px;
  animation: stamp-rotate 3s ease-in-out infinite;
}

@keyframes stamp-rotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}

.pof-doc-stamp span {
  font-weight: 800;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pof-timer {
  position: absolute;
  bottom: -25px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--dark-brown);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  box-shadow: 
    0 10px 30px rgba(212, 175, 55, 0.4),
    0 4px 10px rgba(0, 0, 0, 0.2);
  animation: timer-bounce 2s ease-in-out infinite;
}

@keyframes timer-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.02); }
}

.pof-timer-icon {
  font-size: 1.3rem;
}

.pof-timer-text {
  font-size: 0.95rem;
}

/* ================================================
   Responsive Design
   ================================================ */

/* Mobile Base Optimizations */
@media (max-width: 639px) {
  /* Hero Mobile */
  .hero {
    padding-top: calc(60px + var(--space-xl));
    padding-bottom: var(--space-lg);
  }
  
  .hero .container {
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
    line-height: 1.15;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .hero-trust-points {
    align-items: center;
    gap: var(--space-xs);
  }
  
  .trust-point {
    font-size: 0.85rem;
  }
  
  /* Showcase Mobile */
  .hero-showcase {
    max-width: 300px;
    height: 320px;
    margin: var(--space-xl) auto 0;
  }
  
  .showcase-card {
    padding: var(--space-md);
  }
  
  .showcase-card.card-main {
    width: 130px;
  }
  
  .showcase-card.card-secondary,
  .showcase-card.card-tertiary {
    width: 110px;
    top: 80px;
  }
  
  .showcase-icon {
    width: 48px;
    height: 48px;
  }
  
  .showcase-label {
    font-size: 0.8rem;
  }
  
  .showcase-crypto {
    bottom: 30px;
    width: 65px;
    height: 65px;
  }
  
  .showcase-crypto svg {
    width: 36px;
    height: 36px;
  }
  
  .showcase-crypto::before {
    transform: scale(1.5);
  }
  
  .showcase-crypto::after {
    transform: scale(1.8);
  }
  
  /* Coins Marquee Mobile */
  .coins-marquee {
    margin-top: var(--space-xl);
    padding: var(--space-sm) 0;
  }
  
  .coin-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .coin-item svg {
    width: 20px;
    height: 20px;
  }
  
  /* Hero Badge Mobile */
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  /* Disable 3D effects on touch devices for better performance */
  .showcase-card:hover {
    transform: none !important;
  }
  
  .showcase-card.card-main:hover {
    transform: translateX(-50%) translateY(-5px) !important;
  }
  
  .showcase-card.card-secondary:hover,
  .showcase-card.card-tertiary:hover {
    transform: translateY(-5px) !important;
  }
}

/* Small Mobile */
@media (max-width: 374px) {
  .hero-showcase {
    max-width: 260px;
    height: 280px;
  }
  
  .showcase-card.card-main {
    width: 110px;
  }
  
  .showcase-card.card-secondary,
  .showcase-card.card-tertiary {
    width: 95px;
    top: 70px;
  }
  
  .showcase-icon {
    width: 40px;
    height: 40px;
  }
  
  .showcase-crypto {
    bottom: 25px;
    width: 55px;
    height: 55px;
  }
  
  .showcase-crypto svg {
    width: 30px;
    height: 30px;
  }
}

/* Tablet */
@media (min-width: 640px) {
  :root {
    --container-padding: 2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Hero Tablet */
  .hero-showcase {
    max-width: 380px;
    height: 360px;
  }
  
  .showcase-card.card-main {
    width: 150px;
  }
  
  .showcase-card.card-secondary,
  .showcase-card.card-tertiary {
    width: 130px;
    top: 90px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  
  .nav-links {
    display: flex;
  }
  
  .nav > .btn {
    display: inline-flex;
  }
  
  .hero .container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
  }
  
  /* Trust Points Desktop */
  .hero-trust-points {
    flex-direction: row;
    gap: var(--space-lg);
  }
  
  /* Showcase Desktop */
  .hero-showcase {
    max-width: 480px;
    height: 450px;
  }
  
  .showcase-card.card-main {
    width: 180px;
  }
  
  .showcase-card.card-secondary,
  .showcase-card.card-tertiary {
    width: 160px;
    top: 120px;
  }
  
  .showcase-crypto {
    bottom: 50px;
    width: 90px;
    height: 90px;
  }
  
  .showcase-crypto svg {
    width: 54px;
    height: 54px;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  /* Simple & Fast Desktop */
  .simple-fast-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Purchase Process Desktop */
  .process-timeline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .process-step {
    flex: 1 1 calc(33.333% - var(--space-lg));
    flex-direction: column;
    text-align: center;
  }
  
  .process-step-number {
    margin: 0 auto var(--space-md);
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
  
  .process-step-icon {
    margin: 0 auto var(--space-sm);
  }
  
  .process-step-content h3 {
    text-align: center;
  }
  
  .process-step-content p {
    text-align: center;
  }
  
  /* Global Coverage Desktop */
  .global-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  /* Proof of Funds Desktop */
  .pof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Large Desktop */
@media (min-width: 1280px) {
  .hero {
    padding-top: calc(70px + var(--space-3xl));
  }
  
  section {
    padding: var(--space-3xl) 0;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .floating-icon {
    animation: none;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   PAGE-SPECIFIC STYLES (Real Estate, etc.)
   ======================================== */

/* Page Hero */
.page-hero {
  padding: calc(70px + var(--space-2xl)) 0 var(--space-2xl);
  background: linear-gradient(135deg, var(--cream) 0%, #fff 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: var(--space-md);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--medium-brown);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: var(--space-lg);
}

.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Property Showcase */
.property-showcase {
  position: relative;
}

.property-card-large {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.property-card-large:hover {
  transform: translateY(-5px);
}

.property-card-image {
  background: linear-gradient(135deg, #F5F0E8 0%, #E8DFD0 100%);
}

.property-card-image svg {
  width: 100%;
  height: auto;
  display: block;
}

.property-card-content {
  padding: var(--space-lg);
}

.property-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.property-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.property-card-content p {
  color: var(--medium-brown);
  font-size: 0.95rem;
}

.property-stats {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.property-stat {
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 1;
}

.property-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.property-stat-label {
  font-size: 0.85rem;
  color: var(--medium-brown);
}

/* Property Types Section */
.property-types {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.property-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.property-type-card {
  background: var(--cream);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.1);
  transition: all 0.3s ease;
}

.property-type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.property-type-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.property-type-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
}

.property-type-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.property-type-card > p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.property-type-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-type-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.property-type-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.property-type-link {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.property-type-link:hover {
  color: var(--gold);
}

/* Popular Locations */
.popular-locations {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
}

.location-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.location-card.location-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown) 100%);
  color: var(--white);
}

.locations-grid--uniform .location-card.location-large {
  grid-column: span 1;
  grid-row: span 1;
}

.location-card.location-large::before {
  display: none;
}

.location-card.location-large .location-content h3 {
  color: var(--white);
  font-size: 1.75rem;
}

.location-card.location-large .location-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
}

.location-flag {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.location-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.location-content p {
  color: var(--medium-brown);
  font-size: 0.9rem;
  line-height: 1.5;
}

.location-tag {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 0.35rem 0.75rem;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* Crypto Benefits Section */
.crypto-benefits {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.benefits-grid-alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.benefit-card-alt {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card-alt:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
}

.benefit-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.7;
}

.benefit-card-alt h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.benefit-card-alt p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RE Intro Section */
.re-intro {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background: var(--white);
}

.re-intro-content {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
}

.re-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.re-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.re-intro-text p:last-child {
  margin-bottom: 0;
}

.re-intro-text strong {
  color: var(--dark-brown);
  font-weight: 600;
}

.re-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.re-intro-stat {
  background: var(--cream);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid rgba(139, 111, 71, 0.1);
  transition: all 0.3s ease;
}

.re-intro-stat:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
}

.re-intro-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.re-intro-stat-label {
  font-size: 0.85rem;
  color: var(--medium-brown);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .re-intro-content {
    grid-template-columns: 2fr 1fr;
  }

  .re-intro-stats {
    grid-template-columns: 1fr;
  }
}

/* RE Crypto Accept Section */
.re-crypto-accept {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.re-crypto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.re-crypto-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.re-crypto-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.re-crypto-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.re-crypto-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.re-crypto-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.re-crypto-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* RE Bitcoin Section */
.re-bitcoin-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.re-bitcoin-grid {
  display: grid;
  gap: var(--space-2xl);
}

.re-bitcoin-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.re-bitcoin-text p:last-child {
  margin-bottom: 0;
}

.re-bitcoin-features {
  display: grid;
  gap: var(--space-lg);
}

.re-bitcoin-feature {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.1);
  transition: all 0.3s ease;
}

.re-bitcoin-feature:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
}

.re-bitcoin-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.re-bitcoin-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.re-bitcoin-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.re-bitcoin-feature p {
  color: var(--medium-brown);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .re-bitcoin-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* RE Checklist Section */
.re-checklist {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.re-checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.re-checklist-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.re-checklist-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.re-checklist-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.re-checklist-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.re-checklist-content p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .re-checklist-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}

/* RE Process Section */
.re-process {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.re-process-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.re-process-step {
  display: flex;
  gap: var(--space-lg);
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.re-process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.re-step-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.re-step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.re-step-content {
  flex: 1;
}

.re-step-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.re-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.re-step-content p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.re-step-duration {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--brown);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}


/* ================================================
   Service Pages - Shared Styles
   ================================================ */

/* Page Hero */
.page-hero {
  padding: calc(var(--space-3xl) + 80px) 0 var(--space-3xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-beige) 50%, var(--beige) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(184, 115, 51, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: var(--space-md);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--medium-brown);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.page-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.page-hero-visual {
  display: flex;
  justify-content: center;
}

/* Property Showcase Card */
.property-showcase {
  position: relative;
}

.property-card-large {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.property-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(61, 46, 31, 0.2);
}

.property-card-image {
  aspect-ratio: 16 / 11;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-card-image svg {
  width: 100%;
  height: 100%;
}

.property-card-content {
  padding: var(--space-md);
}

.property-card-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.property-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.property-card-content p {
  color: var(--medium-brown);
  font-size: 0.9rem;
}

/* Property Stats */
.property-stats {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.property-stat {
  flex: 1;
  padding: var(--space-sm);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(184, 115, 51, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  text-align: center;
}

.property-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.property-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--medium-brown);
  margin-top: 0.25rem;
}

/* Property Types Grid */
.property-types {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.property-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.property-type-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.property-type-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.property-type-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.property-type-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
}

.property-type-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.property-type-card > p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

.property-type-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.property-type-features li {
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}

.property-type-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* Popular Locations */
.popular-locations {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.location-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.location-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.location-card.location-large {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(184, 115, 51, 0.05) 100%);
  border-color: rgba(212, 175, 55, 0.25);
  color: var(--dark-brown);
}

.location-card.location-large .location-content h3 {
  color: var(--dark-brown);
}

.location-card.location-large .location-content p {
  color: var(--medium-brown);
}

.location-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-flag {
  font-size: 2rem;
}

.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
}

.location-card p {
  font-size: 0.9rem;
  color: var(--medium-brown);
  line-height: 1.5;
}

.location-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  width: fit-content;
}

/* Crypto Benefits Alt */
.crypto-benefits {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.benefits-grid-alt {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.benefit-card-alt {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
}

.benefit-card-alt:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.benefit-card-alt h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}

.benefit-card-alt p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RE Process */
.re-process {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.re-process-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.re-process-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.re-process-step:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

/* Service Page Contact Section */
.contact {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}

.contact .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.contact .contact-grid {
  display: grid;
  gap: var(--space-xl);
}

.contact .contact-form {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact .form-label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.contact .form-input,
.contact .form-textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

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

.contact .form-input::placeholder,
.contact .form-textarea::placeholder {
  color: var(--text-light);
}

.contact .form-textarea {
  resize: vertical;
  min-height: 100px;
}

.contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact .contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact .contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact .contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.contact .contact-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.contact .contact-card-content a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.contact .contact-card-content a:hover {
  color: var(--copper);
}

.contact .contact-card-content p {
  color: var(--medium-brown);
  font-size: 0.95rem;
}

/* Page Hero Responsive */
@media (min-width: 640px) {
  .property-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-grid-alt {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-hero .container {
    grid-template-columns: 1fr 1fr;
  }
  
  .page-hero-content {
    padding-right: var(--space-xl);
  }
  
  .property-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .locations-grid--uniform {
    grid-template-columns: repeat(3, 1fr);
  }

  .locations-grid--uniform .location-card.location-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .property-types-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .location-card.location-large {
    grid-column: span 3;
  }
  
  .benefits-grid-alt {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact .contact-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

/* ================================================
   Contact CTA Section (Homepage)
   ================================================ */
.contact-cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--cream) 100%);
  position: relative;
}

.contact-cta-grid {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-md);
}

.contact-cta-content > p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.contact-cta-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-cta-feature svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
}

/* Contact Page Hero Highlights */
.contact-hero-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-highlight {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-highlight svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

@media (min-width: 640px) {
  .contact-hero-highlights {
    flex-direction: row;
    gap: var(--space-lg);
  }
}

/* Locations Grid Responsive */
@media (max-width: 1023px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .location-card.location-large {
    grid-column: span 3;
    grid-row: span 1;
  }
}

@media (max-width: 639px) {
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .location-card.location-large {
    grid-column: span 2;
  }
  
  .re-process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .re-step-icon {
    margin: 0 auto;
  }
  
  .re-process-step:hover {
    transform: translateY(-5px);
  }
}

/* ================================================
   Legal Pages (Privacy, Terms, AML)
   ================================================ */

.legal-hero {
  padding: calc(70px + var(--space-2xl)) 0 var(--space-xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-beige) 50%, var(--cream) 100%);
  text-align: center;
  position: relative;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.legal-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.legal-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.legal-content {
  padding: var(--space-2xl) 0 var(--space-3xl);
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-color);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.legal-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.legal-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.legal-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-body a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition-fast);
}

.legal-body a:hover {
  text-decoration-color: var(--gold);
}

.legal-body strong {
  color: var(--dark-brown);
  font-weight: 600;
}

/* ================================================
   Breadcrumb
   ================================================ */

.breadcrumb {
  padding: calc(70px + var(--space-md)) 0 0;
  background: var(--cream);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--medium-brown);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  color: var(--border-color);
}

.breadcrumb-list a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-list a:hover {
  color: var(--gold);
}

.breadcrumb + .page-hero {
  padding-top: var(--space-xl);
}

/* ================================================
   RE House Page (reh-)
   ================================================ */

/* Why Buy Section */
.reh-why {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.reh-why-grid {
  display: grid;
  gap: var(--space-lg);
}

.reh-why-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.reh-why-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.reh-why-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reh-why-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.reh-why-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: 0.35rem;
}

.reh-why-card-body p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .reh-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reh-why-card-wide {
    grid-column: span 2;
  }
}

/* House Types */
.reh-types {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.reh-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.reh-type-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.06);
  transition: all 0.3s ease;
}

.reh-type-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.reh-type-emoji {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.reh-type-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.reh-type-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Crypto Home Guide */
.reh-guide {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.reh-guide-layout {
  display: grid;
  gap: var(--space-2xl);
}

.reh-guide-main h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.reh-guide-main p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.reh-guide-highlight {
  background: var(--cream);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.reh-guide-highlight h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-md);
}

.reh-guide-highlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.reh-guide-highlight li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.reh-guide-highlight li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .reh-guide-layout {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

/* How to Buy Steps */
.reh-how {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.reh-how-steps {
  display: grid;
  gap: var(--space-lg);
  counter-reset: step;
}

.reh-how-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.reh-how-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.reh-how-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.reh-how-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.reh-how-step p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .reh-how-steps {
    max-width: 720px;
    margin: 0 auto;
  }
}

/* Where to Buy */
.reh-where {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.reh-where-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.reh-where-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.reh-where-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.reh-where-flag {
  font-size: 2rem;
  line-height: 1;
}

.reh-where-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.reh-where-info p {
  color: var(--medium-brown);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

/* What to Expect */
.reh-expect {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.reh-expect-layout {
  display: grid;
  gap: var(--space-2xl);
}

.reh-expect-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.reh-expect-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.reh-expect-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.reh-expect-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.reh-expect-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.reh-expect-item svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  stroke: var(--gold);
}

.reh-expect-item span {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .reh-expect-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ================================================
   RE Property Page (rep-)
   ================================================ */

/* Problem Section */
.rep-problem {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.rep-problem-layout {
  display: grid;
  gap: var(--space-2xl);
}

.rep-problem-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.rep-problem-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.rep-problem-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rep-problem-card {
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
}

.rep-problem-card-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.25rem;
}

.rep-problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.rep-problem-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 1024px) {
  .rep-problem-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* Property Types */
.rep-types {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.rep-types-grid {
  display: grid;
  gap: var(--space-md);
}

.rep-type-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.rep-type-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.rep-type-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rep-type-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
}

.rep-type-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.rep-type-body p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .rep-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* How It Works Timeline */
.rep-how {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.rep-how-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.rep-how-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--copper));
  opacity: 0.3;
}

.rep-how-step {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-xl);
  position: relative;
}

.rep-how-step:last-child {
  padding-bottom: 0;
}

.rep-how-step-marker {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.rep-how-step-marker span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.rep-how-step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.rep-how-step-content p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Bitcoin Section */
.rep-bitcoin {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.rep-bitcoin-layout {
  display: grid;
  gap: var(--space-2xl);
}

.rep-bitcoin-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.rep-bitcoin-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.rep-bitcoin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.rep-bitcoin-stat {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.rep-bitcoin-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.rep-bitcoin-stat-lbl {
  font-size: 0.8rem;
  color: var(--medium-brown);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
  .rep-bitcoin-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* Bridge Section */
.rep-bridge {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.rep-bridge-layout {
  display: grid;
  gap: var(--space-xl);
}

.rep-bridge-col {
  padding: var(--space-xl);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.1);
}

.rep-bridge-col h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-md);
}

.rep-bridge-col p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.rep-bridge-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rep-bridge-col li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.rep-bridge-col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

@media (min-width: 768px) {
  .rep-bridge-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Regions */
.rep-regions {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.rep-regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.rep-region-card {
  padding: var(--space-xl);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.rep-region-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.rep-region-flag {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.rep-region-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.rep-region-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Sellers Section */
.rep-sellers {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.rep-sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.rep-sellers-card {
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.rep-sellers-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.rep-sellers-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(184, 115, 51, 0.1) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.rep-sellers-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}

.rep-sellers-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.rep-sellers-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================================================
   RE Land Page (rel-)
   ================================================ */

/* Why Section */
.rel-why {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.rel-why-grid {
  display: grid;
  gap: var(--space-lg);
}

.rel-why-card {
  padding: var(--space-xl);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.rel-why-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-md);
}

.rel-why-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-sm);
}

.rel-why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.rel-why-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .rel-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Process Steps */
.rel-process {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.rel-process-steps {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.rel-process-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.rel-process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.rel-process-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rel-process-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.rel-process-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.15rem;
}

.rel-process-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}

.rel-process-body p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Land Types Mosaic */
.rel-types {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.rel-types-mosaic {
  display: grid;
  gap: var(--space-lg);
}

.rel-types-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.rel-types-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.rel-types-card-inner {
  padding: var(--space-xl);
}

.rel-types-featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(184, 115, 51, 0.05) 100%);
  border-color: rgba(212, 175, 55, 0.2);
}

.rel-types-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-md);
}

.rel-types-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.rel-types-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .rel-types-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .rel-types-featured {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .rel-types-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Where to Buy */
.rel-where {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.rel-where-layout {
  display: grid;
  gap: var(--space-2xl);
}

.rel-where-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.rel-where-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.rel-where-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.rel-where-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.rel-where-item > span {
  font-size: 1.75rem;
  min-width: 2.5rem;
  text-align: center;
}

.rel-where-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark-brown);
  margin-bottom: 0.15rem;
}

.rel-where-item p {
  font-size: 0.9rem;
  color: var(--medium-brown);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .rel-where-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* Know Section */
.rel-know {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.rel-know-grid {
  display: grid;
  gap: var(--space-md);
}

.rel-know-card {
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.rel-know-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-sm);
}

.rel-know-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.rel-know-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .rel-know-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rel-know-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================
   Cars Page (cars-)
   ================================================ */

/* Intro Section */
.cars-intro {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.cars-intro-layout {
  display: grid;
  gap: var(--space-2xl);
}

.cars-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.cars-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.cars-intro-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cars-intro-highlight {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
}

.cars-intro-highlight > span {
  font-size: 1.5rem;
  min-width: 2rem;
}

.cars-intro-highlight h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark-brown);
  margin-bottom: 0.15rem;
}

.cars-intro-highlight p {
  font-size: 0.9rem;
  color: var(--medium-brown);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .cars-intro-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* ================================================
   Art Page (art-)
   ================================================ */

/* Intro Section */
.art-intro {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.art-intro-layout {
  display: grid;
  gap: var(--space-2xl);
}

.art-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.art-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.art-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.art-intro-stat {
  background: var(--cream);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.art-intro-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.art-intro-stat-lbl {
  font-size: 0.8rem;
  color: var(--medium-brown);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
  .art-intro-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* Art & Culture */
.art-culture {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.art-culture-layout {
  display: grid;
  gap: var(--space-lg);
}

.art-culture-card {
  padding: var(--space-xl);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.art-culture-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.art-culture-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-md);
}

.art-culture-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.art-culture-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .art-culture-layout {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Digital Art Section */
.art-digital {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.art-digital-layout {
  display: grid;
  gap: var(--space-2xl);
}

.art-digital-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.art-digital-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.art-digital-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.art-digital-feature {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
}

.art-digital-feature > span {
  font-size: 1.5rem;
  min-width: 2rem;
}

.art-digital-feature h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark-brown);
  margin-bottom: 0.15rem;
}

.art-digital-feature p {
  font-size: 0.9rem;
  color: var(--medium-brown);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .art-digital-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* ================================================
   Watches Page (watch-)
   ================================================ */

/* Intro */
.watch-intro {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.watch-intro-layout {
  display: grid;
  gap: var(--space-2xl);
}

.watch-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.watch-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.watch-intro-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.watch-intro-highlight {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--gold);
}

.watch-intro-highlight > span {
  font-size: 1.5rem;
  min-width: 2rem;
}

.watch-intro-highlight h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark-brown);
  margin-bottom: 0.15rem;
}

.watch-intro-highlight p {
  font-size: 0.9rem;
  color: var(--medium-brown);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .watch-intro-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* Watch Value */
.watch-value {
  padding: var(--space-3xl) 0;
  background: var(--white);
}

.watch-value-grid {
  display: grid;
  gap: var(--space-lg);
}

.watch-value-card {
  padding: var(--space-xl);
  background: var(--cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  transition: all 0.3s ease;
}

.watch-value-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-md);
}

.watch-value-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-sm);
}

.watch-value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.watch-value-card p {
  color: var(--medium-brown);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .watch-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Bitcoin Section */
.watch-bitcoin {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.watch-bitcoin-layout {
  display: grid;
  gap: var(--space-2xl);
}

.watch-bitcoin-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.watch-bitcoin-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.watch-bitcoin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.watch-bitcoin-stat {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.watch-bitcoin-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.watch-bitcoin-stat-lbl {
  font-size: 0.8rem;
  color: var(--medium-brown);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (min-width: 1024px) {
  .watch-bitcoin-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

/* ===== Rolex Page ===== */
.rlx-models {
  padding: var(--space-3xl) 0;
}

.rlx-models-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rlx-models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .rlx-models-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rlx-model-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rlx-model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rlx-model-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.rlx-model-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin: 0;
}

.rlx-model-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--white);
  padding: 0.2em 0.6em;
  border-radius: var(--radius-sm);
}

.rlx-model-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.rlx-model-variants {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.rlx-model-variants li {
  font-size: 0.8rem;
  color: var(--medium-brown);
  background: rgba(139, 111, 71, 0.06);
  padding: 0.3em 0.7em;
  border-radius: var(--radius-sm);
}

/* Rolex Compare */
.rlx-compare {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.rlx-compare-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rlx-compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rlx-compare-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rlx-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rlx-compare-featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, var(--white) 100%);
}

.rlx-compare-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-md);
}

.rlx-compare-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.rlx-compare-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

/* Rolex Intro */
.rlx-intro {
  padding: var(--space-3xl) 0;
}

.rlx-intro-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .rlx-intro-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.rlx-intro-text h2 {
  margin-bottom: var(--space-lg);
}

.rlx-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.rlx-intro-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.rlx-intro-stat {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.rlx-intro-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.rlx-intro-stat-lbl {
  font-size: 0.8rem;
  color: var(--medium-brown);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Rolex Gold Section */
.rlx-gold {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.rlx-gold-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .rlx-gold-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.rlx-gold-text h2 {
  margin-bottom: var(--space-lg);
}

.rlx-gold-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.rlx-gold-cards {
  display: grid;
  gap: var(--space-md);
}

.rlx-gold-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.rlx-gold-card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.rlx-gold-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-xs);
}

.rlx-gold-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--medium-brown);
  margin: 0;
}

/* Rolex Assets */
.rlx-assets {
  padding: var(--space-3xl) 0;
}

.rlx-assets-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .rlx-assets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rlx-assets-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rlx-assets-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.rlx-assets-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.rlx-assets-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

/* Rolex Market */
.rlx-market {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.rlx-market-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .rlx-market-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.rlx-market-text h2 {
  margin-bottom: var(--space-lg);
}

.rlx-market-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.rlx-market-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.rlx-market-stat {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.rlx-market-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.rlx-market-stat-lbl {
  font-size: 0.8rem;
  color: var(--medium-brown);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== Jewelry Page ===== */

/* Jewelry Intro */
.jwl-intro {
  padding: var(--space-3xl) 0;
}

.jwl-intro-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .jwl-intro-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.jwl-intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.jwl-intro-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.jwl-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.jwl-intro-stat {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.jwl-intro-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.jwl-intro-stat-lbl {
  font-size: 0.8rem;
  color: var(--medium-brown);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Jewelry Coins */
.jwl-coins {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.jwl-coins-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .jwl-coins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jwl-coins-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jwl-coins-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.jwl-coins-featured {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, var(--white) 100%);
}

.jwl-coins-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--space-md);
}

.jwl-coins-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.jwl-coins-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

/* Jewelry Benefits — reuses benefits-grid-alt */

/* Jewelry Bitcoin */
.jwl-bitcoin {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.jwl-bitcoin-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .jwl-bitcoin-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.jwl-bitcoin-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.jwl-bitcoin-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.jwl-bitcoin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.jwl-bitcoin-stat {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.jwl-bitcoin-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.jwl-bitcoin-stat-lbl {
  font-size: 0.8rem;
  color: var(--medium-brown);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Jewelry Investment */
.jwl-invest {
  padding: var(--space-3xl) 0;
}

.jwl-invest-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .jwl-invest-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.jwl-invest-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.jwl-invest-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.jwl-invest-cards {
  display: grid;
  gap: var(--space-md);
}

.jwl-invest-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.jwl-invest-card-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.jwl-invest-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-xs);
}

.jwl-invest-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--medium-brown);
  margin: 0;
}

/* Jewelry Market */
.jwl-market {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.jwl-market-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .jwl-market-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.jwl-market-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.jwl-market-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.jwl-market-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.jwl-market-highlight {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.jwl-market-highlight span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.jwl-market-highlight h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-xs);
}

.jwl-market-highlight p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--medium-brown);
  margin: 0;
}

/* Jewelry Tips */
.jwl-tips {
  padding: var(--space-3xl) 0;
}

.jwl-tips-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .jwl-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.jwl-tips-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(139, 111, 71, 0.08);
  box-shadow: var(--shadow-sm);
}

.jwl-tips-card .benefit-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-sm);
}

.jwl-tips-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-sm);
}

.jwl-tips-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
}

/* Jewelry Regions */
.jwl-regions {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.jwl-regions-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.jwl-regions-text strong {
  color: var(--dark-brown);
}

/* ===== Homepage Escrow Section ===== */
.home-escrow {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #F5F0E8 0%, var(--cream) 100%);
}

.home-escrow-layout {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 1024px) {
  .home-escrow-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.home-escrow-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--dark-brown);
  margin-bottom: var(--space-lg);
  line-height: 1.25;
}

.home-escrow-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.home-escrow-cards {
  display: grid;
  gap: var(--space-md);
}

.home-escrow-card {
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(139, 111, 71, 0.08);
}

.home-escrow-card-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-xs);
}

.home-escrow-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin-bottom: var(--space-xs);
}

.home-escrow-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--medium-brown);
  margin: 0;
}

/* ================================================
   Blog Article
   ================================================ */
.blog-article {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--space-2xl) 0;
}

.blog-article h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark-brown);
  margin: var(--space-2xl) 0 var(--space-md);
  padding-top: var(--space-md);
}

.blog-article h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin: var(--space-xl) 0 var(--space-sm);
}

.blog-article h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin: var(--space-lg) 0 var(--space-xs);
}

.blog-article p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: 1.02rem;
}

.blog-article ul,
.blog-article ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
  font-size: 1.02rem;
}

.blog-article li {
  margin-bottom: var(--space-xs);
}

.blog-toc {
  background: var(--glass-bg);
  border: 1px solid rgba(139, 111, 71, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.blog-toc h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark-brown);
  margin: 0 0 var(--space-md);
}

.blog-toc ol {
  list-style: decimal;
  padding-left: var(--space-lg);
  margin: 0;
}

.blog-toc li {
  margin-bottom: var(--space-xs);
}

.blog-toc a {
  color: var(--brown);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-toc a:hover {
  color: var(--gold);
}

.blog-cta-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(184, 115, 51, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  text-align: center;
}

.blog-cta-box h3 {
  margin-top: 0;
  color: var(--dark-brown);
}

.blog-cta-box p {
  color: var(--medium-brown);
  margin-bottom: var(--space-md);
}

.blog-cta-box .btn {
  display: inline-flex;
}

.blog-info-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--space-lg);
  margin: var(--space-lg) 0;
}

.blog-info-box p {
  margin-bottom: 0;
  color: var(--medium-brown);
}

.blog-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.95rem;
}

.blog-comparison-table th,
.blog-comparison-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid rgba(139, 111, 71, 0.12);
}

.blog-comparison-table th {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(184, 115, 51, 0.05) 100%);
  color: var(--dark-brown);
  font-weight: 600;
  font-family: var(--font-heading);
}

.blog-comparison-table td {
  color: var(--medium-brown);
}

.blog-comparison-table tr:hover td {
  background: rgba(212, 175, 55, 0.04);
}

@media (max-width: 768px) {
  .blog-article {
    padding: var(--space-xl) 0;
  }
  .blog-article h2 {
    font-size: 1.35rem;
  }
  .blog-comparison-table {
    display: block;
    overflow-x: auto;
  }
}
