/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; font-size: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #1066f3;
  --primary-light: #e8f1fe;
  --primary-dark: #0a4fbd;
  --accent: #f97316;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.05);
  --section-gap: 100px;
  --container: 1100px;
}

/* ===== UTILITY ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--primary);
  background: var(--primary-light); padding: 6px 14px; border-radius: 20px;
  letter-spacing: 0.02em; margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 36px); font-weight: 800; line-height: 1.3;
  color: var(--gray-900); margin-bottom: 16px; letter-spacing: -0.03em;
}
.section-desc {
  font-size: 17px; color: var(--gray-500); line-height: 1.8; max-width: 560px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== STICKY NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, background 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-size: 18px; font-weight: 800; color: var(--gray-900);
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--gray-500);
  transition: color 0.2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--gray-900); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--primary); border-radius: 1px; transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--primary); color: #fff; border: none; padding: 10px 22px;
  border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(16,102,243,0.3);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(16,102,243,0.35); }
.nav-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--gray-700); padding: 4px;
}
.nav-mobile-toggle .material-symbols-outlined { font-size: 28px; }

/* ===== 1. HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #112240 40%, #1a3a6a 100%);
  overflow: hidden; padding-top: 64px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(16,102,243,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(16,102,243,0.08) 0%, transparent 50%);
}
.hero-grid-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2; max-width: var(--container); margin: 0 auto;
  padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 8px 16px; border-radius: 24px; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.8); margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge .pulse {
  width: 8px; height: 8px; background: #4ade80; border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title {
  font-size: clamp(36px, 5.5vw, 56px); font-weight: 800; line-height: 1.2;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.8;
  margin-bottom: 36px; max-width: 440px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; border: none;
  padding: 16px 32px; border-radius: 14px; font-weight: 700; font-size: 16px;
  cursor: pointer; transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(16,102,243,0.4);
}
.btn-hero-primary:hover { background: #2979ff; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,102,243,0.45); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 28px; border-radius: 14px; font-weight: 600; font-size: 16px;
  cursor: pointer; transition: all 0.25s; backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num { font-size: 28px; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; padding: 40px; backdrop-filter: blur(20px);
  width: 100%; max-width: 400px;
}
.hero-profile-wrap { text-align: center; }
.hero-profile-img {
  width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-light), #dbeafe);
  display: flex; align-items: center; justify-content: center;
  border: 4px solid rgba(255,255,255,0.15);
  overflow: hidden;
}
/* 여기에 프로필 사진 URL 입력 -->
.hero-profile-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-profile-img .material-symbols-outlined { font-size: 56px; color: var(--primary); opacity: 0.5; }
.hero-profile-name { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hero-profile-role { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.hero-profile-info {
  display: flex; flex-direction: column; gap: 12px;
  background: rgba(255,255,255,0.04); border-radius: 14px; padding: 20px;
}
.hero-profile-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.hero-profile-row .material-symbols-outlined { font-size: 18px; color: var(--primary); opacity: 0.8; }

/* ===== 2. ABOUT ===== */
.about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.about-tag {
  background: #fff; border: 1px solid var(--gray-200); padding: 8px 18px;
  border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--gray-700);
  transition: all 0.2s;
}
.about-tag:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.about-text { font-size: 16px; color: var(--gray-600); line-height: 1.9; }
.about-cards { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--gray-200); transition: all 0.3s;
  display: flex; gap: 20px; align-items: flex-start;
}
.about-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); transform: translateY(-2px); }
.about-card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--primary-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-card-icon .material-symbols-outlined { font-size: 24px; color: var(--primary); }
.about-card-title { font-size: 16px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.about-card-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ===== 3. LISTINGS ===== */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.listing-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gray-200); transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.listing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.listing-img {
  position: relative; height: 200px; overflow: hidden;
  background: var(--gray-100);
}
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.listing-card:hover .listing-img img { transform: scale(1.06); }
.listing-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--primary); color: #fff; padding: 5px 12px;
  border-radius: 8px; font-size: 12px; font-weight: 700;
}
.listing-badge.sold { background: var(--gray-400); }
.listing-badge.new { background: var(--accent); }
.listing-body { padding: 22px; }
.listing-type { font-size: 12px; font-weight: 600; color: var(--primary); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.listing-name { font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.listing-loc { font-size: 13px; color: var(--gray-400); margin-bottom: 14px; display: flex; align-items: center; gap: 4px; }
.listing-loc .material-symbols-outlined { font-size: 15px; }
.listing-price { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; letter-spacing: -0.02em; }
.listing-price .unit { font-size: 14px; font-weight: 500; color: var(--gray-400); margin-left: 2px; }
.listing-meta { display: flex; gap: 16px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.listing-meta-item { font-size: 13px; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }
.listing-meta-item .material-symbols-outlined { font-size: 16px; color: var(--gray-400); }

/* ===== 4. MARKET ===== */
.market { background: var(--gray-50); }
.market-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; }
.market-embed {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200);
  overflow: hidden; min-height: 360px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.market-embed-placeholder {
  text-align: center; padding: 40px; color: var(--gray-400);
}
.market-embed-placeholder .material-symbols-outlined { font-size: 48px; margin-bottom: 12px; display: block; color: var(--gray-300); }
.market-embed-placeholder p { font-size: 14px; }
/* 여기에 리얼단지 iframe URL 입력 -->
.market-embed iframe { width: 100%; height: 100%; min-height: 360px; border: none; }
.market-table-wrap {
  background: #fff; border-radius: var(--radius); border: 1px solid var(--gray-200);
  overflow: hidden;
}
.market-table-header {
  padding: 24px 28px; border-bottom: 1px solid var(--gray-100);
  font-size: 16px; font-weight: 700; color: var(--gray-800);
}
.market-table { width: 100%; border-collapse: collapse; }
.market-table th {
  text-align: left; padding: 14px 28px; font-size: 13px; font-weight: 600;
  color: var(--gray-400); border-bottom: 1px solid var(--gray-100);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.market-table td {
  padding: 16px 28px; font-size: 15px; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-50);
}
.market-table tr:last-child td { border-bottom: none; }
.market-table tr:hover td { background: var(--gray-50); }
.price-up { color: #ef4444; font-weight: 600; }
.price-down { color: #3b82f6; font-weight: 600; }
.market-table .apt-name { font-weight: 600; color: var(--gray-800); }

/* ===== 5. AREA ===== */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 48px; }
.area-map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200);
  min-height: 380px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
