/* ============================================
   PRO.DOM Landing Page — Style
   Minimalist & Airy, White-Green Palette
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap");

/* --- CSS Variables --- */
:root {
  --green-900: #0d3b2e;
  --green-800: #145a44;
  --green-700: #1a7a5a;
  --green-600: #1f9a6f;
  --green-500: #27ae60;
  --green-400: #4ec78a;
  --green-300: #7edba5;
  --green-200: #b8eacc;
  --green-100: #e0f5ea;
  --green-50: #f2faf6;

  --white: #ffffff;
  --gray-50: #fafbfc;
  --gray-100: #f3f5f7;
  --gray-200: #e8ecf0;
  --gray-300: #d1d8df;
  --gray-400: #9aa5b1;
  --gray-500: #6b7a8d;
  --gray-600: #4a5568;
  --gray-700: #2d3748;
  --gray-800: #1a202c;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.1);
  --shadow-green: 0 8px 30px rgba(39, 174, 96, 0.15);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

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

/* --- Section base --- */
.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 1.5px solid var(--green-300);
}

.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-500);
}

.btn-white {
  background: var(--white);
  color: var(--green-800);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===========================================
   HEADER / NAVBAR
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--green-600);
}

.logo .logo-dot {
  color: var(--green-500);
  font-size: 28px;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition-fast);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
  transition: var(--transition);
}

.nav a:hover {
  color: var(--green-700);
}

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

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  color: var(--green-600);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: linear-gradient(160deg, var(--white) 0%, var(--green-50) 50%, var(--green-100) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--green-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green-700);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 58px);
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--green-600);
}

.hero-text {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

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

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-value span {
  color: var(--green-600);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

/* Hero image area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-inner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-inner img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.hero-float-card.card-1 {
  bottom: 40px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-float-card.card-1 .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-card.card-1 .icon-circle svg {
  width: 22px;
  height: 22px;
  color: var(--green-600);
}

.hero-float-card.card-1 .card-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

.hero-float-card.card-1 .card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
}

.hero-float-card.card-2 {
  top: 40px;
  right: -30px;
  animation-delay: -2s;
}

.hero-float-card.card-2 .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
}

.hero-float-card.card-2 .stars svg {
  width: 16px;
  height: 16px;
  color: #f5a623;
}

.hero-float-card.card-2 .review-text {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

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

/* ===========================================
   SERVICES
   =========================================== */
.services {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
  cursor: default;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-100);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--green-600);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===========================================
   ARCTIC MORTGAGE
   =========================================== */
.arctic {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.arctic::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.arctic .section-label {
  color: var(--green-300);
}

.arctic .section-label::before {
  background: var(--green-400);
}

.arctic .section-title {
  color: var(--white);
}

.arctic-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.arctic-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.arctic-conditions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.arctic-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}

.arctic-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.arctic-card-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.arctic-card-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.arctic-categories {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.arctic-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.arctic-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.arctic-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.arctic-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.arctic-item-icon svg {
  color: var(--green-300);
}

.arctic-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.arctic-item-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.arctic-cta {
  margin-top: 28px;
  background: var(--white);
  color: var(--green-800);
}

.arctic-cta:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .arctic-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .arctic-conditions {
    grid-template-columns: repeat(2, 1fr);
  }

  .arctic-categories {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .arctic-conditions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ===========================================
   OBJECTS (CRM)
   =========================================== */
.objects {
  background: var(--gray-50);
}

.objects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

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

.object-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.object-image {
  position: relative;
  height: 200px;
  background: var(--gray-200);
  overflow: hidden;
}

.object-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.object-image img.img-loading {
  opacity: 0.3;
}

.object-image .img-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.object-card:hover .object-image img:not(.img-loading) {
  transform: scale(1.05);
}

.object-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--green-600);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
  z-index: 2;
}

/* Image navigation arrows */
.img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.img-nav svg {
  color: var(--gray-700);
}

.img-nav:hover {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.object-card:hover .img-nav,
.object-card .img-nav:focus {
  opacity: 1;
}

.img-prev {
  left: 10px;
}

.img-next {
  right: 10px;
}

/* Always visible on touch devices */
@media (hover: none) {
  .img-nav {
    opacity: 1;
    width: 32px;
    height: 32px;
  }
}

.object-body {
  padding: 20px 24px;
}

.object-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.object-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
}

.object-address {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.object-address svg {
  width: 14px;
  height: 14px;
  color: var(--green-500);
  flex-shrink: 0;
}

.object-features {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.object-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.object-feature svg {
  width: 16px;
  height: 16px;
  color: var(--gray-400);
}

/* ===========================================
   ADVANTAGES
   =========================================== */
.advantages {
  background: var(--white);
}

.advantages-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.advantage-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.advantage-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-50);
  border: 2px solid var(--green-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-600);
  transition: var(--transition);
}

.advantage-item:hover .advantage-number {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.advantage-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.advantage-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.advantages-visual {
  position: relative;
}

.advantages-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.advantages-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.advantages-counter {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--green-600);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-green);
}

