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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1a6fc4;
  --blue-light: #3a8ee0;
  --blue-pale: #e8f2fc;
  --blue-mid: #c2dcf7;
  --gray-100: #f5f7fa;
  --gray-200: #e8ecf2;
  --gray-400: #a0aab8;
  --gray-600: #5a6578;
  --gray-900: #111827;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(26,111,196,0.08);
  --shadow-md: 0 4px 32px rgba(26,111,196,0.13);
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── 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(--gray-200);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--blue);
}

.logo span { color: var(--gray-900); }

.nav { display: flex; gap: 2px; }

.nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
}

.nav a:hover, .nav a.active {
  color: var(--blue);
  background: var(--blue-pale);
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 6px;
}

.msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.msg-btn svg { flex-shrink: 0; }

.msg-telegram { background: rgba(39,174,255,0.12); color: #27aeff; }
.msg-telegram:hover { background: rgba(39,174,255,0.22); }

.msg-max { background: rgba(130,71,246,0.12); color: #8247f6; }
.msg-max:hover { background: rgba(130,71,246,0.22); }

.msg-whatsapp { background: rgba(37,211,102,0.12); color: #25d366; }
.msg-whatsapp:hover { background: rgba(37,211,102,0.22); }

.msg-phone { background: rgba(26,111,196,0.1); color: var(--blue); padding: 7px 11px; }
.msg-phone:hover { background: rgba(26,111,196,0.2); }

.phone-btn-wrap { position: relative; }

.phone-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 20px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  z-index: 200;
}

.phone-dropdown.open { display: block; }

.phone-dropdown a {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 700;
}

.phone-dropdown a:hover { color: var(--blue-light); }

@media (max-width: 900px) {
  .msg-btn span { display: none; }
  .msg-btn { padding: 7px 10px; }
}

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

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

/* ─── MOBILE NAV ─── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 12px 24px 20px;
  gap: 4px;
}

.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ─── PAGE WRAPPER ─── */
.page { padding-top: 64px; }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 64px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5rem 2rem 4rem;
}

.hero-sky {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    #b8d9f5 0%, #d4eaf9 30%, #e8f4fd 55%,
    #f0f8ff 70%, #f5f5f0 85%, #e8e4da 100%
  );
}

.hero-sky::before {
  content: '';
  position: absolute; top: 8%; right: 22%;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,100,0.55) 0%, rgba(255,200,80,0.2) 40%, transparent 70%);
}

.cloud {
  position: absolute; border-radius: 50px;
  background: rgba(255,255,255,0.72);
}
.c1 { width: 160px; height: 36px; top: 14%; left: 8%; }
.c1::before { content:''; position:absolute; width:80px; height:56px; background:rgba(255,255,255,0.72); border-radius:50%; top:-24px; left:30px; }
.c1::after  { content:''; position:absolute; width:60px; height:44px; background:rgba(255,255,255,0.65); border-radius:50%; top:-18px; left:80px; }
.c2 { width: 120px; height: 28px; top: 22%; right: 12%; }
.c2::before { content:''; position:absolute; width:60px; height:44px; background:rgba(255,255,255,0.65); border-radius:50%; top:-18px; left:20px; }
.c3 { width: 90px; height: 22px; top: 9%; left: 40%; }
.c3::before { content:''; position:absolute; width:50px; height:36px; background:rgba(255,255,255,0.6); border-radius:50%; top:-14px; left:15px; }

.skyline-svg {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  width: 100%; height: auto;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.05) 100%);
}

.hero-inner {
  position: relative; z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,242,252,0.92);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.8rem;
  border: 1px solid var(--blue-mid);
}

.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  animation: blink 2s infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--gray-900);
  max-width: 600px;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: var(--transition);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,111,196,0.28);
}

.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); }

.btn-outline {
  background: rgba(255,255,255,0.85);
  color: var(--blue);
  border: 1.5px solid var(--blue-mid);
}

.btn-outline:hover { background: var(--blue-pale); border-color: var(--blue); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(26,111,196,0.15);
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 4px;
  font-weight: 500;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--blue);
  color: #fff;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.93;
}

/* ─── SECTION ─── */
.section { padding: 5rem 2rem; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-bg { background: var(--gray-100); }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-season {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.season-warm { background: #fff3eb; color: #c05010; }
.season-cold { background: var(--blue-pale); color: var(--blue); }
.season-any  { background: var(--gray-200); color: var(--gray-600); }

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.82rem;
  line-height: 1.75;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}

.why-card:hover { box-shadow: var(--shadow-md); }
.why-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.why-card h3 { font-weight: 800; font-size: 0.92rem; color: var(--gray-900); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.78rem; color: var(--gray-600); line-height: 1.65; }

/* ─── TEAM / ABOUT ─── */
.team-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.team-text p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.team-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--blue);
}

.about-item-ico { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.about-item-title { font-weight: 700; font-size: 0.88rem; color: var(--gray-900); margin-bottom: 0.2rem; }
.about-item-desc { font-size: 0.78rem; color: var(--gray-600); line-height: 1.6; }

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.acard-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  min-width: 70px;
  line-height: 1;
}

.acard-label { font-size: 0.82rem; color: var(--gray-600); line-height: 1.5; font-weight: 500; }
.acard-label strong { color: var(--gray-900); display: block; font-size: 0.92rem; }

