/* ============================================
   Manan Consultancy — 2D Responsive Design
   ============================================ */

:root {
  --navy: #071222;
  --navy-light: #0f1f38;
  --navy-mid: #162d4f;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8942d;
  --gold-glow: rgba(212, 175, 55, 0.35);
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-50: #f4f6f9;
  --gray-100: #e8ecf2;
  --gray-200: #d1d9e6;
  --gray-400: #8b9ab5;
  --gray-600: #5a6a85;
  --gray-800: #2d3a52;
  --text: #1a2332;
  --text-muted: #5a6a85;
  --success: #22c55e;
  --shadow-sm: 0 2px 12px rgba(7, 18, 34, 0.06);
  --shadow-md: 0 12px 32px rgba(7, 18, 34, 0.12);
  --shadow-lg: 0 20px 60px rgba(7, 18, 34, 0.18);
  --shadow-gold: 0 8px 32px var(--gold-glow);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --header-h: 76px;
  --topbar-h: 40px;
  --font-sans: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

#main {
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar__address {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-bar__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.top-bar__link {
  color: var(--gold-light);
  font-weight: 500;
  transition: color var(--transition);
}
.top-bar__link:hover { color: var(--white); }

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-h);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__mark-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}
.logo__mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-display);
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.logo__text strong { font-size: 0.95rem; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.logo__text small { font-size: 0.7rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.nav__list {
  display: flex;
  gap: 4px;
}
.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  transition: all var(--transition);
}
.nav__link:hover {
  background: var(--gray-50);
  color: var(--navy);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 3px;
  gap: 2px;
}
.lang-switch__btn {
  border: none;
  background: transparent;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-switch__btn.active,
.lang-switch__btn:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---- Photo Frames (2D) ---- */
.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy-light);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo-frame:hover img { transform: scale(1.04); }

.photo-frame--round {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.2), var(--shadow-lg);
}
.photo-frame--round img { border-radius: 50%; }

.photo-frame__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(212, 175, 55, 0.4);
  animation: spin-slow 20s linear infinite;
  pointer-events: none;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.photo-frame--banner {
  width: 160px;
  height: 220px;
  border-radius: var(--radius-lg);
  border: 3px solid var(--navy);
  box-shadow: var(--shadow-md);
}
.photo-frame--banner img { border-radius: calc(var(--radius-lg) - 3px); }

.photo-frame__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--gold);
}
.photo-frame__corner--tl { top: -4px; left: -4px; border-right: none; border-bottom: none; }
.photo-frame__corner--br { bottom: -4px; right: -4px; border-left: none; border-top: none; }

.photo-frame--card {
  border-radius: var(--radius-xl);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  max-width: 320px;
}
.photo-frame--card img { border-radius: calc(var(--radius-xl) - 4px); }

.photo-frame--about {
  border-radius: var(--radius-xl);
  aspect-ratio: 3/4;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
}
.photo-frame--about img { border-radius: calc(var(--radius-xl) - 4px); }

.photo-frame__accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-md);
  z-index: -1;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 48px 0 36px;
  color: var(--white);
  overflow: hidden;
  min-height: 540px;
}

.hero__split {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  max-width: 100%;
}
.hero__split-navy {
  position: absolute;
  inset: 0;
  background: var(--navy);
  clip-path: polygon(0 0, 63% 0, 50% 100%, 0 100%);
}
.hero__split-gold {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  clip-path: polygon(63% 0, 100% 0, 100% 100%, 50% 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 100%;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: center;
  min-height: 460px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero__content {
  min-width: 0;
  max-width: 560px;
}

.hero__expert-line {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.35;
}
.hero__expert-line strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}

.hero__eyebrow {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
  font-weight: 400;
}

.hero__title-box {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-gold);
  transform: skewX(-4deg);
  display: inline-block;
  max-width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
  font-weight: 700;
  transform: skewX(4deg);
}

.hero__features {
  margin-bottom: 22px;
  list-style: none;
}
.hero__features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
}
.hero__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold-light);
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.btn--hero-wa {
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--hero-wa:hover {
  background: var(--navy-light);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

.hero__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}
.hero__desc strong { color: rgba(240, 208, 96, 0.95); }

/* Consultant visual — transparent cutout on gold side */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 460px;
  padding: 8px 0 0;
}
.hero__profile-panel {
  width: 100%;
  max-width: 340px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}
