@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #f97316;
  --primary-dark: #ea6c0a;
  --primary-light: #fff3e8;
  --foreground: #1a1f2e;
  --card: #ffffff;
  --secondary: #f3f4f6;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #fff7ed;
  --success: #16a34a;
  --radius: 12px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 24px -4px rgba(26,31,46,0.08);
  --shadow-hover: 0 8px 32px -4px rgba(26,31,46,0.14);
}

/* ===== RESET & BASE ===== */
*, *::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(--foreground); background: #fff; line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 1.5rem; }
.section--bg { background: var(--secondary); }
.section--dark { background: var(--foreground); }
.section--accent { background: var(--accent); }

/* ===== TYPOGRAPHY ===== */
.section-label {
  display: inline-block;
  background: rgba(249,115,22,0.1);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: #f3f4f6; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.logo-text span { display: block; }
.logo-text .logo-name { font-family: var(--font-heading); font-weight: 800; font-size: 0.8rem; color: var(--foreground); }
.logo-text .logo-city { font-size: 0.7rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: 0.875rem; font-weight: 500; color: var(--foreground); transition: color 0.2s; }
.nav a:hover { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.9rem;
}
.header-phone svg { color: var(--primary); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 500; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.mobile-phone { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-weight: 700; padding: 0.75rem 0; color: var(--foreground); }

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,46,0.75) 0%, rgba(26,31,46,0.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-badge svg { color: var(--primary); fill: var(--primary); width: 14px; height: 14px; }
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 1.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.hero-tag {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-tag svg { color: var(--primary); }
.hero-trust { display: flex; flex-direction: column; gap: 0.5rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: 0.625rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem; font-weight: 500;
}
.hero-trust-item svg { color: var(--primary); flex-shrink: 0; }
.hero-form-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  padding: 2rem;
}
.hero-form-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.25rem; }
.hero-form-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.hero-advance {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.hero-advance-label { font-size: 0.9rem; color: var(--muted); }
.hero-advance-value { font-family: var(--font-heading); font-weight: 900; font-size: 1.4rem; color: var(--primary); }
.hero-advance-sub { font-size: 0.75rem; color: var(--muted); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
input[type=text], input[type=tel], input[type=email], textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--foreground);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
textarea { resize: vertical; min-height: 90px; }
.consent-row { display: flex; align-items: flex-start; gap: 0.625rem; margin-bottom: 1rem; }
.consent-row input[type=checkbox] { margin-top: 2px; accent-color: var(--primary); width: 15px; height: 15px; flex-shrink: 0; }
.consent-row label { font-size: 0.75rem; color: var(--muted); line-height: 1.4; }
.consent-row a { color: var(--primary); text-decoration: underline; }
.slider-wrap { margin-bottom: 1rem; }
.slider-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; display: block; }
.slider-value { color: var(--primary); font-family: var(--font-heading); font-weight: 700; }
input[type=range] {
  width: 100%; height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  appearance: none;
  cursor: pointer;
  border: none;
  box-shadow: none;
  padding: 0;
}
input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(249,115,22,0.4);
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; }

/* ===== STATS ===== */
#stats {
  background: var(--foreground);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 25%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}
.stat-value {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { color: rgba(255,255,255,0.55); font-size: 0.9rem; font-weight: 500; }

/* ===== CALCULATOR ===== */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.calc-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.calc-image img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; }
.calc-image-overlay {
  position: absolute; inset: 0;
  background: rgba(26,31,46,0.65);
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
}
.calc-image-text { text-align: center; }
.calc-image-text p { color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.calc-image-text h3 { color: #fff; font-size: 1.5rem; font-weight: 800; }
.calc-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 2rem;
}
.calc-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.25rem; }
.calc-subtitle { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ===== OBJECTS ===== */
.objects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.object-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.object-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(249,115,22,0.2);
}
.object-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(249,115,22,0.05));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.25s;
}
.object-card:hover .object-icon { background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(249,115,22,0.1)); }
.object-icon svg { color: var(--primary); width: 24px; height: 24px; }
.object-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.375rem; }
.object-card p { font-size: 0.82rem; color: var(--muted); }