.advantages-counter .counter-value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.advantages-counter .counter-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

/* ===========================================
   TEAM (REALTORS)
   =========================================== */
.team {
  background: var(--gray-50);
}

.team-header {
  text-align: center;
  margin-bottom: 48px;
}

.team-header .section-subtitle {
  margin: 0 auto;
}

/* Slider wrapper */
.team-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.team-slider {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-lg);
}

.team-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

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

/* Nav buttons */
.team-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.team-nav:hover {
  background: var(--green-50);
  border-color: var(--green-400);
  box-shadow: var(--shadow-md);
}

.team-nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.team-nav:disabled:hover {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.team-nav svg {
  color: var(--gray-600);
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-100);
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--green-200);
  transition: var(--transition);
}

.team-card:hover .team-avatar {
  border-color: var(--green-500);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-avatar .avatar-placeholder {
  width: 100%;
  height: 100%;
}

.team-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-card .team-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-700);
  padding: 8px 20px;
  background: var(--green-50);
  border-radius: 100px;
  transition: var(--transition-fast);
}

.team-contact:hover {
  background: var(--green-100);
}

.team-contact svg {
  width: 16px;
  height: 16px;
}

/* ===========================================
   REVIEWS
   =========================================== */
.reviews {
  background: var(--white);
}

.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header .section-subtitle {
  margin: 0 auto;
}

.reviews-widget {
  max-width: 900px;
  margin: 0 auto;
}

/* ===========================================
   CTA SECTION
   =========================================== */
.cta {
  padding: 100px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-box::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.cta-phone {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.cta-phone a {
  color: var(--white);
  transition: var(--transition-fast);
}

.cta-phone a:hover {
  opacity: 0.85;
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 60px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 5px 0;
  transition: var(--transition-fast);
}

.footer-col a:hover {
  color: var(--green-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-500);
}

/* ===========================================
   ANIMATIONS (scroll reveal)
   =========================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.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;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ===========================================
   MOBILE MENU OVERLAY
   =========================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-700);
}

.mobile-menu .close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu .close-menu svg {
  width: 24px;
  height: 24px;
  color: var(--gray-600);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-float-card.card-1 {
    left: 0;
    bottom: 20px;
  }

  .hero-float-card.card-2 {
    right: 0;
    top: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .objects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .advantages-visual {
    order: -1;
  }

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

  .team-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-float-card {
    display: none;
  }

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

  .objects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .objects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-slider-wrapper {
    gap: 8px;
  }

  .team-nav {
    width: 36px;
    height: 36px;
  }

  .team-nav svg {
    width: 16px;
    height: 16px;
  }

  .team-card {
    flex: 0 0 calc(100% - 0px);
    padding: 32px 24px 28px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===========================================
   CATALOG PAGE (/objects)
   =========================================== */
.objects-page {
  padding-top: 88px;
  padding-bottom: 60px;
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  padding: 28px 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-sep {
  color: var(--gray-400);
  font-size: 14px;
}

.filter-input {
  width: 120px;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}

.filter-input:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.filter-input::placeholder {
  color: var(--gray-400);
}

/* Hide number spinners */
.filter-input::-webkit-outer-spin-button,
.filter-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filter-input[type="number"] {
  -moz-appearance: textfield;
}

.filter-rooms {
  display: flex;
  gap: 6px;
}

.room-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-btn:hover {
  border-color: var(--green-400);
  color: var(--green-700);
}

.room-btn.active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
}

.filter-actions {
  flex-direction: row;
  gap: 8px;
  align-self: flex-end;
}

.catalog-meta {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 20px;
  font-weight: 500;
}

.catalog-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  color: var(--gray-400);
  font-size: 15px;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--green-500);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.catalog-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--gray-400);
  font-size: 16px;
}

.catalog-more {
  text-align: center;
  padding: 40px 0 0;
}

@media (max-width: 768px) {
  .catalog-filters {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
  }

  .filter-input {
    width: 100%;
  }

  .filter-rooms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    width: 100%;
  }

  .room-btn {
    width: 100%;
    height: 44px;
  }

  .filter-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .filter-actions .btn {
    width: 100%;
  }
}
