/* ===== ARCTIC STEEL — doctorplusclinic.kg ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --bg: #f4f6f9;
  --bg-rgb: 244, 246, 249;
  --surface: #ffffff;
  --accent: #3b82f6;
  --accent-rgb: 59, 130, 246;
  --accent-hover: #2563eb;
  --text: #0f172a;
  --text-rgb: 15, 23, 42;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --gradient: linear-gradient(135deg, #3b82f6, #06b6d4);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-hover: 0 4px 20px rgba(59,130,246,0.12), 0 1px 6px rgba(0,0,0,0.04);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---------- Text overflow protection ---------- */
.service-card, .team-card, .hero h1, .section-header h2 {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Coordinate Grid Texture (section-texture) ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(226,232,240,0.03) 39px, rgba(226,232,240,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(226,232,240,0.03) 39px, rgba(226,232,240,0.03) 40px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Section base ---------- */
.section {
  position: relative;
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

/* Section geometric grid lines (section-shapes) */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(226,232,240,0.5) 59px, rgba(226,232,240,0.5) 60px),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(226,232,240,0.5) 59px, rgba(226,232,240,0.5) 60px);
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}

.section > * { position: relative; z-index: 1; }

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 4px 14px;
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 20px;
  background: rgba(59,130,246,0.04);
}

/* ---------- HEADER / NAVIGATION ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0;
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gradient);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; color: #fff !important; transform: translateY(-1px); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  border: none;
  background: none;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Hero geometric decor */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-decor::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 8%;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(59,130,246,0.08);
  border-radius: 50%;
}

.hero-decor::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 180px;
  height: 2px;
  background: rgba(59,130,246,0.08);
  transform: rotate(-30deg);
}

.hero-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59,130,246,0.12);
}

.hero-dot-1 { top: 20%; left: 15%; }
.hero-dot-2 { top: 60%; right: 12%; }
.hero-dot-3 { bottom: 25%; left: 40%; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero right — photo with geometric frame */
.hero-visual {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-photo-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(59,130,246,0.15);
  border-radius: var(--radius);
  z-index: -1;
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 60%;
  height: 60%;
  border: 2px solid rgba(6,182,212,0.12);
  border-radius: var(--radius);
  z-index: -1;
}

/* Hero stat cards */
.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  flex: 1;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(59,130,246,0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59,130,246,0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--accent);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ---------- SERVICE CARDS (tech-cards) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  transition: var(--transition);
  overflow: visible;
}

.service-card:hover {
  border-color: var(--accent);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-body {
  padding: 24px;
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(59,130,246,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card .price-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.service-card .promo-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #0891b2;
}

/* ---------- TEAM GRID ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: visible;
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.team-card-body {
  padding: 24px;
}

.team-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.team-card .team-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- GALLERY GRID ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.gallery-item:hover {
  border-color: var(--accent);
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

/* ---------- VIDEO SECTION ---------- */
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* ---------- REVIEWS ---------- */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  position: relative;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 4rem;
  font-family: var(--font-heading);
  color: rgba(59,130,246,0.08);
  line-height: 1;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
}

/* ---------- CTA SECTIONS (inline) ---------- */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0;
}

.cta-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  max-width: 500px;
}

.cta-inner p {
  color: var(--text-muted);
  margin-top: 8px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ---------- CONTACT INFO ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.12);
  font-size: 1.3rem;
}

.contact-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-card a:hover { color: var(--accent); }

/* ---------- MAP ---------- */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 40px;
  height: 350px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- USP BAR ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.usp-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: var(--transition);
}

.usp-item:hover {
  border-color: var(--accent);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-hover);
}

.usp-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(59,130,246,0.2);
  margin-bottom: 8px;
}

.usp-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.usp-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.85rem;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(59,130,246,0.04);
}

/* ---------- Counter ---------- */
[data-count] {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* ---------- PSEUDO DECORATIONS ---------- */
.section-decorated::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

/* ---------- Promos grid on services page ---------- */
.promos-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.promo-card {
  background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(6,182,212,0.05));
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.promo-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.promo-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.promo-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.promo-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}

.promo-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

/* ---------- Service detailed (services page) ---------- */
.service-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: visible;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-detail:hover {
  border-color: var(--accent);
  border-left: 3px solid var(--accent);
  box-shadow: var(--shadow-hover);
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}

.service-detail img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.service-detail-content {
  padding: 28px 32px;
}

.service-detail-content h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-detail-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-detail-no-img {
  grid-template-columns: 1fr;
}

/* ---------- All services list (no image) ---------- */
.services-list-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.service-compact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-compact:hover {
  border-color: var(--accent);
  border-left: 3px solid var(--accent);
}

.service-compact-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(59,130,246,0.2);
  line-height: 1;
  flex-shrink: 0;
}

.service-compact h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.service-compact p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-photo-frame img { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-inner { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.open { opacity: 1; visibility: visible; }

  .nav-links a {
    font-size: 1.2rem;
  }

  .burger { display: flex; }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-inner { gap: 32px; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-stats { flex-direction: column; gap: 8px; margin-top: -20px; }
  .hero-stat { padding: 12px 16px; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.6rem; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .service-detail-inner {
    grid-template-columns: 1fr;
  }

  .service-detail img {
    height: 200px;
  }

  .reviews-list { gap: 16px; }
  .review-card { padding: 20px 24px; }

  .hero-decor::before { width: 200px; height: 200px; }

  .hero-photo-frame img { height: 300px; }

  .promos-strip { grid-template-columns: 1fr; }
  .services-list-compact { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.6rem; }
  .btn { padding: 12px 20px; width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-item img { height: 220px; }
  .team-card img { height: 250px; }
}