/* ===== HOW IT WORKS ===== */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(249,115,22,0.3), var(--primary), rgba(249,115,22,0.3));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  width: calc(50% - 2.5rem);
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.timeline-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; text-align: left; }
.timeline-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.timeline-item:nth-child(odd) .timeline-head { flex-direction: row-reverse; }
.timeline-icon { width: 40px; height: 40px; background: var(--secondary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.timeline-icon svg { width: 20px; height: 20px; color: var(--muted); }
.timeline-content h3 { font-size: 0.95rem; font-weight: 700; }
.timeline-content p { font-size: 0.82rem; color: var(--muted); }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1.25rem;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(249,115,22,0.4);
  ring: 4px solid var(--secondary);
  outline: 4px solid var(--secondary);
  z-index: 1;
}
.hiw-zero {
  margin-top: 3rem;
  background: linear-gradient(135deg, rgba(249,115,22,0.05), var(--accent), rgba(249,115,22,0.05));
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.hiw-zero-num { font-family: var(--font-heading); font-weight: 900; font-size: 3.5rem; color: var(--primary); }
.hiw-zero p { color: var(--muted); max-width: 480px; margin: 0.5rem auto 0; }

/* ===== SALE OPTIONS ===== */
.options-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.option-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  position: relative;
}
.option-card.featured { border: 2px solid var(--primary); }
.option-badge {
  position: absolute;
  top: -12px; left: 1.5rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
}
.option-tag { font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; color: var(--primary); margin-bottom: 0.25rem; }
.option-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.25rem; }
.option-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.option-features { flex: 1; margin-bottom: 1.5rem; }
.option-features li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; padding: 0.4rem 0;
}
.option-features li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.option-con {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}
.option-con li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.78rem; color: var(--muted);
}
.option-con li svg { color: #ef4444; flex-shrink: 0; }

/* ===== CTA BANNER ===== */
.cta-wrap { padding: 4rem 1.5rem; }
.cta-box {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), #f97316, rgba(249,115,22,0.85));
  border-radius: 24px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  color: #fff;
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 1rem;
}
.cta-badge svg { width: 14px; height: 14px; }
.cta-box h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.cta-content { position: relative; z-index: 1; max-width: 600px; }
.cta-action { position: relative; z-index: 1; flex-shrink: 0; }

/* ===== PROBLEMS ===== */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.problem-card {
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.problem-card:nth-child(odd) { background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(249,115,22,0.02)); }
.problem-card:nth-child(even) { background: linear-gradient(135deg, var(--accent), rgba(255,247,237,0.5)); }
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.problem-icon {
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.problem-icon svg { width: 28px; height: 28px; color: var(--primary); }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.82rem; color: var(--muted); }

/* ===== EXAMPLES / CAROUSEL ===== */
.carousel-wrap { max-width: 1000px; margin: 0 auto; }
.carousel-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.carousel-img-wrap { position: relative; }
.carousel-img-wrap img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.carousel-id {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(26,31,46,0.7);
  color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.carousel-controls {
  position: absolute; bottom: 0.75rem; left: 0.75rem; right: 0.75rem;
  display: flex; align-items: center; justify-content: space-between;
}
.carousel-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots { display: flex; gap: 6px; align-items: center; }
.carousel-dot {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.55);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  width: 8px;
}
.carousel-dot.active { width: 24px; background: var(--primary); }
.carousel-info { padding: 1.75rem 2rem; display: flex; flex-direction: column; }
.carousel-addr-label { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.25rem; }
.carousel-addr { font-weight: 700; margin-bottom: 1rem; }
.carousel-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.carousel-meta-item .label { font-size: 0.72rem; color: var(--muted); }
.carousel-meta-item .val { font-weight: 700; font-size: 0.9rem; }
.carousel-features { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.carousel-badge {
  background: var(--secondary);
  color: var(--muted);
  font-size: 0.72rem; font-weight: 500;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
}
.carousel-price-label { font-size: 0.78rem; color: var(--muted); }
.carousel-price { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; margin-bottom: 0.75rem; }
.carousel-story {
  background: var(--secondary);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  flex: 1;
}
.carousel-story-label { font-size: 0.7rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.375rem; }
.carousel-story p { font-size: 0.8rem; color: var(--foreground); line-height: 1.5; }
.carousel-result {
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 10px;
  padding: 0.875rem 1rem;
}
.carousel-result-row { display: flex; justify-content: space-between; align-items: center; }
.carousel-result-row:first-child { margin-bottom: 0.25rem; }
.carousel-result-row .label { font-size: 0.82rem; color: var(--muted); }
.carousel-result-row .val-primary { font-family: var(--font-heading); font-weight: 800; color: var(--primary); }
.carousel-result-row .val-big { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.25s;
}
.team-card:hover { transform: translateY(-8px); border-color: rgba(249,115,22,0.2); }
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 240px; object-fit: cover; object-position: top; transition: transform 0.7s; }
.team-card:hover .team-img-wrap img { transform: scale(1.08); }
.team-exp-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}
.team-body { padding: 1.25rem; }
.team-body h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.25rem; }
.team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-bottom: 0.5rem; }
.team-desc { font-size: 0.78rem; color: var(--muted); }