.hero__photo-wrap {
  width: 100%;
  line-height: 0;
  background: transparent;
  padding: 0;
}
.hero__photo-wrap img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  background: transparent;
}
.hero__nameplate {
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  width: calc(100% - 16px);
  max-width: 310px;
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  border: none;
}
.hero__nameplate-welcome {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}
.hero__nameplate-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.hero__nameplate-role {
  margin: 0 0 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.hero__nameplate-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gold-dark);
}
.hero__nameplate-brand span {
  color: var(--navy-mid);
}

/* Stats card — floating center overlap */
.hero__stats-card {
  position: absolute;
  left: 54%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 24px 60px rgba(7, 18, 34, 0.45);
  z-index: 4;
  min-width: 210px;
  grid-column: 1 / -1;
  pointer-events: none;
}
.hero__stats-card * { pointer-events: auto; }
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.stat-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  min-width: 0;
}
.stat-pill strong {
  display: block;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 4px;
  font-weight: 700;
  line-height: 1.1;
}
.stat-pill span {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.hero__scroll-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 16px;
  margin-top: 8px;
}
.hero .scroll-hint {
  color: rgba(255,255,255,0.45);
  display: inline-flex;
}

/* legacy hero classes */
.hero__visual-legacy,
.hero__card { display: none; }

.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- Marquee ---- */
.marquee-section {
  background: var(--navy);
  padding: 16px 0;
  overflow: hidden;
  max-width: 100%;
}
.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee__track span {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  padding: 8px 0;
}
.marquee__track span::before {
  content: '◆';
  margin-right: 12px;
  color: var(--gold);
  font-size: 0.6rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Gallery ---- */
.gallery {
  padding: 88px 0;
  background: var(--white);
  position: relative;
}
.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(7, 18, 34, 0.85));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}
.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item--wide {
  grid-column: span 2;
}

/* ---- Consultant Profile (combined) ---- */
.consultant-profile {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--gray-50) 100%);
}
.consultant-profile__top {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.consultant-profile__photo {
  display: flex;
  justify-content: center;
}
.photo-frame--profile {
  position: relative;
  border-radius: var(--radius-xl);
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-lg);
  aspect-ratio: 3/4;
  max-width: 360px;
  width: 100%;
}
.photo-frame--profile img {
  border-radius: calc(var(--radius-xl) - 4px);
}
.consultant-profile__badge {
  position: absolute;
  z-index: 2;
  font-weight: 700;
}
.consultant-profile__badge--role {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.consultant-profile__badge--exp {
  top: 16px;
  right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  line-height: 1.1;
}
.consultant-profile__badge--exp strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.consultant-profile__badge--exp span {
  font-size: 0.7rem;
  font-weight: 600;
}
.consultant-profile__badge--open {
  top: 16px;
  left: 16px;
  transform: none;
  display: inline-flex;
  align-items: center;
  background: var(--success);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.consultant-profile__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin: 8px 0 6px;
  line-height: 1.2;
}
.consultant-profile__subtitle {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}
.consultant-profile__credentials {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.consultant-profile__bio {
  color: var(--gray-800);
  margin-bottom: 20px;
  line-height: 1.75;
}
.consultant-profile__list {
  margin-bottom: 24px;
}
.consultant-profile__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--gray-800);
}
.consultant-profile__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.consultant-profile__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.consultant-profile__email {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 4px;
}
.consultant-profile__bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
  border-top: 2px solid var(--gray-100);
}

/* Dark phone panel — like reference site */
.phones-panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-lg);
}
.phone-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.phone-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 14px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
}
.phone-card:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.phone-card__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(212, 175, 55, 0.75);
}
.phone-card__number {
  font-size: clamp(0.8rem, 1.1vw, 1.05rem);
  color: var(--gold-light);
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-800);
  font-weight: 500;
  transition: all var(--transition);
}
.service-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ---- Section Common ---- */
.section-label {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header .section-desc { margin-left: auto; margin-right: auto; }
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-label { color: var(--gold-light); }
.section-header--light .section-desc { color: rgba(255,255,255,0.75); }
.section-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.pill {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

/* ---- Services ---- */
.services {
  overflow: hidden;
}

/* White header band */
.services__intro {
  background: var(--white);
  padding: 80px 0 0;
  border-bottom: none;
}
.services__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.services__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.services__label-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
}
.services__label-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}
.services__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.services__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.services__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.services__badge {
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--cream);
}

/* Catalog area — white background */
.services__catalog {
  position: relative;
  padding: 48px 0 88px;
  background: var(--white);
  color: var(--text);
}
.services__bg {
  display: none;
}
.services__catalog .container { position: relative; z-index: 1; }

