/* ═══════════════════════════════════════════════════════════════
   LUXEESTATE — Design System
   Palette: Copper & Slate
   Typography: Cormorant Garamond + Plus Jakarta Sans
═══════════════════════════════════════════════════════════════ */

:root {
  --copper:        #B87333;
  --copper-light:  #D4A574;
  --copper-dark:   #8B5A1E;
  --slate:         #2F3640;
  --slate-light:   #3D4A57;
  --slate-dark:    #1A2028;
  --cream:         #F5F0EB;
  --cream-dark:    #EDE5D8;
  --white:         #FFFFFF;
  --text-primary:  #1A1A1A;
  --text-secondary:#5A5A5A;
  --text-muted:    #8A8A8A;
  --border:        rgba(184,115,51,0.15);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.14);
  --shadow-copper: 0 8px 32px rgba(184,115,51,0.25);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --nav-h:         80px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 3px; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
em { font-style: italic; color: var(--copper); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-copper {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--copper);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-copper::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-copper:hover { background: var(--copper-dark); transform: translateY(-2px); box-shadow: var(--shadow-copper); }
.btn-copper:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--slate);
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--copper); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--slate);
  color: var(--slate);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--slate); color: var(--white); }

.btn-large { padding: 16px 36px; font-size: 1rem; }

/* ─── Section Shared ─────────────────────────────────────────── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper);
  background: rgba(184,115,51,0.08);
  border: 1px solid rgba(184,115,51,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title { margin-bottom: 20px; color: var(--slate-dark); }
.section-desc { font-size: 1.05rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ─── Reveal Animations ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav-header.scrolled {
  background: rgba(245,240,235,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--slate-dark);
  flex-shrink: 0;
}
.logo-icon { color: var(--copper); font-size: 1.3rem; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--copper); background: rgba(184,115,51,0.06); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: var(--radius-sm);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--slate);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,32,40,0.82) 0%,
    rgba(47,54,64,0.65) 50%,
    rgba(26,32,40,0.45) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px 40px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,115,51,0.15);
  border: 1px solid rgba(184,115,51,0.4);
  color: var(--copper-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--copper-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.title-outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.6);
  color: transparent;
}
.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  width: fit-content;
}
.stat-item { text-align: center; padding: 0 28px; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.hero-search {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 60px;
}
.search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.search-tab {
  padding: 16px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
}
.search-tab.active { color: var(--copper); border-bottom-color: var(--copper); }
.search-tab:hover { color: var(--copper); }
.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  padding: 20px 24px;
  align-items: end;
}
.search-field { padding: 0 16px; border-right: 1px solid var(--border); }
.search-field:first-child { padding-left: 0; }
.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.search-field input,
.search-field select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: transparent;
  padding: 4px 0;
  appearance: none;
}
.search-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--copper);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  margin-left: 16px;
}
.search-btn:hover { background: var(--copper-dark); transform: translateY(-1px); box-shadow: var(--shadow-copper); }
.hero-scroll-hint {
  position: absolute; bottom: 200px; right: 48px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.4; }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════════ */