/* ===== ADVANTAGES ===== */
.adv-advance {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: inline-block;
  padding: 1rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.adv-advance .label { color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; }
.adv-advance .amount { color: #fff; font-family: var(--font-heading); font-weight: 900; font-size: 2rem; display: block; }
.adv-advance .sublabel { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.adv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.5rem;
  transition: background 0.2s;
}
.adv-card:hover { background: rgba(255,255,255,0.08); }
.adv-card svg { color: var(--primary); width: 32px; height: 32px; margin-bottom: 0.75rem; }
.adv-card h3 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.adv-card p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto 2.5rem; display: flex; flex-direction: column; gap: 0.875rem; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-hover); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  gap: 1rem;
}
.faq-question span { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; color: var(--foreground); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* ===== CONTACTS ===== */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.2s;
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-hover); }
.contact-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-card-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.2rem; }
.contact-card-value { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; }
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-form-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 130px; height: 130px;
  background: rgba(249,115,22,0.05);
  border-radius: 50%;
}
.contact-form-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.25rem; }
.contact-form-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--foreground);
  color: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 3.5rem 1.5rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.82rem; margin-top: 1rem; line-height: 1.6; color: rgba(255,255,255,0.4); }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 1.25rem; }
.footer-col nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col nav a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col nav a:hover { color: var(--primary); }
.footer-contacts { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary); }
.scroll-top {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
}
.scroll-top:hover { background: var(--primary); border-color: var(--primary); }
.scroll-top svg { width: 16px; height: 16px; color: rgba(255,255,255,0.4); }
.scroll-top:hover svg { color: #fff; }

/* ===== FLOATING CTA ===== */
#floating-cta {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 200;
  display: none;
}
#floating-cta.visible { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.floating-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  padding: 1.25rem;
  width: 280px;
  display: none;
}
.floating-panel.open { display: block; }
.floating-panel-title { font-family: var(--font-heading); font-weight: 800; font-size: 0.9rem; margin-bottom: 0.25rem; }
.floating-panel-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 1rem; }
.floating-panel-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.floating-call {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.floating-call:hover { background: var(--primary-dark); }
.floating-call svg { width: 16px; height: 16px; }
.floating-request {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--accent);
  color: var(--primary);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.floating-request:hover { background: rgba(249,115,22,0.15); }
.floating-request svg { width: 16px; height: 16px; }
.floating-btn {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(249,115,22,0.5);
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(249,115,22,0.6); }
.floating-btn::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-out infinite;
  opacity: 0;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.8); opacity: 0; } }
.floating-btn svg { width: 24px; height: 24px; color: #fff; position: relative; z-index: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .objects-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { max-width: 480px; }
  .calc-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 3.5rem; }
  .timeline-content, .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { width: 100%; text-align: left; margin: 0; }
  .timeline-dot { left: 20px; top: 1rem; }
  .timeline-head, .timeline-item:nth-child(odd) .timeline-head { flex-direction: row; }
  .options-grid { grid-template-columns: 1fr; max-width: 520px; }
  .cta-box { flex-direction: column; text-align: center; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-card { grid-template-columns: 1fr; }
  .carousel-img-wrap img { min-height: 220px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nav, .header-actions .btn, .header-phone { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .objects-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 2rem 1.5rem; }
  .section { padding: 3.5rem 1rem; }
  .carousel-info { padding: 1.25rem; }
}

/* ===== NOTIFICATION ===== */
.notif {
  position: fixed;
  top: 80px; right: 1.5rem;
  background: var(--success);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(22,163,74,0.3);
  z-index: 999;
  transform: translateX(120%);
  transition: transform 0.4s ease;
}
.notif.show { transform: translateX(0); }