.services__toolbar {
  margin-bottom: 12px;
}
.services__search {
  position: relative;
  max-width: 100%;
  margin-bottom: 16px;
}
.services__search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
.services__search input {
  width: 100%;
  padding: 16px 18px 16px 50px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  color: var(--navy);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.services__search input::placeholder { color: var(--gray-400); }
.services__search input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.services__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.filter-chip--solo {
  flex-basis: 100%;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.filter-chip {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-800);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}
.filter-chip:hover {
  border-color: var(--gold);
  color: var(--navy);
}
.filter-chip.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.services__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 20px 0 32px;
}
.services__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 48px 20px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* Service catalog card — light theme */
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 100%;
  box-shadow: var(--shadow-sm);
}
.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.svc-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.svc-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 8px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  background: var(--gray-50);
}
.svc-card__overview {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition);
}
.svc-card__overview:hover {
  background: rgba(212, 175, 55, 0.12);
}
.svc-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}
.svc-card__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}
.svc-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 4px 0;
  font-family: var(--font-display);
}
.svc-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}
.svc-card__details div span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.svc-card__details div strong {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}
.svc-card__docs {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.svc-card__docs li {
  position: relative;
  padding-left: 20px;
  font-size: 0.78rem;
  color: var(--gray-800);
  margin-bottom: 6px;
  line-height: 1.3;
}
.svc-card__docs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
}
.svc-card__docs li.svc-card__more {
  color: var(--gold-dark);
  font-weight: 600;
}
.svc-card__docs li.svc-card__more::before { content: ''; }
.svc-card__cta {
  margin-top: auto;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}
.svc-card__cta:hover { color: var(--gold); }

/* ---- Why Us ---- */
.why-us {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  overflow-x: clip;
  max-width: 100%;
}
.why-us__counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.counter-card {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}
.counter-card strong {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--gold-light);
  font-family: var(--font-display);
  margin-bottom: 4px;
}
.counter-card span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.why-us__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  min-width: 0;
}
.feature-card__icon { font-size: 2rem; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--gold-light); }
.feature-card p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ---- Reviews ---- */
.reviews {
  padding: 80px 0;
  background: var(--gray-50);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card__stars { color: var(--gold); margin-bottom: 12px; font-size: 0.9rem; }
.review-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.review-card__author span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Process ---- */
.process {
  padding: 80px 0;
  background: var(--navy-light);
  color: var(--white);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  padding: 28px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  text-align: center;
}
.process-step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--gold-light); }
.process-step p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ---- FAQ ---- */
.faq {
  padding: 80px 0;
  background: var(--white);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--gray-50);
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--white); }
.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Contact ---- */
.contact {
  padding: 80px 0;
  background: var(--cream);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact__grid > * {
  min-width: 0;
  max-width: 100%;
}
.contact-panel {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.contact-panel--info {
  display: flex;
  flex-direction: column;
}
.contact-panel__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 20px;
  font-weight: 600;
}
.phone-grid--contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.contact-panel--info .phone-card {
  background: var(--gray-50);
  border-color: var(--gray-200);
  padding: 14px 12px;
}
.contact-panel--info .phone-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: none;
}
.contact-panel--info .phone-card__label {
  color: var(--text-muted);
  font-size: 0.62rem;
}
.contact-panel--info .phone-card__number {
  color: var(--navy);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
}
.contact__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact-link-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-link-row:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.contact-link-row__icon {
  font-size: 1.25rem;
  line-height: 1;
}
.contact-link-row__label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  min-width: 72px;
}
.contact-link-row__text {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: left;
}
.contact__map-block {
  margin-top: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.contact__map-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.contact__map-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}