/* ─── PROCESS STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
}

.step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.8rem 1.5rem;
  position: relative;
  text-align: center;
}

.step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.step:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }

.step-content {}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-pale);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step h3 { font-weight: 700; font-size: 0.9rem; color: var(--gray-900); margin-bottom: 0.4rem; }
.step p  { font-size: 0.78rem; color: var(--gray-600); line-height: 1.65; }

.step-arrow {
  position: absolute;
  right: -11px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--blue);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 2;
}

.step:last-child .step-arrow { display: none; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: var(--radius);
  padding: 3.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  max-width: 420px;
}

.cta-banner p { color: rgba(255,255,255,0.8); margin-top: 8px; font-size: 0.95rem; }

.btn-white {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  white-space: nowrap;
  transition: var(--transition);
  font-family: inherit;
  font-size: 0.9rem;
  display: inline-block;
}

.btn-white:hover { background: var(--blue-pale); transform: translateY(-1px); }

/* ─── SERVICES DETAIL PAGE ─── */
.services-detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.service-detail-img {
  width: 360px;
  flex-shrink: 0;
  overflow: hidden;
}

.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.service-detail-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-detail-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-detail-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.service-detail-body p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
  font-size: 0.9rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.feature-list li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PORTFOLIO ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.portfolio-item {
  background: var(--blue-pale);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

.portfolio-item:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }

.portfolio-item .overlay {
  position: absolute; inset: 0;
  background: rgba(26,111,196,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.portfolio-item:hover .overlay { opacity: 1; }

.portfolio-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,24,39,0.82);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  transform: translateY(100%);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-label { transform: translateY(0); }

/* ─── CONTACTS ─── */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  border-radius: 0;
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-card:first-child { padding-top: 0; }

.contact-card-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h3 {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}

.contact-card p { font-size: 0.9rem; color: var(--gray-900); font-weight: 600; }
.contact-card a { color: var(--gray-900); font-size: 0.9rem; font-weight: 600; }
.contact-card a:hover { color: var(--blue); }

/* ─── FORM ─── */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.form-sub { color: var(--gray-600); font-size: 0.875rem; margin-bottom: 1.5rem; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-900);
  border-radius: 7px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,196,0.1);
}

.form-group select option { background: var(--white); color: var(--gray-900); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* File upload */
.file-drop {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--blue-pale);
  border: 1.5px dashed var(--blue);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.file-drop:hover,
.file-drop.dragover {
  background: #dceafb;
  border-color: #1559a3;
}
.file-drop input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.file-drop-icon { font-size: 1.5rem; flex-shrink: 0; }
.file-drop-text { display: flex; flex-direction: column; gap: 2px; }
.file-drop-text strong { font-size: 0.875rem; color: var(--blue); font-weight: 600; }
.file-drop-text small { font-size: 0.78rem; color: var(--gray-400); }

.file-list { list-style: none; margin: 0.6rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.file-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 7px;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--gray-900);
}
.file-list li .file-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-list li .file-size { color: var(--gray-400); flex-shrink: 0; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.form-success p { color: var(--gray-600); }

.form-error {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  color: #b91c1c;
  font-size: 0.88rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.45;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.form-consent a { color: var(--blue); text-decoration: underline; }

/* ─── LEGAL / TEXT PAGES ─── */
.legal-text {
  max-width: 800px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}
.legal-text h2 {
  color: var(--gray-900);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.8em 0 0.6em;
}
.legal-text p { margin-bottom: 1em; }
.legal-text ul { margin: 0 0 1em 1.2em; }
.legal-text li { margin-bottom: 0.4em; }
.legal-text a { color: var(--blue); text-decoration: underline; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(180deg,
    #b8d9f5 0%, #d4eaf9 30%, #e8f4fd 55%,
    #f0f8ff 70%, #f5f5f0 88%, #e8e4da 100%
  );
  border-bottom: 1px solid var(--gray-200);
  padding: 3.5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 12%; right: 10%;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,100,0.45) 0%, rgba(255,200,80,0.15) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 14%; right: 22%;
  width: 130px; height: 28px;
  border-radius: 50px;
  background: rgba(255,255,255,0.6);
  box-shadow: 38px -12px 0 rgba(255,255,255,0.55), 70px -6px 0 rgba(255,255,255,0.45);
  pointer-events: none;
  z-index: 1;
}

.page-hero-skyline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}

.page-hero .breadcrumb,
.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-inner { max-width: 1200px; margin: 0 auto; }

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.page-hero p { color: var(--gray-600); font-size: 1rem; max-width: 560px; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 16px 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.breadcrumb a { color: var(--gray-400); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--gray-600); font-weight: 500; }

/* ─── FOOTER ─── */
.footer {
  background: var(--gray-900);
  padding: 3rem 2rem 2rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { font-size: 1.2rem; margin-bottom: 12px; color: var(--blue-light); }
.footer-brand .logo span { color: #fff; }
.footer-brand p { color: var(--gray-400); font-size: 0.875rem; max-width: 220px; line-height: 1.65; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--gray-400); font-size: 0.875rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { color: var(--gray-400); font-size: 0.8rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .service-detail-card { flex-direction: column; min-height: unset; }
  .service-detail-img { width: 100%; height: auto; }
  .service-detail-img img { height: auto; object-fit: contain; }
  .contacts-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-block { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .about-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .burger { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .service-detail-body { padding: 1.5rem; }
  .trust-bar { gap: 1.2rem; padding: 1rem 1.5rem; justify-content: flex-start; }
  .steps { grid-template-columns: 1fr; }
  .step { text-align: left; }
  .step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .step:last-child  { border-radius: 0 0 var(--radius) var(--radius); }
  .step-arrow { display: none; }
}
