/* ===================================
   WEREHERE - Global Reset & Variables
   =================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a5c2e;
  --green-dark: #0f3d1e;
  --green-light: #1f6e35;
  --black: #111111;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --tag-bg: #f0f0f0;
  --tag-color: #555;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', 'Inter', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===================================
   TAGS
   =================================== */
.tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  margin-bottom: 16px;
}
.tag.light {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  background: transparent;
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--black);
  flex-shrink: 0;
}
.nav-logo svg { flex-shrink: 0; }

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--black);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.btn-consult {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-consult .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.btn-consult:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 0 60px;
  overflow: hidden;
  margin: 76px 35px 12px;
  border-radius: 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a1a2e;
  border-radius: 24px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 400;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 56px;
}
.btn-hero:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num sup {
  font-size: 18px;
  font-weight: 700;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
}



.hero-notice {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  white-space: nowrap;
}

/* ===================================
   SECTION COMMON
   =================================== */
section { padding: 96px 0; }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }

.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}
.section-title.underline {
  display: inline-block;
  border-bottom: 3px solid var(--black);
  padding-bottom: 4px;
}

.section-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 520px;
}
.section-text-sm {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about { background: var(--white); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-left {
  padding-top: 16px;
}

.about-card {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition), opacity 0.25s ease, transform 0.25s ease;
  opacity: 1;
  transform: translateY(0);
}
.about-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.about-card-icon {
  margin-bottom: 14px;
}
.about-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.about-card-text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}

.about-right {
  position: relative;
}

.about-slider {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 420px;
  background: var(--gray-200);
}
.about-slide {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-slide.active {
  display: block;
}
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-number {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.num-big {
  font-size: 48px;
  font-weight: 900;
  color: white;
  line-height: 1;
  opacity: 0.9;
}
.num-label {
  font-size: 14px;
  font-weight: 600;
  color: white;
  padding-bottom: 8px;
}

.about-slider-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.slider-prev, .slider-next {
  width: 36px; height: 36px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: var(--transition);
  background: var(--white);
  flex-shrink: 0;
}
.slider-prev:hover, .slider-next:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.slider-tabs {
  display: flex;
  gap: 0;
  overflow: hidden;
}
.stab {
  padding: 8px 16px;
  font-size: 11px;
  color: var(--gray-400);
  border: 1px solid var(--gray-200);
  border-right: none;
  background: var(--white);
  text-align: center;
  line-height: 1.5;
  transition: var(--transition);
  cursor: pointer;
}
.stab:first-child { border-radius: 6px 0 0 6px; }
.stab:last-child { border-radius: 0 6px 6px 0; border-right: 1px solid var(--gray-200); }
.stab.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.stab:hover:not(.active) { background: var(--gray-100); }

.stab-vertical { display: block; }

/* ===================================
   SERVICES / DIFFERENCE SECTION
   =================================== */
.services { background: var(--gray-50); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--black);
}
.service-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ===================================
   PROPERTIES SECTION
   =================================== */
.properties { background: var(--white); }

.property-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.property-divider {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 48px 0;
}

.property-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}

/* 첫 번째 아이템: 이미지를 태그+제목에 수직 정렬 */
.property-item:first-child {
  align-items: flex-start;
}

.property-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}
.property-section-header .tag {
  margin-bottom: 0;
}
.property-section-header .section-title {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 0;
  text-align: left;
}

.property-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 320px;
  box-shadow: var(--shadow);
  background: var(--gray-200);
}
.property-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.property-img:hover img { transform: scale(1.03); }

.property-tag {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 10px;
  font-weight: 400;
}
.property-info h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--black);
}
.property-list-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.property-list-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.check {
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}
.btn-outline svg { transition: transform 0.3s; }
.btn-outline:hover svg { transform: translateX(3px); }

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy { background: var(--gray-50); }
.philosophy .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.philosophy-left { padding-top: 16px; }

.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.ph-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ph-stat .stat-num {
  font-size: 32px;
  color: var(--black);
}
.ph-stat .stat-label {
  font-size: 12px;
  color: var(--gray-500);
}

.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.philosophy-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 280px;
  box-shadow: var(--shadow);
  background: var(--gray-200);
}
.philosophy-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.ph-slide.active {
  opacity: 1;
}
.ph-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.philosophy-img-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.dot-item {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.dot-item.active { background: white; width: 18px; border-radius: 3px; }

.philosophy-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ph-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.ph-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.ph-card-icon {
  margin-bottom: 12px;
}
.ph-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ph-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews { background: var(--white); }
.reviews .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

.reviews-left { padding-top: 8px; }
.reviews-left .section-title {
  font-size: 28px;
  line-height: 1.35;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.review-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.75;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}
.review-avatar { flex-shrink: 0; }
.review-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.review-author span {
  font-size: 12px;
  color: var(--gray-500);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq { background: var(--gray-50); }
.faq .container {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 64px;
  align-items: start;
}

.faq-left { padding-top: 8px; position: sticky; top: 80px; }

.faq-right {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  transition: var(--transition);
  background: none;
  border: none;
}
.faq-question:hover { color: var(--gray-600); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  transition: var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--black);
  border-color: var(--black);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.85;
}
.faq-answer.open { display: block; }

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

.faq-btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.btn-pink {
  display: inline-flex;
  align-items: center;
  background: #ec4899;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-pink:hover { background: #db2777; transform: translateY(-1px); }

.btn-green {
  display: inline-flex;
  align-items: center;
  background: #16a34a;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-green:hover { background: #15803d; transform: translateY(-1px); }

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  background: var(--green);
  padding: 96px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  margin-top: 8px;
}
.contact-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* Tally Embed */
.tally-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 8px 0;
}
.tally-wrap iframe {
  display: block;
  border: none;
  width: 100%;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full {
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}
.req { color: #dc2626; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray-600);
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  cursor: pointer;
  accent-color: var(--black);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-submit {
  background: var(--black);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-submit:hover {
  background: var(--gray-800);
  transform: translateY(-1px);
}

.form-powered {
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #0a0a0a;
  padding: 48px 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo { color: white; }

.footer-phone, .footer-email {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.footer-addr {
  font-size: 12px;
  margin-top: 4px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===================================
   TOAST NOTIFICATION
   =================================== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--black);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 900px) {
  .about .container,
  .philosophy .container,
  .reviews .container,
  .faq .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .property-item { grid-template-columns: 1fr; gap: 24px; }
  .property-img { max-width: 100%; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .btn-consult { display: none; }
  .hero-title { font-size: 36px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
  .faq-left { position: static; }
  .reviews-grid { grid-template-columns: 1fr; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; align-items: flex-start; }
  .footer-right { align-items: flex-start; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .hero-agents { display: none; }
  .hero-title { font-size: 30px; }
  .philosophy-stats { grid-template-columns: 1fr 1fr; }
}

/* ===================================
   MOBILE MENU
   =================================== */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: white;
  padding: 24px 32px;
  gap: 24px;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999;
}
.nav-menu.open .btn-consult-mobile {
  display: block;
}