/* 여기에 카카오맵 iframe 또는 지도 API 입력 -->
.area-map iframe { width: 100%; height: 380px; border: none; }
.area-map-placeholder { text-align: center; color: var(--gray-400); padding: 40px; }
.area-map-placeholder .material-symbols-outlined { font-size: 48px; display: block; margin-bottom: 12px; color: var(--gray-300); }
.area-info {}
.area-info h3 { font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.area-info p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.area-features { display: flex; flex-direction: column; gap: 14px; }
.area-feature {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px;
  background: var(--gray-50); border-radius: var(--radius-sm);
}
.area-feature-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.area-feature-icon .material-symbols-outlined { font-size: 20px; color: var(--primary); }
.area-feature-title { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.area-feature-desc { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* ===== 6. REVIEWS ===== */
.reviews { background: var(--gray-50); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 48px; }
.review-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--gray-200); transition: all 0.3s;
  position: relative;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-quote {
  position: absolute; top: 24px; right: 28px;
  font-size: 48px; line-height: 1; color: var(--primary); opacity: 0.1;
  font-family: Georgia, serif; font-weight: 700;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-stars .material-symbols-outlined { font-size: 18px; color: #fbbf24; font-variation-settings: 'FILL' 1; }
.review-text { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--gray-400);
}
.review-name { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.review-date { font-size: 12px; color: var(--gray-400); }

/* ===== 7. CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 600; color: var(--gray-700);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 15px; color: var(--gray-800);
  background: var(--gray-50); transition: all 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(16,102,243,0.08);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-300); }
.btn-submit {
  width: 100%; padding: 16px; background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius-sm); font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(16,102,243,0.25);
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.contact-side {}
.contact-channels { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px; padding: 20px;
  background: var(--gray-50); border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200); cursor: pointer; transition: all 0.25s;
  text-decoration: none;
}
.contact-channel:hover { border-color: var(--primary); background: var(--primary-light); transform: translateX(4px); }
.contact-channel-icon {
  width: 48px; height: 48px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-channel-icon.phone { background: #dcfce7; }
.contact-channel-icon.phone .material-symbols-outlined { color: #16a34a; }
.contact-channel-icon.kakao { background: #fef3c7; }
.contact-channel-icon.kakao .material-symbols-outlined { color: #f59e0b; }
.contact-channel-icon.email { background: var(--primary-light); }
.contact-channel-icon.email .material-symbols-outlined { color: var(--primary); }
.contact-channel-icon .material-symbols-outlined { font-size: 24px; }
.contact-channel-text .label { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.contact-channel-text .value { font-size: 16px; font-weight: 600; color: var(--gray-800); }
.contact-hours {
  background: var(--gray-50); border-radius: var(--radius-sm);
  padding: 24px; border: 1px solid var(--gray-200);
}
.contact-hours h4 { font-size: 15px; font-weight: 700; color: var(--gray-800); margin-bottom: 14px; }
.contact-hours-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  font-size: 14px; color: var(--gray-600);
  border-bottom: 1px dashed var(--gray-200);
}
.contact-hours-row:last-child { border: none; }
.contact-hours-row .day { font-weight: 500; }
.contact-hours-row .time { color: var(--gray-800); font-weight: 600; }
.contact-hours-row .closed { color: var(--gray-400); }

/* ===== 8. FOOTER ===== */
.footer {
  background: var(--gray-900); color: rgba(255,255,255,0.5); padding: 60px 0 40px;
}
.footer-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.footer-top { display: flex; justify-content: space-between; align-items: start; gap: 40px; margin-bottom: 40px; }
.footer-brand { }
.footer-logo { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-logo .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; }
.footer-slogan { font-size: 14px; line-height: 1.7; max-width: 340px; }
.footer-links { display: flex; gap: 48px; }
.footer-link-group h5 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-link-group a { display: block; font-size: 14px; color: rgba(255,255,255,0.4); padding: 4px 0; transition: color 0.2s; }
.footer-link-group a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-info { font-size: 12px; line-height: 1.8; }
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px; border-radius: 8px; font-size: 11px; color: rgba(255,255,255,0.4);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; box-shadow: var(--shadow-lg);
}
.fab:hover { transform: scale(1.08); }
.fab-phone { background: #16a34a; color: #fff; }
.fab-kakao { background: #fee500; color: #3c1e1e; }
.fab-top {
  width: 44px; height: 44px; background: #fff; border: 1px solid var(--gray-200);
  color: var(--gray-500);
}
.fab .material-symbols-outlined { font-size: 24px; }
.fab-top .material-symbols-outlined { font-size: 20px; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-card { max-width: 340px; padding: 28px; }
  .hero-profile-img { width: 100px; height: 100px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .market-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .footer-links { gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .listings-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .section-title { font-size: clamp(24px, 5vw, 32px); }
}
@media (max-width: 480px) {
  :root { --container: 100%; }
  .container { padding: 0 16px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 22px; }
  .listings-grid { grid-template-columns: 1fr; }
  .floating-cta { bottom: 16px; right: 16px; }
  .fab { width: 50px; height: 50px; }
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 280px;
  background: #fff; padding: 80px 28px 40px; transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 30px rgba(0,0,0,0.1);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px; background: none;
  border: none; cursor: pointer; color: var(--gray-500); padding: 4px;
}
.mobile-nav-close .material-symbols-outlined { font-size: 28px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav-links a {
  display: block; padding: 14px 16px; font-size: 16px; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius-sm); transition: all 0.2s;
}
.mobile-nav-links a:hover { background: var(--gray-50); color: var(--primary); }
.mobile-nav-cta {
  margin-top: 24px; width: 100%; padding: 14px;
  background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
  cursor: pointer;
}

/* ===== POWERED BY ===== */
.powered-by {
  text-align: center; padding: 16px;
  font-size: 12px; color: rgba(255,255,255,0.25);
  background: var(--gray-900);
}
.powered-by a { color: rgba(255,255,255,0.4); text-decoration: underline; }
.powered-by a:hover { color: rgba(255,255,255,0.7); }