.features {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.features::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light), var(--copper));
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--white);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.feature-card:hover { background: var(--cream); transform: translateY(-4px); box-shadow: var(--shadow-md); z-index: 1; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px;
  background: rgba(184,115,51,0.08);
  border: 1px solid rgba(184,115,51,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  margin-bottom: 24px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}
.feature-card h3 {
  font-size: 1.25rem;
  color: var(--slate-dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feature-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
  display: inline-flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.feature-link span { transition: transform 0.3s; }
.feature-link:hover span { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   PROPERTIES
═══════════════════════════════════════════════════════════════ */
.properties {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.properties-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 700;
  color: rgba(184,115,51,0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.property-card--featured {
  grid-row: span 1;
  border: 2px solid var(--copper);
}
.property-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.property-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.property-card:hover .property-img-wrap img { transform: scale(1.06); }
.property-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.property-badge--hot { background: #E53E3E; }
.property-type {
  position: absolute; top: 16px; right: 16px;
  background: rgba(26,32,40,0.7);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.property-info { padding: 24px; }
.property-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 6px;
}
.property-price span { font-size: 1rem; color: var(--text-muted); }
.property-name {
  font-size: 1.1rem;
  color: var(--slate-dark);
  margin-bottom: 8px;
}
.property-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.property-specs {
  display: flex; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.property-specs span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 100px;
}
.properties-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute; top: -40px; left: 5%;
  font-family: var(--font-display);
  font-size: 400px;
  color: rgba(184,115,51,0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonials .section-tag { background: rgba(184,115,51,0.15); border-color: rgba(184,115,51,0.3); }
.testimonials .section-title { color: var(--white); }
.carousel-wrapper { position: relative; }
.carousel-track {
  display: flex;
  gap: 28px;
  overflow: hidden;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,115,51,0.3);
  transform: translateY(-4px);
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--copper);
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--copper);
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}
.testimonial-stars {
  margin-left: auto;
  color: var(--copper-light);
  font-size: 0.85rem;
  letter-spacing: 2px;
}
.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 48px;
}
.carousel-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--copper); border-color: var(--copper); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-dot.active { background: var(--copper); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════ */
.pricing {
  padding: 120px 0;
  background: var(--white);
}
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 56px;
}
.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.toggle-label.active { color: var(--text-primary); font-weight: 600; }
.toggle-switch {
  width: 52px; height: 28px;
  background: var(--cream-dark);
  border-radius: 100px;
  position: relative;
  transition: background 0.3s;
}
.toggle-switch.on { background: var(--copper); }
.toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.toggle-switch.on .toggle-thumb { transform: translateX(24px); }
.save-badge {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(184,115,51,0.12);
  color: var(--copper);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
  background: var(--slate-dark);
  border-color: var(--copper);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--copper);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.plan-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--copper);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 32px; }
.plan-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.plan-price {
  display: flex; align-items: baseline; gap: 2px;
  margin-bottom: 12px;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-secondary);
  align-self: flex-start;
  margin-top: 8px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--slate-dark);
  line-height: 1;
  transition: var(--transition);
}
.pricing-card--featured .price-amount,
.pricing-card--featured .price-currency { color: var(--white); }
.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 4px;
}
.pricing-card--featured .price-period { color: rgba(255,255,255,0.5); }
.plan-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pricing-card--featured .plan-desc { color: rgba(255,255,255,0.6); }
.plan-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.pricing-card--featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-features li.disabled { opacity: 0.4; }
.check { color: var(--copper); font-weight: 700; }
.cross { color: var(--text-muted); }
.plan-btn { width: 100%; justify-content: center; }
.pricing-card--featured .btn-outline-dark {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.pricing-card--featured .btn-outline-dark:hover {
  background: rgba(255,255,255,0.1);
}
.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,32,40,0.92) 0%, rgba(47,54,64,0.85) 100%);
}
.cta-content {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cta-content .section-tag { margin-bottom: 20px; }
.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.cta-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus { border-color: var(--copper); background: rgba(255,255,255,0.12); }
.cta-form button {
  grid-column: 1 / -1;
  justify-content: center;
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--slate-dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px 60px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-text { color: var(--white); }
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--copper); border-color: var(--copper); color: var(--white); }
.footer-links-group h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links-group a:hover { color: var(--copper-light); padding-left: 4px; }
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-contact p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; color: var(--copper); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--copper-light); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonial-card { flex: 0 0 calc(50% - 14px); }
  .hero-scroll-hint { display: none; }
  .search-fields { grid-template-columns: 1fr 1fr; gap: 16px; }
  .search-btn { grid-column: 1 / -1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* Nav */
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(245,240,235,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: 20px 24px 32px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-stats {
    flex-direction: column; gap: 16px;
    padding: 20px 24px;
    width: 100%;
  }
  .stat-divider { width: 100%; height: 1px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-copper, .hero-cta .btn-outline-light { width: 100%; justify-content: center; }

  /* Search */
  .search-fields { grid-template-columns: 1fr; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 16px; }
  .search-field:last-of-type { border-bottom: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 28px 24px; }

  /* Properties */
  .properties-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; }

  /* Pricing */
  .pricing-card { padding: 32px 24px; }

  /* CTA Form */
  .cta-form { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* Sections */
  .features, .properties, .testimonials, .pricing, .cta-band { padding: 80px 0; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero-content { padding: 60px 20px 32px; }
  .hero-search { padding: 0 20px 48px; }
  .section-container { padding: 0 20px; }
  .hero-stats { display: none; }
}