.contact__map-head-text {
  flex: 1;
  min-width: 0;
}
.contact__map-head-text h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
}
.contact__map-head-text p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.contact__map-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.contact__map-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.contact__map-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form .form-group {
  margin-bottom: 14px;
}
.contact-form .form-group:last-of-type {
  margin-bottom: 16px;
}
.contact-form__submit {
  margin-top: 4px;
}
.contact-form .form-group label {
  margin-bottom: 5px;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  padding: 11px 14px;
}
.contact-form .form-group textarea {
  min-height: 88px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ---- Footer ---- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.logo--footer .logo__text strong { color: var(--white); }
.logo--footer .logo__text small { color: rgba(255,255,255,0.6); }
.footer__links h4,
.footer__contact h4 {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer__links ul li { margin-bottom: 8px; }
.footer__links a,
.footer__contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--gold-light); }
.footer__contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---- FAB ---- */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.fab:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201, 162, 39, 0.4);
}
.fab__icon {
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ---- Modal ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
}
.modal.active .modal__panel { transform: translateY(0); }
.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 24px 0;
  gap: 16px;
}
.modal__header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}
.modal__header p { font-size: 0.85rem; color: var(--text-muted); }
.modal__close {
  background: var(--gray-50);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--transition);
}
.modal__close:hover { background: var(--gray-100); color: var(--navy); }
.modal__body { padding: 24px; }
.modal__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.modal__footer { padding: 0 24px 24px; }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.detail-grid div {
  background: var(--gray-50);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.detail-grid span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.detail-grid strong { color: var(--navy); font-size: 0.9rem; }
.modal__body h4 {
  font-size: 0.9rem;
  color: var(--navy);
  margin: 16px 0 8px;
}
.modal__body ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.modal__body ul li { margin-bottom: 4px; }

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.gallery__item.reveal:nth-child(2) { transition-delay: 0.08s; }
.gallery__item.reveal:nth-child(3) { transition-delay: 0.16s; }
.gallery__item.reveal:nth-child(4) { transition-delay: 0.24s; }
.service-card.reveal:nth-child(3n+2) { transition-delay: 0.06s; }
.service-card.reveal:nth-child(3n+3) { transition-delay: 0.12s; }
.svc-card.reveal:nth-child(4n+2) { transition-delay: 0.05s; }
.svc-card.reveal:nth-child(4n+3) { transition-delay: 0.1s; }
.svc-card.reveal:nth-child(4n+4) { transition-delay: 0.15s; }

/* ---- Enhanced Cards ---- */
.review-card {
  border-left: 3px solid var(--gold);
}
.process-step {
  transition: all var(--transition);
}
.process-step:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.feature-card {
  transition: all var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.3);
}
.btn--primary {
  box-shadow: var(--shadow-gold);
}
.section-title {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header--light .section-title {
  background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero__content { padding-right: 0; }
  .hero__stats-card {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin: 8px 0;
    grid-column: auto;
  }
  .hero__visual { min-height: auto; }
  .hero__profile-panel { max-width: 300px; margin: 0 auto; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery__item--large,
  .gallery__item--wide { grid-column: span 1; grid-row: span 1; }
  .gallery__item { height: 220px; }
  .consultant-profile__top { grid-template-columns: 1fr; }
  .consultant-profile__photo { max-width: 320px; margin: 0 auto; }
  .consultant-profile__badge--exp { right: 0; }
  .phones-panel .phone-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
  }
  .phones-panel .phone-grid::-webkit-scrollbar { height: 4px; }
  .phones-panel .phone-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
  .phones-panel .phone-card { flex: 0 0 auto; min-width: 150px; }
  .phone-grid--contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .phone-grid--contact .phone-card {
    flex: unset;
    min-width: 0;
    width: auto;
  }
  .why-us__counters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-us__features { grid-template-columns: 1fr; gap: 16px; }
  .process__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --topbar-h: 0px;
  }

  .container { padding: 0 16px; max-width: 100%; }

  .top-bar { display: none; }

  .logo__mark-img { width: 38px; height: 38px; }
  .logo__text strong { font-size: 0.82rem; max-width: 140px; }
  .logo__text small { font-size: 0.65rem; max-width: 140px; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 16px 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: 4px;
  }
  .nav__link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .header__cta { display: none; }
  .lang-switch { display: none; }
  .menu-toggle { display: flex; }

  .hero { padding: 24px 0 12px; overflow: hidden; min-height: auto; }
  .hero__split-navy { clip-path: polygon(0 0, 100% 0, 100% 52%, 0 62%); }
  .hero__split-gold { display: block; clip-path: polygon(0 52%, 100% 42%, 100% 100%, 0 100%); }
  .hero { background: var(--navy); }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
  }
  .hero__content {
    padding-right: 0;
    max-width: 100%;
  }
  .hero__title-box {
    padding: 16px 18px;
    margin-bottom: 16px;
    transform: none;
    display: block;
    width: 100%;
  }
  .hero__title {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    transform: none;
  }
  .hero__expert-line { font-size: 1rem; margin-bottom: 10px; }
  .hero__features li { font-size: 0.85rem; margin-bottom: 6px; }
  .hero__desc { font-size: 0.8rem; }
  .hero__stats-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 12px;
    margin: 8px 0 4px;
    grid-column: auto;
    pointer-events: auto;
  }
  .hero__stats { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .stat-pill { padding: 10px 4px; }
  .stat-pill strong { font-size: 0.75rem; }
  .stat-pill span { font-size: 0.5rem; }
  .hero__visual {
    min-height: auto;
    width: 100%;
    padding: 0;
  }
  .hero__profile-panel { max-width: 300px; }
  .hero__photo-wrap { padding: 0; }
  .hero__photo-wrap img { max-height: 340px; }
  .hero__nameplate { margin-top: -40px; padding: 16px 18px; width: calc(100% - 16px); max-width: 100%; }
  .hero__nameplate-name { font-size: 1.25rem; }
  .hero__nameplate-role { font-size: 0.72rem; }
  .hero__nameplate-brand { font-size: 0.95rem; }
  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    min-width: 0;
    padding: 12px 8px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .hero__scroll-wrap .scroll-hint { display: none; }

  .consultant-profile,
  .gallery,
  .services,
  .why-us,
  .reviews,
  .process,
  .faq,
  .contact {
    padding: 60px 0;
  }

  .why-us__counters { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .why-us__features { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { padding: 22px 18px; }
  .counter-card { padding: 20px 12px; }

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

  .services__grid { grid-template-columns: 1fr; }
  .services__filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .filter-chip { flex-shrink: 0; }
  .services__intro { padding: 60px 0 36px; }
  .services__catalog { padding: 36px 0 60px; }
  .services__title { font-size: 1.65rem; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item { height: 200px; }

  .consultant-profile__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .consultant-profile__actions .btn { width: 100%; text-align: center; font-size: 0.8rem; padding: 12px 10px; }
  .consultant-profile__email { grid-column: 1 / -1; text-align: center; }
  .phones-panel { padding: 22px 18px 26px; max-width: 100%; overflow: hidden; }
  .phones-panel .phone-grid { max-width: 100%; }

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

  .contact { padding: 48px 0; }
  .contact .section-header { margin-bottom: 28px; padding: 0 4px; }
  .contact__grid { gap: 16px; }
  .contact-panel {
    padding: 16px;
    border-radius: var(--radius-md);
    width: 100%;
  }
  .contact-panel__title { font-size: 1.1rem; margin-bottom: 14px; }
  .phone-grid--contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 12px;
  }
  .contact-panel--info .phone-card { padding: 12px 10px; }
  .contact-panel--info .phone-card__number {
    font-size: 0.72rem;
    word-break: break-word;
  }
  .contact__links { gap: 8px; margin-bottom: 14px; }
  .contact-link-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    padding: 12px 14px;
  }
  .contact-link-row__label { min-width: auto; font-size: 0.68rem; }
  .contact-link-row__text {
    flex: 1 1 100%;
    font-size: 0.82rem;
    word-break: break-word;
  }
  .contact__map-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
  .contact__map-head-text p { font-size: 0.75rem; }
  .contact__map-btn { width: 100%; justify-content: center; }
  .contact__map-image { height: 180px; }
  .contact-form .form-group { margin-bottom: 12px; }
  .contact-form .form-group:last-of-type { margin-bottom: 14px; }
  .contact-form .form-group input,
  .contact-form .form-group select,
  .contact-form .form-group textarea {
    font-size: 16px;
    width: 100%;
    max-width: 100%;
  }
  .contact-form__submit { width: 100%; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

  .fab {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
  }
  .fab__text { display: none; }

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

  .avatar-placeholder--lg { height: 220px; }
}

/* ============================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero__actions .btn { font-size: 0.7rem; padding: 11px 6px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .logo__text small { display: none; }
  .logo__text strong { max-width: 160px; }
  .section-badges { flex-direction: column; align-items: center; }
  .why-us__counters { grid-template-columns: 1fr 1fr; }
  .stat-pill strong { font-size: 0.65rem; }
  .stat-pill span { font-size: 0.5rem; }

  .contact-panel { padding: 14px 12px; }
  .phone-grid--contact { grid-template-columns: 1fr 1fr; gap: 6px; }
  .contact-panel--info .phone-card__number { font-size: 0.68rem; }
  .contact-panel--info .phone-card__label { font-size: 0.58rem; }
  .contact-form .form-group label { font-size: 0.8rem; }
  .contact-form .form-group textarea { min-height: 80px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
