/* ═══════════════════════════════════════════════════
   Dr.NoorLan — Vibrant Premium
   Palette: Purple #7c3aed → Pink #ec4899 gradient
   Fonts: Poppins (headings) + Inter (body)
   ═══════════════════════════════════════════════════ */

/* ── Reset & Variables ────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --bg:        #fafafa;
  --surface:   #f0f0f0;
  --accent:    #7c3aed;
  --accent-h:  #9333ea;
  --pink:      #ec4899;
  --text:      #18181b;
  --muted:     #71717a;
  --border:    #e4e4e7;
  --grad:      linear-gradient(135deg, #7c3aed, #ec4899);
  --grad-r:    linear-gradient(135deg, #ec4899, #7c3aed);
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(124,58,237,.10);
  --shadow-lg: 0 12px 48px rgba(124,58,237,.16);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
button { font-family:inherit; cursor:pointer; border:none; background:none; }
ul,ol { list-style:none; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

/* ── Utility ──────────────────────────────────── */
.container { width:100%; max-width:1200px; margin:0 auto; padding:0 20px; }
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--grad);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 60px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(124,58,237,.3);
  min-height: 52px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 60px;
  transition: var(--transition);
  min-height: 52px;
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Section common ───────────────────────────── */
.section { padding: 100px 0; }
.section-label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  background: rgba(124,58,237,.08);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Header ───────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250,250,250,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--accent); }
.logo-sub {
  font-size: .7rem;
  color: var(--muted);
  font-style: italic;
  display: block;
  margin-top: -2px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 36px; }
.nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .92rem;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: var(--transition);
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-cta {
  padding: 10px 24px;
  font-size: .88rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1100;
}
.burger span {
  display: block;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity:0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(250,250,250,.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-nav.open { opacity:1; pointer-events:all; }
.mobile-nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }

/* ── Hero Slider ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

/* CSS gradient background — NO photo background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(124,58,237,.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(236,72,153,.06) 0%, transparent 60%),
    var(--bg);
  z-index: 0;
}

/* Decorative gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb--1 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,.1);
  top: -100px; right: -100px;
}
.hero-orb--2 {
  width: 400px; height: 400px;
  background: rgba(236,72,153,.08);
  bottom: -80px; left: -80px;
}
.hero-orb--3 {
  width: 250px; height: 250px;
  background: rgba(124,58,237,.06);
  top: 50%; left: 40%;
  transform: translate(-50%,-50%);
}

/* Geometric SVG accents */
.hero-geo {
  position: absolute;
  z-index: 0;
  opacity: .08;
}
.hero-geo--1 {
  top: 15%; right: 8%;
  width: 120px; height: 120px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.hero-geo--2 {
  bottom: 20%; left: 5%;
  width: 80px; height: 80px;
  border: 3px solid var(--pink);
  transform: rotate(45deg);
  animation: float 6s ease-in-out infinite reverse;
}
.hero-geo--3 {
  top: 35%; left: 15%;
  width: 40px; height: 40px;
  background: var(--grad);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Slider container */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides {
  display: flex;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
  width: 300%; /* 3 slides */
}

.hero-slide {
  width: 33.333%;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: 60px 0;
}

.hero-slide__content {
  padding: 0 20px 0 max(20px, calc((100vw - 1200px)/2 + 20px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(124,58,237,.06);
  border: 1px solid rgba(124,58,237,.12);
  border-radius: 40px;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge svg { width:16px; height:16px; }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat__label {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Hero photo area */
.hero-slide__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 40px 40px 0;
}

.hero-photo-card {
  position: relative;
  width: 420px;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-photo-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top center;
}

/* Gradient border on photo */
.hero-photo-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  background: var(--grad);
  z-index: -1;
}

/* Small floating accent card */
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  font-weight: 500;
  animation: float 6s ease-in-out infinite;
}
.hero-float-card--1 { bottom: 80px; left: -30px; }
.hero-float-card--2 { top: 80px; right: -20px; animation-delay: -3s; }
.hero-float-card .icon-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float-card .icon-circle svg { width:18px; height:18px; fill:none; stroke:#fff; stroke-width:2; }

/* Slider dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 0;
}
.slider-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--grad);
  width: 36px;
  border-radius: 8px;
}

/* ── Advantages strip ─────────────────────────── */
.advantages {
  background: var(--text);
  padding: 48px 0;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage-item {
  text-align: center;
  color: #fff;
}
.advantage-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.advantage-icon svg { width:24px; height:24px; stroke:#fff; fill:none; stroke-width:1.5; }
.advantage-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 6px;
}
.advantage-text {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ── Team section ─────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}
.team-card__body { padding: 28px 32px 32px; }
.team-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: .9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}
.team-card__meta-item {
  font-size: .82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.team-card__meta-item svg { width:14px; height:14px; stroke:var(--accent); fill:none; stroke-width:2; }
.team-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.team-card__service-tag {
  padding: 5px 14px;
  background: rgba(124,58,237,.06);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 500;
  border-radius: 20px;
}

/* ── Services (photo-left cards) ──────────────── */
.services-list { margin-top: 48px; }
.service-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.service-card__body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card__icon svg { width:22px; height:22px; stroke:#fff; fill:none; stroke-width:2; }
.service-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card__text {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.service-card__link:hover { gap: 14px; }
.service-card__link svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:2; }

/* ── Gallery (horizontal scroll) ──────────────── */
.gallery-scroll-wrap {
  margin-top: 48px;
  position: relative;
}
.gallery-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0 40px;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display:none; }

.gallery-item {
  flex-shrink: 0;
  width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: var(--transition);
  background: #fff;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.gallery-item__caption {
  padding: 16px 20px;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Gallery scroll arrows */
.gallery-arrows {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.gallery-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.gallery-arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.gallery-arrow svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:2; }

/* ── Testimonial ──────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  margin-top: 48px;
  max-width: 720px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 36px;
  font-size: 6rem;
  font-family: 'Poppins', serif;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: .3;
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
}
.testimonial-source {
  font-size: .82rem;
  color: var(--muted);
}

/* ── Contacts ─────────────────────────────────── */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.contact-info-cards { display:flex; flex-direction:column; gap:20px; }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card__icon svg { width:22px; height:22px; stroke:#fff; fill:none; stroke-width:2; }
.contact-card__label {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .03em;
}
.contact-card__value {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-card__value a { color: var(--text); transition: var(--transition); }
.contact-card__value a:hover { color: var(--accent); }

.schedule-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.schedule-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.schedule-row:last-child { border-bottom:none; }
.schedule-row .day { font-weight: 500; }
.schedule-row .time { color: var(--muted); }
.schedule-row.off .time { color: var(--pink); font-weight: 500; }

/* Map placeholder */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CTA Banner ───────────────────────────────── */
.cta-banner {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 64px;
  text-align: center;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.1), transparent 50%);
}
.cta-banner__title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner__text {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #fff;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 60px;
  transition: var(--transition);
  min-height: 52px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  position: relative;
}
.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

/* ── Floating WhatsApp ────────────────────────── */
.floating-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.floating-wa svg { width:32px; height:32px; fill:#fff; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ── Footer ───────────────────────────────────── */
.footer {
  background: var(--text);
  color: #fff;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text span { color: var(--pink); }
.footer-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ── Scroll reveal animation ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Page hero (inner pages) ──────────────────── */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 80%, rgba(124,58,237,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(236,72,153,.04) 0%, transparent 60%),
    var(--bg);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--accent); font-weight: 500; }
.page-hero__breadcrumb svg { width:14px; height:14px; stroke:var(--muted); fill:none; stroke-width:2; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-slide { grid-template-columns: 1fr; gap: 40px; }
  .hero-slide__content { padding: 0 20px; }
  .hero-slide__visual { padding: 0 20px; justify-content: center; }
  .hero-photo-card { width: 340px; }
  .hero-photo-card img { height: 440px; }
  .hero-float-card { display:none; }
  .hero-stats { gap: 28px; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card__img { height: 350px; }

  .contacts-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav, .header-cta { display:none; }
  .burger { display:flex; }
  .mobile-nav { display:flex; }

  .section { padding: 64px 0; }

  .hero { min-height: auto; }
  .hero-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 20px;
  }
  .hero-slide__content { text-align: center; padding: 0 20px; }
  .hero-desc { margin-left:auto; margin-right:auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-slide__visual { padding: 0 20px; }
  .hero-photo-card { width: 280px; }
  .hero-photo-card img { height: 360px; }
  .hero-orb--1 { width:250px; height:250px; }
  .hero-orb--2 { width:200px; height:200px; }
  .hero-geo { display:none; }

  .advantages-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .service-card { grid-template-columns: 1fr; }
  .service-card__img { height: 240px; }
  .service-card__body { padding: 24px; }

  .gallery-item { width: 280px; }
  .gallery-item img { height: 340px; }

  .testimonial-card { padding: 32px; }

  .cta-banner { padding: 40px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-slide__content { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .hero-stat__number { font-size: 1.5rem; }
  .hero-photo-card { width: 240px; }
  .hero-photo-card img { height: 300px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 14px 24px; }
  .hero-buttons { flex-direction: column; }
  .advantages-grid { grid-template-columns: 1fr; }
  .service-card__img { height: 200px; }
}
