/* ===== ROOT & VARIABLES ===== */
:root {
  --site-navy: #0f2742;
  --site-navy-soft: #173a5f;
  --site-blue: #2563eb;
  --site-blue-soft: #eaf2ff;
  --site-gold: #d97706;
  --site-gold-soft: #fef3c7;
  --site-gold-dark: #b45309;
  --site-green: #16a34a;
  --site-text: #172033;
  --site-muted: #667085;
  --site-line: #e6eaf0;
  --site-bg: #ffffff;
  --site-bg-soft: #f5f7fb;
  --site-card: #ffffff;
  --site-radius: 22px;
  --site-shadow: 0 20px 60px rgba(15, 39, 66, 0.12);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', 'Noto Sans Devanagari', Arial, Helvetica, sans-serif;
  color: var(--site-text);
  background: var(--site-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--site-blue);
  text-decoration: none;
}

a:hover {
  color: var(--site-navy);
}

/* ===== TOPBAR ===== */
.site-topbar {
  background: var(--site-navy);
  padding: 8px 0;
}

.site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.site-topbar-contact,
.site-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-topbar-link {
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
  transition: color 0.15s;
}

.site-topbar-link:hover {
  color: #fbbf24;
}

.site-topbar-link svg {
  flex-shrink: 0;
}

.site-topbar .site-topbar-wa {
  align-items: center;
  background: #16a34a;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 5px;
  padding: 4px 12px;
  transition: background 0.15s;
}

.site-topbar .site-topbar-wa:hover {
  background: #15803d;
  color: #fff;
}

.site-topbar .site-topbar-wa:visited,
.site-topbar .site-topbar-wa:focus,
.site-topbar .site-topbar-wa:active {
  color: #fff;
}

.site-topbar-hours {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

/* ===== HEADER / NAVBAR ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--site-line);
  backdrop-filter: blur(12px);
}

.site-navbar {
  padding: 12px 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: auto;
  max-width: 150px;
  height: 46px;
  object-fit: contain;
  border-radius: 0;
}

.site-logo-fallback {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--site-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
}

.site-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-brand-name {
  color: var(--site-navy);
  font-weight: 800;
  font-size: 17px;
}

.site-brand-subtitle {
  color: var(--site-muted);
  font-size: 12px;
  margin-top: 3px;
}

.navbar .nav-link {
  color: var(--site-text);
  font-weight: 600;
  font-size: 14px;
  margin-left: 6px;
}

.navbar .nav-link:hover {
  color: var(--site-gold);
}

.site-nav-cta {
  background: var(--site-navy);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px !important;
  transition: background 0.2s ease;
}

.site-nav-cta:hover {
  background: var(--site-gold) !important;
  color: #fff !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #060f1a 0%, #0f2742 50%, #0d2046 100%);
  min-height: 92vh;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -80px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.14), transparent 65%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-clean {
  position: relative;
  z-index: 1;
}

.eyebrow {
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.3);
  border-radius: 999px;
  color: #fbbf24;
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.section-label {
  background: var(--site-blue-soft);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  color: var(--site-blue);
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  margin-bottom: 16px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 20px;
  max-width: 820px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.gold-text {
  color: #fbbf24;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 12px;
}

.hero-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  max-width: 580px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-primary-custom,
.btn-secondary-custom {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.38);
}

.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(217, 119, 6, 0.48);
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  align-items: center;
  display: inline-flex;
  gap: 7px;
}

/* ===== HERO MEDIA (right column) ===== */
.hero-media-stack {
  position: relative;
  z-index: 1;
}

.hero-media-slider {
  border-radius: 24px;
  height: 440px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.hero-panel-slide {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transform: scale(1.04);
  transition: opacity 0.8s ease;
  width: 100%;
}

.hero-panel-slide-1 { animation: heroSlideOne 12s infinite; }
.hero-panel-slide-2 { animation: heroSlideTwo 12s infinite; }
.hero-panel-slide-3 { animation: heroSlideThree 12s infinite; }

@keyframes heroSlideOne {
  0%, 28% { opacity: 1; transform: scale(1); }
  34%, 100% { opacity: 0; transform: scale(1.04); }
}
@keyframes heroSlideTwo {
  0%, 30% { opacity: 0; transform: scale(1.04); }
  36%, 62% { opacity: 1; transform: scale(1); }
  68%, 100% { opacity: 0; transform: scale(1.04); }
}
@keyframes heroSlideThree {
  0%, 64% { opacity: 0; transform: scale(1.04); }
  70%, 95% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); }
}

/* ===== HERO FULL-BLEED BACKGROUND SLIDER ===== */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-bg-slide.is-active {
  opacity: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(108deg, rgba(6,15,26,0.93) 0%, rgba(6,15,26,0.82) 42%, rgba(6,15,26,0.45) 75%, rgba(6,15,26,0.25) 100%);
}

/* Right panel — just the profile glass card */
.hero-right-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

/* Dot slide indicators */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: #fbbf24;
}

.hero-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.55);
}

.hero-media-caption {
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.25);
  border-radius: 14px;
  color: #fbbf24;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  gap: 2px;
  margin-top: 10px;
  padding: 10px 14px;
}

.hero-media-caption span { opacity: 0.8; }
.hero-media-caption strong { color: #fff; font-weight: 700; font-size: 13px; }

.hero-profile-glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  margin-top: 12px;
  padding: 18px;
}

.hero-profile-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.profile-photo-wrap.hero-glass-photo {
  width: 60px;
  height: 60px;
  margin: 0;
  flex-shrink: 0;
}

.profile-photo-wrap.hero-glass-photo .profile-photo,
.profile-photo-wrap.hero-glass-photo .profile-photo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 14px;
}

.hero-profile-top-text h2 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 3px;
  line-height: 1.2;
}

.hero-profile-top-text .designation {
  color: #fbbf24;
  font-size: 11px;
  font-weight: 600;
  margin: 0;
}

.hero-glass-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-glass-info > div {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 9px 11px;
}

.hero-glass-info > div span {
  color: rgba(255, 255, 255, 0.45);
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.hero-glass-info > div strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, #b84e02 0%, #d97706 45%, #f59e0b 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0) 0px,
    rgba(255,255,255,0) 24px,
    rgba(255,255,255,0.03) 24px,
    rgba(255,255,255,0.03) 25px
  );
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 8px 20px;
}

.stat-item + .stat-item {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
  color: #fff;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 900;
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.stat-label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  display: block;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== CREDIBILITY BAR ===== */
.credibility-bar {
  background: var(--site-bg-soft);
  border-bottom: 1px solid var(--site-line);
  padding: 18px 0;
}

.credibility-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.credibility-item {
  align-items: center;
  color: var(--site-navy);
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  padding: 6px 20px;
  line-height: 1.4;
}

.credibility-item svg {
  color: var(--site-gold);
  flex-shrink: 0;
}

.credibility-sep {
  width: 1px;
  height: 28px;
  background: var(--site-line);
  flex-shrink: 0;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-muted {
  background: var(--site-bg-soft);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.section h2,
.promise-card h2 {
  color: var(--site-navy);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
}

.section p,
.promise-card p {
  color: #475467;
  font-size: 17px;
  line-height: 1.75;
}

.section-lead {
  color: #344054 !important;
  font-weight: 700;
  font-size: 19px !important;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

/* ===== ABOUT SECTION ===== */
.about-no-photo {
  grid-template-columns: 0.75fr 1.25fr;
}

.about-intro-col {
  padding-top: 8px;
}

.about-exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--site-gold-soft);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: 20px;
  padding: 18px 24px;
  margin-top: 24px;
}

.about-exp-num {
  color: var(--site-gold);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-exp-label {
  color: var(--site-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  max-width: 120px;
}

.about-photo-col {
  display: flex;
  justify-content: center;
}

.about-photo-frame {
  position: relative;
  display: inline-block;
}

.about-photo-frame img {
  border-radius: 28px;
  display: block;
  max-width: 100%;
  width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 32px 72px rgba(15, 39, 66, 0.25);
}

.about-photo-badge {
  background: var(--site-gold);
  border-radius: 16px;
  bottom: -16px;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.35);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 18px;
  position: absolute;
  right: -16px;
  text-align: center;
  min-width: 90px;
}

.about-photo-badge strong {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.about-photo-badge span {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.9;
  margin-top: 2px;
  line-height: 1.2;
}

.about-text-col {
  padding-top: 8px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.about-feature {
  align-items: center;
  background: var(--site-bg-soft);
  border: 1px solid var(--site-line);
  border-radius: 12px;
  color: var(--site-gold);
  display: inline-flex;
  gap: 7px;
  padding: 9px 14px;
}

.about-feature span {
  color: var(--site-navy);
  font-size: 13px;
  font-weight: 700;
}

/* ===== ITR BENEFITS SECTION ===== */
.itr-benefits-section {
  background: linear-gradient(160deg, #060f1a 0%, #0d1f3c 50%, #0f2742 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.itr-benefits-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent 60%);
  pointer-events: none;
}

.itr-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.itr-section-header .section-label {
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: #fbbf24;
}

.itr-section-header h2 {
  color: #fff !important;
  font-size: clamp(26px, 3.5vw, 42px) !important;
  margin-bottom: 12px;
}

.itr-section-header p {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 16px !important;
  margin: 0;
}

.itr-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.itr-benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 32px 18px 28px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.itr-benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(217, 119, 6, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217,119,6,0.15);
}

.itr-benefit-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
}

.itr-benefit-title {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}

.itr-benefit-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  margin-top: 6px;
  font-weight: 500;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 30px 28px;
  min-height: 220px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  background: transparent;
  border-radius: 4px 4px 0 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--site-shadow);
  border-color: rgba(217, 119, 6, 0.2);
}

.service-card:hover::before {
  background: linear-gradient(90deg, var(--site-gold), #f59e0b);
}

.service-icon {
  width: 54px;
  height: 54px;
  font-size: 21px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 20px;
}

.service-card:nth-child(6n+1) .service-icon { background: #fef3c7; color: #d97706; }
.service-card:nth-child(6n+2) .service-icon { background: #f0fdf4; color: #16a34a; }
.service-card:nth-child(6n+3) .service-icon { background: #eff6ff; color: #2563eb; }
.service-card:nth-child(6n+4) .service-icon { background: #fdf4ff; color: #9333ea; }
.service-card:nth-child(6n+5) .service-icon { background: #f0fdfa; color: #0891b2; }
.service-card:nth-child(6n+6) .service-icon { background: #fff7ed; color: #ea580c; }

.service-card h3 {
  color: var(--site-navy);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card p {
  color: var(--site-muted);
  line-height: 1.65;
  margin-bottom: 0;
  font-size: 15px;
}

/* ===== PROMISE SECTION ===== */
.promise-section {
  background: linear-gradient(135deg, #c05b04 0%, var(--site-gold) 60%, #f59e0b 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.promise-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.promise-card {
  color: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.promise-card h2 { color: #fff !important; }
.promise-card p { color: rgba(255,255,255,0.88) !important; }

.promise-card .section-label {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}

.promise-tagline {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-style: italic;
  margin-top: 16px;
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--site-line);
  border-radius: 20px;
  background: #fff;
  padding: 20px 24px;
  transition: all 0.2s ease;
}

.faq-item summary {
  color: var(--site-navy);
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  list-style: none;
  -webkit-appearance: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  align-items: center;
  background: var(--site-gold-soft);
  border-radius: 50%;
  color: var(--site-gold);
  content: '+';
  display: flex;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  line-height: 1;
  width: 32px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item[open] {
  background: #fffbeb;
  border-color: rgba(217, 119, 6, 0.25);
}

.faq-item[open] summary {
  color: var(--site-gold-dark);
}

.faq-item p {
  margin: 14px 0 0;
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== APPOINTMENT ===== */
.appointment-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-box {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  padding: 22px 24px;
  margin-top: 22px;
}

.contact-item {
  align-items: flex-start;
  border-bottom: 1px solid var(--site-line);
  display: flex;
  gap: 14px;
  padding: 13px 0;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

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

.contact-icon {
  align-items: center;
  background: var(--site-gold-soft);
  border-radius: 12px;
  color: var(--site-gold);
  display: flex;
  flex-shrink: 0;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.contact-icon-wa {
  background: #dcfce7;
  color: #16a34a;
}

.contact-item-label {
  color: var(--site-muted);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.contact-item-value {
  color: var(--site-text);
  font-size: 15px;
  font-weight: 600;
}

.contact-item-value a {
  color: var(--site-navy);
  font-weight: 600;
}

.contact-item-value a:hover {
  color: var(--site-gold);
}

.appointment-form {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--site-shadow);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  color: var(--site-navy);
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--site-text);
  background: #fff;
  box-sizing: border-box;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--site-gold);
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}

.form-help {
  color: var(--site-muted);
  font-size: 13px;
  text-align: center;
  margin: 12px 0 0;
}

.btn-wa-direct {
  align-items: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 24px;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
  border: 0;
}

.btn-wa-direct:hover {
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.42);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #060e1a;
  color: #d5deea;
  padding: 52px 0 24px;
}

.site-footer a {
  color: #d5e7ff;
}

.site-footer p {
  color: #8fa5bc;
  margin-bottom: 0;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-name {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}

.site-footer-tagline {
  color: #fbbf24;
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
  display: block;
}

.site-footer-col-heading {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  text-transform: uppercase;
  display: block;
}

.site-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-nav a {
  color: #7a8ea0;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.site-footer-nav a:hover {
  color: #fbbf24;
}

.site-footer-note {
  color: #6a7e92;
  font-size: 13px;
  margin-top: 14px;
  line-height: 1.5;
}

.site-footer-disclaimer {
  align-items: center;
  color: #5a6e82;
  display: flex;
  font-size: 12px;
  gap: 14px 28px;
  justify-content: space-between;
  line-height: 1.65;
  margin-top: 22px;
}

.site-footer-credit {
  flex-shrink: 0;
  white-space: nowrap;
}

.site-footer .site-footer-credit a {
  color: #fbbf24;
  font-weight: 700;
}

.site-footer .site-footer-credit a:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-social-link {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 42px;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  width: 42px;
  flex-shrink: 0;
}

.footer-social-link:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.1);
}

.site-footer .footer-social-wa,
.site-footer .footer-social-wa:visited,
.site-footer .footer-social-wa:hover,
.site-footer .footer-social-wa:focus,
.site-footer .footer-social-wa:active {
  background: #16a34a;
  color: #fff;
}
.site-footer .footer-social-wa:hover { box-shadow: 0 6px 18px rgba(22,163,74,0.55); }

.footer-social-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.footer-social-ig:hover { box-shadow: 0 6px 18px rgba(214,36,159,0.5); }

.footer-social-fb { background: #1877f2; color: #fff; }
.footer-social-fb:hover { box-shadow: 0 6px 18px rgba(24,119,242,0.55); }

.footer-social-li { background: #0a66c2; color: #fff; }
.footer-social-li:hover { box-shadow: 0 6px 18px rgba(10,102,194,0.55); }

.footer-social-tw { background: #000; color: #fff; }
.footer-social-tw:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.4); }

/* ===== FLOATING WHATSAPP ===== */
@keyframes waPulse {
  0%   { box-shadow: 0 8px 30px rgba(34,197,94,0.55), 0 0 0 0 rgba(34,197,94,0.55); }
  70%  { box-shadow: 0 8px 30px rgba(34,197,94,0.55), 0 0 0 16px rgba(34,197,94,0); }
  100% { box-shadow: 0 8px 30px rgba(34,197,94,0.55), 0 0 0 0 rgba(34,197,94,0); }
}

.whatsapp-float {
  align-items: center;
  animation: waPulse 2.8s ease-out infinite;
  background: linear-gradient(135deg, #25d366, #16a34a);
  border-radius: 50%;
  bottom: 28px;
  color: #fff;
  display: flex;
  height: 64px;
  justify-content: center;
  position: fixed;
  right: 28px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  width: 64px;
  z-index: 990;
}

.whatsapp-float::before {
  content: 'Chat on WhatsApp';
  position: absolute;
  right: 74px;
  background: #111827;
  color: #fff;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  right: 68px;
  border: 6px solid transparent;
  border-left-color: #111827;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.whatsapp-float:hover {
  animation: none;
  box-shadow: 0 14px 44px rgba(34, 197, 94, 0.7);
  color: #fff;
  transform: scale(1.08);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ===== MAP ===== */
.section-map {
  padding: 64px 0 0;
}

.map-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.map-section-info .section-label { margin-bottom: 10px; }

.map-section-title {
  color: var(--site-navy);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.map-address-text {
  color: var(--site-muted);
  font-size: 15px;
  margin: 0;
}

.btn-get-directions {
  align-items: center;
  background: var(--site-navy);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  padding: 12px 22px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.btn-get-directions:hover {
  background: var(--site-gold);
  color: #fff;
}

.map-full-frame {
  height: 460px;
  width: 100%;
}

/* ===== FORM ALERTS ===== */
.form-alert {
  border-radius: 16px;
  padding: 13px 16px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 18px;
}

.form-alert-success {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #abefc6;
}

.form-alert-error {
  background: #fff1f3;
  color: #c01048;
  border: 1px solid #fecdca;
}

.form-alert-info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.field-error {
  color: #c01048;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 6px;
}

.input-validation-error {
  border-color: #f04438 !important;
  box-shadow: 0 0 0 4px rgba(240, 68, 56, 0.10) !important;
}

.appointment-honeypot {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

.animate-delay-1 { transition-delay: 0.08s; }
.animate-delay-2 { transition-delay: 0.16s; }
.animate-delay-3 { transition-delay: 0.24s; }
.animate-delay-4 { transition-delay: 0.32s; }
.animate-delay-5 { transition-delay: 0.40s; }
.animate-delay-6 { transition-delay: 0.48s; }

.navbar .nav-link.active {
  color: var(--site-gold) !important;
}

/* ===== PROFILE PHOTO (shared) ===== */
.profile-photo-wrap {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
}

.profile-photo,
.profile-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  object-fit: cover;
}

.profile-photo {
  object-position: center top;
}

.profile-photo-placeholder {
  background: var(--site-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  font-weight: 900;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .itr-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-grid,
  .section-grid,
  .promise-card,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .hero-right-panel {
    display: none;
  }

  .hero-dots {
    bottom: 22px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item + .stat-item {
    border-left: none;
  }

  .stats-grid .stat-item:nth-child(1),
  .stats-grid .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 20px;
    margin-bottom: 4px;
  }

  .stats-grid .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.3);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav-cta {
    display: inline-flex;
    margin-top: 8px;
  }

  .about-section-grid {
    grid-template-columns: 1fr !important;
  }

  .about-photo-col {
    order: -1;
  }
}

@media (max-width: 767px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-disclaimer {
    align-items: flex-start;
    flex-direction: column;
  }

  .itr-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .credibility-grid {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .site-topbar-right { display: none; }
}

@media (max-width: 575px) {
  .hero-section {
    min-height: 85vh;
    padding: 100px 0 80px;
  }

  .section {
    padding: 56px 0;
  }

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

  .itr-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .whatsapp-float {
    bottom: 18px;
    height: 54px;
    right: 18px;
    width: 54px;
  }

  .site-topbar { display: none; }

  .map-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .credibility-item { padding: 6px 12px; font-size: 12px; }
  .credibility-sep { height: 20px; }
}

@media (max-width: 480px) {
  .itr-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-brand-subtitle {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--site-bg-soft);
  border: 1px solid var(--site-line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  margin-left: 6px;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--site-muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 11px;
  transition: all 0.18s ease;
  line-height: 1;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.lang-btn.lang-btn-active {
  background: var(--site-navy);
  color: #fff;
}

.lang-btn:hover:not(.lang-btn-active) {
  background: var(--site-line);
  color: var(--site-navy);
}

@media (max-width: 991px) {
  .lang-toggle-wrap {
    margin-top: 10px;
  }
}

/* ===== STUDIO ADMIN ENHANCEMENTS ===== */

/* Active nav link for current page */
.studio-nav a.active {
  background: var(--site-navy);
  color: #fff;
}

/* Alert action link (e.g. "X New Requests") */
.studio-action-link-alert {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.studio-action-link-alert:hover {
  color: #fff;
  opacity: 0.9;
}

/* Color-coded stat cards */
.studio-stat-total {
  border-top: 3px solid var(--site-navy);
}

.studio-stat-new {
  border-top: 3px solid #2563eb;
}

.studio-stat-new strong {
  color: #2563eb;
}

.studio-stat-new .studio-stat-link {
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
  display: block;
}

.studio-stat-contacted {
  border-top: 3px solid #16a34a;
}

.studio-stat-contacted strong {
  color: #16a34a;
}

.studio-stat-closed {
  border-top: 3px solid #cbd5e1;
}

.studio-stat-closed strong {
  color: var(--site-muted);
}

/* ===== END STUDIO ENHANCEMENTS ===== */

/* Studio admin */
.studio-body {
  background: #f5f7fb;
}

.studio-header {
  background: #ffffff;
  border-bottom: 1px solid var(--site-line);
  border-top: 3px solid var(--site-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.studio-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

/* keep old class working for any leftover references */
.studio-header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.studio-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--site-navy);
}

.studio-brand:hover {
  color: var(--site-navy);
}

.studio-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--site-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.studio-brand-icon.has-logo {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 10px;
  padding: 4px 8px;
  width: 112px;
}

.studio-brand-icon.has-logo img {
  display: block;
  height: 32px;
  max-width: 96px;
  object-fit: contain;
  width: auto;
}

.studio-brand small {
  display: block;
  color: var(--site-muted);
  font-size: 12px;
  margin-top: 2px;
}

.studio-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 0 12px;
  border-top: 1px solid #f1f5f9;
}

.studio-nav a,
.studio-action-link {
  background: #fff;
  color: var(--site-navy);
  border: 1px solid var(--site-line);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.studio-nav a:hover {
  background: #f1f5f9;
  color: var(--site-navy);
  border-color: #cbd5e1;
}

.studio-nav-utility {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.studio-view-site-link {
  background: #fff;
  color: var(--site-muted);
  border: 1px solid var(--site-line);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

.studio-view-site-link:hover {
  color: var(--site-navy);
  border-color: var(--site-navy);
}

.studio-logout-form {
  margin: 0;
}

.studio-logout-form button {
  background: #fff;
  color: var(--site-muted);
  border: 1px solid var(--site-line);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.studio-logout-form button:hover {
  color: #dc2626;
  border-color: #fecaca;
  background: #fff5f5;
}

.studio-main {
  padding: 38px 0 70px;
}

.studio-login-wrap {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.studio-login-card {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 28px;
  box-shadow: var(--site-shadow);
  padding: 30px;
}

.studio-login-heading {
  margin-bottom: 24px;
}

.studio-login-heading h1 {
  color: var(--site-navy);
  font-weight: 900;
  margin: 16px 0 6px;
}

.studio-login-heading p,
.studio-login-help {
  color: var(--site-muted);
}

.studio-login-help {
  text-align: center;
  font-size: 13px;
  margin: 15px 0 0;
}

.studio-validation-summary {
  color: #c01048;
  font-weight: 800;
  margin-bottom: 14px;
}

.studio-page-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
}

.studio-page-heading h1 {
  color: var(--site-navy);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 34px);
  margin: 4px 0 6px;
  line-height: 1.15;
}

.studio-page-heading p {
  color: var(--site-muted);
  margin: 0;
}

.studio-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.studio-stat-card,
.studio-panel {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 39, 66, 0.08);
}

.studio-stat-card {
  padding: 22px;
}

.studio-stat-card span {
  color: var(--site-muted);
  display: block;
  font-weight: 800;
  margin-bottom: 8px;
}

.studio-stat-card strong {
  color: var(--site-navy);
  display: block;
  font-size: 38px;
  line-height: 1;
}

.studio-panel {
  overflow: hidden;
}

.studio-panel-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--site-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.studio-panel-header h2 {
  color: var(--site-navy);
  font-weight: 900;
  margin: 0;
}

.studio-table-wrap {
  overflow-x: auto;
}

.studio-table {
  width: 100%;
  border-collapse: collapse;
}

.studio-table th,
.studio-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--site-line);
  vertical-align: top;
}

.studio-table th {
  color: var(--site-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.studio-table td {
  color: var(--site-text);
}

.studio-table small {
  color: var(--site-muted);
  display: block;
  margin-top: 4px;
}

.studio-status {
  background: var(--site-blue-soft);
  color: var(--site-blue);
  border-radius: 999px;
  display: inline-flex;
  padding: 6px 10px;
  font-weight: 900;
  font-size: 12px;
}

.studio-empty {
  color: var(--site-muted);
  padding: 28px;
  font-weight: 700;
}

.studio-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.studio-filter-bar a {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  color: var(--site-navy);
  font-weight: 800;
  padding: 9px 14px;
}

.studio-filter-bar a.active {
  background: var(--site-navy);
  color: #fff;
}

.studio-message-cell {
  max-width: 360px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .studio-header-inner,
  .studio-header-top,
  .studio-page-heading {
    align-items: start;
    flex-direction: column;
  }

  .studio-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-nav {
    width: 100%;
    order: 2;
  }

  .studio-nav-utility {
    order: 3;
    width: 100%;
    border-left: 0;
    border-top: 1px solid var(--site-line);
    padding-left: 0;
    padding-top: 8px;
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .studio-stats-grid {
    grid-template-columns: 1fr;
  }

  .studio-login-card {
    padding: 22px;
  }
}

.studio-heading-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.studio-form-panel {
  padding-bottom: 0;
}

.studio-edit-form {
  padding: 24px;
}

.studio-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.studio-help-text {
  color: var(--site-muted);
  display: block;
  font-size: 13px;
  line-height: 1.5;
  margin-top: 6px;
}

.studio-upload-box {
  background: #f8fafc;
  border: 1px dashed #cfd8e3;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 16px;
}

.studio-upload-box label {
  color: var(--site-navy);
  display: block;
  font-weight: 900;
  margin-bottom: 10px;
}

.studio-upload-box input[type="file"] {
  width: 100%;
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  padding: 12px;
}

.studio-image-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 12px;
}

.studio-image-preview img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: contain;
  background: #fff;
}

.studio-image-preview span {
  color: var(--site-muted);
  font-weight: 800;
  font-size: 13px;
}

.studio-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--site-line);
}

@media (max-width: 850px) {
  .studio-profile-grid {
    grid-template-columns: 1fr;
  }

  .studio-heading-actions {
    justify-content: flex-start;
  }
}

.studio-form-top-actions {
  background: #f8fafc;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  padding: 16px;
}

/* Phase 6B - Compact profile admin cleanup */
.studio-header {
  position: relative;
}

.compact-heading {
  margin-bottom: 18px;
}

.compact-heading h1 {
  font-size: clamp(34px, 4vw, 52px);
}

.compact-profile-panel {
  max-width: 1180px;
  margin: 0 auto;
}

.studio-panel-subtitle {
  color: var(--site-muted);
  margin: 6px 0 0;
  font-size: 14px;
}

.compact-edit-form {
  padding: 20px 24px 24px;
}

.compact-profile-grid {
  gap: 22px;
}

.profile-form-column {
  min-width: 0;
}

.compact-form-row {
  margin-bottom: 13px;
}

.compact-form-row label {
  font-size: 15px;
  margin-bottom: 6px;
}

.compact-form-row input,
.compact-form-row textarea,
.compact-form-row select {
  border-radius: 13px;
  min-height: 46px;
  padding: 11px 13px;
}

.compact-form-row textarea {
  min-height: 92px;
}

.compact-upload-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.compact-upload-box {
  margin-bottom: 0;
  padding: 14px;
}

.compact-upload-box label {
  margin-bottom: 6px;
}

.studio-maps-howto {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 16px 18px;
}

.studio-maps-howto ol {
  margin: 8px 0 12px 18px;
  padding: 0;
}

.studio-maps-howto li {
  margin-bottom: 4px;
}

.studio-maps-open-link {
  align-items: center;
  background: var(--site-navy);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
  padding: 8px 14px;
  text-decoration: none;
}

.studio-maps-open-link:hover {
  background: #1a3a6b;
  color: #fff;
  text-decoration: none;
}

.studio-pin-location-box {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 12px;
  padding: 18px 20px;
  max-width: 560px;
}

.studio-pin-saved {
  align-items: center;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 8px;
  color: #15803d;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
}

.studio-pin-clear-btn {
  background: none;
  border: 1px solid #86efac;
  border-radius: 6px;
  color: #15803d;
  cursor: pointer;
  font-size: 11px;
  margin-left: auto;
  padding: 2px 8px;
}

.studio-pin-clear-btn:hover {
  background: #bbf7d0;
}

.studio-pin-status {
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
  padding: 10px 14px;
}

.studio-pin-status-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #15803d;
}

.studio-pin-status-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #dc2626;
}

.studio-pin-status-info {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.studio-get-location-btn {
  align-items: center;
  background: #16a34a;
  border: none;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  padding: 10px 18px;
  transition: background 0.15s;
}

.studio-get-location-btn:hover {
  background: #15803d;
}

.studio-get-location-btn:disabled {
  background: #86efac;
  color: #fff;
  cursor: not-allowed;
}

.studio-upload-how-to {
  align-items: flex-start;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  color: #1d4ed8;
  display: flex;
  font-size: 13px;
  gap: 8px;
  line-height: 1.5;
  margin-bottom: 14px;
  padding: 10px 14px;
}

.studio-upload-how-to svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.compact-image-preview {
  padding: 8px;
  margin-bottom: 9px;
}

.compact-image-preview img {
  width: 46px;
  height: 46px;
}

.compact-form-actions {
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
  padding-top: 18px;
}

.compact-form-actions .btn-primary-custom,
.compact-form-actions .btn-secondary-custom {
  min-height: 46px;
  padding: 11px 20px;
}

.studio-form-top-actions {
  display: none !important;
}

@media (max-width: 850px) {
  .compact-edit-form {
    padding: 16px;
  }

  .compact-profile-grid {
    gap: 8px;
  }

  .compact-heading {
    gap: 12px;
  }

  .compact-heading .studio-action-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .studio-main {
    padding: 22px 0 48px;
  }

  .studio-header-inner {
    min-height: auto;
    padding: 14px 0;
  }

  .studio-brand {
    width: 100%;
  }

  .studio-nav {
    overflow-x: auto;
    width: 100%;
    gap: 6px;
  }

  .studio-nav a {
    font-size: 12px;
    padding: 7px 11px;
  }

  .studio-nav-utility {
    gap: 6px;
  }

  .studio-view-site-link,
  .studio-logout-form button {
    font-size: 12px;
    padding: 7px 11px;
  }

  .studio-page-heading h1 {
    font-size: 34px;
  }

  .studio-panel-header {
    padding: 16px;
  }

  .studio-panel-header h2 {
    font-size: 24px;
  }

  .compact-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .compact-form-actions .btn-primary-custom,
  .compact-form-actions .btn-secondary-custom {
    width: 100%;
  }
}

/* Phase 8 - Appointment management */
.studio-appointments-table th:last-child,
.studio-appointments-table td:last-child {
  min-width: 170px;
}

.studio-table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.studio-table-actions form {
  margin: 0;
}

/* WhatsApp quick action in appointments table */
.studio-wa-link {
  align-items: center;
  background: #25d366;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 4px;
  padding: 5px 9px;
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.studio-wa-link:hover {
  background: #128c7e;
  color: #fff;
}

/* Status color variants */
.studio-status-new {
  background: #eff6ff;
  color: #1d4ed8;
}

.studio-status-contacted {
  background: #f0fdf4;
  color: #15803d;
}

.studio-status-closed {
  background: #f1f5f9;
  color: #475467;
}

/* ===== CONTENT PAGE (studio-content-*) ===== */
.studio-content-sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.studio-content-section-title {
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.studio-content-preview-body {
  padding: 16px 20px 20px;
}

.studio-preview-title {
  color: var(--site-navy);
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 6px;
  line-height: 1.4;
}

.studio-preview-subtitle {
  color: #475467;
  font-size: 13px;
  margin: 0 0 6px;
  line-height: 1.5;
}

.studio-preview-body {
  color: var(--site-muted);
  font-size: 13px;
  margin: 0 0 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.studio-preview-empty {
  color: #94a3b8;
  font-size: 13px;
  font-style: italic;
  margin: 0 0 12px;
}

.studio-preview-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.studio-visibility-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.studio-visibility-badge.visible {
  background: #ecfdf3;
  color: #027a48;
  border: 1px solid #abefc6;
}

.studio-visibility-badge.hidden {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #cbd5e1;
}

/* Hero images panel */
.studio-hero-images-body {
  padding: 0 20px 24px;
}

.studio-hero-empty-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.studio-hero-empty-notice strong {
  display: block;
  color: var(--site-navy);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.studio-hero-empty-notice span {
  color: var(--site-muted);
  font-size: 13px;
  line-height: 1.5;
}

.studio-hero-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.studio-hero-img-thumb {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #f1f5f9;
  border: 1px solid var(--site-line);
}

.studio-hero-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.studio-hero-img-thumb:hover img {
  transform: scale(1.04);
}

.studio-default-image-badge {
  background: rgba(15, 39, 66, 0.9);
  border-radius: 999px;
  bottom: 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  left: 8px;
  padding: 4px 8px;
  position: absolute;
}

.studio-hero-img-del-form {
  position: absolute;
  top: 7px;
  right: 7px;
  margin: 0;
}

.studio-hero-img-del-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(220, 38, 38, 0.88);
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 9px;
  transition: background 0.15s ease;
  backdrop-filter: blur(4px);
}

.studio-hero-img-del-btn:hover {
  background: #dc2626;
}

.studio-hero-upload-form {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.studio-hero-upload-form .studio-upload-box {
  flex: 1;
  min-width: 240px;
  cursor: pointer;
}

.studio-upload-selected {
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  padding: 2px 0;
}

.studio-small-link-blue {
  align-items: center;
  color: #2563eb;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 4px;
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.studio-small-link-blue:hover {
  color: #1d4ed8;
}

@media (max-width: 991px) {
  .studio-content-sections-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .studio-hero-img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.studio-table-actions button,
.studio-small-link {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  color: var(--site-navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 8px 10px;
}

.studio-small-link {
  background: var(--site-navy);
  color: #fff;
}

.studio-small-link:hover {
  color: #fff;
}

.studio-status-new {
  background: #eaf2ff;
  color: #2563eb;
}

.studio-status-contacted {
  background: #ecfdf3;
  color: #027a48;
}

.studio-status-closed {
  background: #f2f4f7;
  color: #475467;
}

.studio-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 22px;
  align-items: start;
}

.studio-detail-body,
.studio-detail-form {
  padding: 22px;
}

.studio-detail-row {
  border-bottom: 1px solid var(--site-line);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 14px 0;
}

.studio-detail-row:first-child {
  padding-top: 0;
}

.studio-detail-row span,
.studio-detail-message span {
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.studio-detail-row strong {
  color: var(--site-text);
}

.studio-detail-message {
  padding-top: 18px;
}

.studio-detail-message p {
  background: #f8fafc;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  color: var(--site-text);
  line-height: 1.7;
  margin: 10px 0 0;
  padding: 16px;
}

.studio-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .studio-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .studio-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .studio-contact-actions .btn-primary-custom,
  .studio-contact-actions .btn-secondary-custom {
    width: 100%;
  }
}

/* Phase 9 - SMTP admin */
.smtp-enable-box {
  background: #f8fafc;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 16px;
}

.smtp-enable-box small {
  color: var(--site-muted);
  display: block;
  margin-top: 6px;
}

.smtp-check {
  align-items: center;
  color: var(--site-navy);
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
}

.smtp-check input {
  width: 18px;
  height: 18px;
}

.smtp-note-box,
.smtp-warning-box {
  border-radius: 18px;
  margin-bottom: 18px;
  padding: 16px;
  line-height: 1.6;
}

.smtp-note-box {
  background: #eef6ff;
  border: 1px solid #bfdbfe;
  color: #0f2742;
}

.smtp-warning-box {
  background: #fff8eb;
  border: 1px solid #fedf89;
  color: #7a4b00;
}

.smtp-note-box p,
.smtp-warning-box p {
  margin: 6px 0 0;
}

.smtp-example {
  background: #ffffff;
  border: 1px solid #d8e7ff;
  border-radius: 14px;
  color: #344054;
  font-size: 14px;
  margin-top: 12px;
  padding: 12px;
}

/* Phase 10 - Services and FAQ admin */
.studio-mini-grid {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 14px;
}

@media (max-width: 620px) {
  .studio-mini-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOMEPAGE ENHANCEMENTS — Phase 2
   ========================================================= */

/* --- Section heading gold accent underline --- */
.section-heading h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #d97706, #f59e0b 80%, transparent 100%);
  border-radius: 2px;
  margin-top: 18px;
}

/* --- Credibility bar top gold accent --- */
.credibility-bar {
  border-top: 3px solid var(--site-gold);
  padding: 20px 0;
}
.credibility-item {
  transition: color 0.2s ease;
}
.credibility-item:hover {
  color: var(--site-gold-dark, #b45309);
}

/* --- Stats bar — bigger numbers, subtle animation on load --- */
.stat-number {
  font-size: clamp(42px, 4.2vw, 66px);
}
.stats-bar {
  box-shadow: 0 8px 40px rgba(184, 78, 2, 0.25);
}

/* --- About — bigger experience badge number --- */
.about-exp-num {
  font-size: 60px;
}
.about-exp-badge {
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.18);
}
.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 36px;
  border: 1px solid rgba(217, 119, 6, 0.18);
  pointer-events: none;
}

/* --- ITR benefits — background number watermark --- */
.itr-benefits-grid {
  counter-reset: benefit-num;
}
.itr-benefit-card {
  position: relative;
  overflow: hidden;
}
.itr-benefit-card::after {
  counter-increment: benefit-num;
  content: '0' counter(benefit-num);
  position: absolute;
  bottom: -10px;
  right: 4px;
  color: rgba(255, 255, 255, 0.05);
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.itr-benefit-icon,
.itr-benefit-title,
.itr-benefit-note {
  position: relative;
  z-index: 1;
}

/* --- ITR benefits CTA button --- */
.itr-cta-wrap {
  text-align: center;
  margin-top: 52px;
}
.itr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  border: none;
  border-radius: 999px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 34px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 12px 34px rgba(217, 119, 6, 0.42);
  cursor: pointer;
}
.itr-cta-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(217, 119, 6, 0.52);
}

/* --- Services — bigger icon, more dramatic hover --- */
.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(15, 39, 66, 0.15);
  border-color: rgba(217, 119, 6, 0.3);
}
.service-card:hover::before {
  height: 4px;
  background: linear-gradient(90deg, #d97706, #f59e0b);
}
.service-card h3 {
  font-size: 19px;
}

/* --- Promise section — bigger headline --- */
.promise-card h2 {
  font-size: clamp(30px, 4.2vw, 56px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.03em !important;
}

/* --- FAQ — inset accent + hover shadow --- */
.faq-item[open] {
  box-shadow: inset 3px 0 0 var(--site-gold), 0 6px 28px rgba(15, 39, 66, 0.07);
}
.faq-item:hover:not([open]) {
  box-shadow: 0 6px 24px rgba(15, 39, 66, 0.07);
}
.faq-item p {
  animation: faqReveal 0.3s ease;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.faq-item summary {
  font-size: 17px;
}

/* --- Appointment form — gold top accent --- */
.appointment-form {
  border-top: 4px solid var(--site-gold);
}

/* --- Contact box — slightly richer card --- */
.contact-box {
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(15, 39, 66, 0.06);
}

/* --- Hero profile glass — available badge --- */
.hero-available-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  color: #4ade80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.hero-available-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulseAvail 2.2s ease-in-out infinite;
}
@keyframes pulseAvail {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

/* --- Map --- */
.map-full-frame {
  height: 520px;
}
.section-map {
  padding-bottom: 0;
}

/* --- Animate-on-scroll — slightly longer translate for more depth --- */
.animate-on-scroll {
  transform: translateY(36px);
}

/* --- Mobile refinements --- */
@media (max-width: 767px) {
  .section-heading h2::after {
    width: 40px;
    margin-top: 14px;
  }
  .itr-benefit-card::after {
    font-size: 56px;
  }
}

/* =========================================================
   BLOG SYSTEM
   ========================================================= */

/* --- Blog hero bar (list page top) --- */
.blog-hero-bar {
  background: var(--site-navy);
  padding: 72px 0 60px;
  border-bottom: 3px solid var(--site-gold);
}
.blog-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.blog-hero-title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  color: #fff;
  margin: 10px 0 12px;
  line-height: 1.2;
}
.blog-hero-sub {
  color: #94a3b8;
  font-size: 16px;
  max-width: 560px;
  margin: 0;
}
.blog-hero-cta { white-space: nowrap; }

/* --- Privacy policy --- */
.privacy-hero {
  padding-bottom: 48px;
  padding-top: 56px;
}

.privacy-section {
  background: var(--site-bg-soft);
  padding: 56px 0 72px;
}

.privacy-card {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgba(15, 39, 66, 0.08);
  margin: 0 auto;
  max-width: 820px;
  padding: 38px 42px;
}

.privacy-card h2:first-of-type {
  margin-top: 28px;
}

.privacy-updated {
  color: var(--site-muted);
  font-size: 13px;
  font-weight: 600;
}

/* --- Blog list section --- */
.blog-list-section { padding: 60px 0 80px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(15, 39, 66, 0.07);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(15, 39, 66, 0.13);
}

.blog-card-img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }

.blog-card-img-placeholder {
  background: linear-gradient(135deg, #e8f0fa 0%, #dce6f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}

.blog-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #64748b; margin-bottom: 10px; flex-wrap: wrap; }
.blog-meta-sep { color: #cbd5e1; }
.blog-card-tag {
  background: var(--site-gold-soft);
  color: var(--site-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card-title { font-size: 18px; font-weight: 700; color: var(--site-navy); line-height: 1.3; margin: 0 0 10px; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--site-gold); }
.blog-card-excerpt { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--site-gold);
  text-decoration: none;
  margin-top: auto;
}
.blog-card-read-more:hover { color: var(--site-navy); }

/* --- Pagination --- */
.blog-pagination { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; }
.blog-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  color: var(--site-navy);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.blog-page-btn:hover { border-color: var(--site-gold); color: var(--site-gold); }
.blog-page-info { font-size: 14px; color: #64748b; }

/* --- Blog post page --- */
.blog-post-header {
  min-height: 380px;
  background: var(--site-navy);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}
.blog-post-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,15,26,0.96) 0%, rgba(6,15,26,0.65) 60%, rgba(6,15,26,0.4) 100%);
}
.blog-post-header-content { position: relative; z-index: 2; }

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.blog-breadcrumb a { color: #94a3b8; text-decoration: none; }
.blog-breadcrumb a:hover { color: #fff; }
.blog-breadcrumb span:last-child { color: #64748b; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 280px; }

.blog-post-title {
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 18px;
  max-width: 800px;
}
.blog-post-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #94a3b8;
  font-size: 13px;
}
.blog-post-author { display: flex; align-items: center; gap: 5px; color: #94a3b8; }
time { display: flex; align-items: center; gap: 5px; }
.blog-post-tags-row { display: flex; gap: 6px; flex-wrap: wrap; }
.blog-tag-pill {
  background: rgba(217,119,6,0.18);
  color: #fbbf24;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 52px 0 72px;
  align-items: start;
}

.blog-post-body-col {}

.blog-post-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  font-style: italic;
  border-left: 3px solid var(--site-gold);
  padding-left: 20px;
  margin-bottom: 32px;
}

/* --- Prose (article body) --- */
.prose { line-height: 1.8; color: #334155; font-size: 16px; }
.prose h2 { font-size: 24px; font-weight: 700; color: var(--site-navy); margin: 36px 0 16px; }
.prose h3 { font-size: 20px; font-weight: 700; color: var(--site-navy); margin: 28px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--site-gold); text-decoration: underline; }
.prose a:hover { color: var(--site-navy); }
.prose strong { color: var(--site-navy); }
.prose blockquote {
  border-left: 3px solid var(--site-gold);
  padding: 12px 20px;
  background: var(--site-gold-soft);
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
  color: #475569;
}
.prose img { max-width: 100%; border-radius: 10px; margin: 24px 0; }
.prose hr { border: none; border-top: 2px solid #e2e8f0; margin: 36px 0; }

.blog-post-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 16px;
}
.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
}
.blog-back-link:hover { color: var(--site-navy); }
.blog-share-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #94a3b8; }
.blog-share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.blog-share-btn:hover { opacity: 0.8; }
.blog-share-wa { background: #25d366; color: #fff; }

/* --- Sidebar --- */
.blog-post-sidebar { position: sticky; top: 100px; }
.blog-sidebar-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(15,39,66,0.08);
  border-top: 3px solid var(--site-gold);
}
.blog-sidebar-card h3 { font-size: 16px; font-weight: 700; color: var(--site-navy); margin: 0 0 10px; }
.blog-sidebar-card p { font-size: 14px; color: #64748b; margin-bottom: 16px; line-height: 1.6; }
.blog-sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }

/* --- Related posts --- */
.blog-related-section { background: #f8fafc; padding: 56px 0; border-top: 2px solid #e2e8f0; }
.blog-related-heading { font-size: 22px; font-weight: 700; color: var(--site-navy); margin-bottom: 24px; }
.blog-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.blog-related-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(15,39,66,0.06);
  overflow: hidden;
  transition: transform 0.2s ease;
}
.blog-related-card:hover { transform: translateY(-4px); }
.blog-related-card-body { padding: 20px; }
.blog-related-card-body h3 { font-size: 15px; font-weight: 700; color: var(--site-navy); margin: 6px 0 8px; line-height: 1.4; }
.blog-related-card-body h3 a { color: inherit; text-decoration: none; }
.blog-related-card-body h3 a:hover { color: var(--site-gold); }
.blog-related-card-body p { font-size: 13px; color: #64748b; line-height: 1.5; margin-bottom: 10px; }

/* --- Empty state --- */
.blog-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #94a3b8;
}
.blog-empty-state svg { display: block; margin: 0 auto 16px; opacity: 0.3; }
.blog-empty-state p { font-size: 16px; }

/* --- Homepage blog preview section --- */
.section-blog-preview { background: #f8fafc; }
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.home-blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(15,39,66,0.06);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.home-blog-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(15,39,66,0.12); }
.home-blog-card-img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; }
.home-blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.home-blog-card:hover .home-blog-card-img-wrap img { transform: scale(1.04); }
.home-blog-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.home-blog-card-body h3 { font-size: 17px; font-weight: 700; color: var(--site-navy); margin: 8px 0 8px; line-height: 1.35; }
.home-blog-card-body h3 a { color: inherit; text-decoration: none; }
.home-blog-card-body h3 a:hover { color: var(--site-gold); }
.home-blog-card-body p { font-size: 14px; color: #64748b; line-height: 1.6; margin-bottom: 14px; flex: 1; }
.home-blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

/* --- Blog admin: 3-step bar --- */
.blog-steps-bar {
  display: flex; align-items: center; gap: 12px;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 14px 20px; margin-bottom: 22px; flex-wrap: wrap;
}
.blog-step { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #0f172a; }
.blog-step em { font-weight: 400; font-style: normal; color: #64748b; }
.blog-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; background: #0f2742;
  color: #fff; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.blog-step-arrow { color: #cbd5e1; font-size: 18px; }

/* --- Blog admin: simple panel label --- */
.blog-simple-panel { padding: 24px !important; }
.blog-simple-step-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 700; color: #0f172a;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid #f1f5f9;
}

/* --- Blog admin: publish toggle wrap --- */
.blog-publish-toggle-wrap { padding: 4px 0; }

/* --- Blog admin: advanced SEO collapsible --- */
.blog-advanced-seo { margin-bottom: 20px; }
.blog-advanced-summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none; padding: 12px 18px;
  background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: #475569;
  user-select: none;
}
.blog-advanced-summary::-webkit-details-marker { display: none; }
.blog-advanced-summary:hover { background: #e8edf2; }
.blog-advanced-note { font-size: 12px; font-weight: 400; color: #94a3b8; }
details[open] .blog-advanced-summary { border-radius: 10px 10px 0 0; border-bottom-color: transparent; }

/* --- Blog admin: page map diagram --- */
.blog-page-map {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px 16px;
  margin-bottom: 22px;
}
.bpm-label { font-size: 12px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.bpm-diagram { display: flex; flex-direction: column; gap: 0; border: 2px solid #e2e8f0; border-radius: 8px; overflow: hidden; background: #fff; max-width: 480px; }
.bpm-zone { padding: 10px 12px; }
.bpm-zone-header { background: #0f2742; display: flex; align-items: flex-start; gap: 8px; padding: 12px; }
.bpm-zone-body { background: #fff; display: flex; gap: 10px; border-top: 1px solid #e2e8f0; }
.bpm-zone-inner { flex: 1; padding: 10px 0 10px 10px; }
.bpm-sidebar { width: 90px; padding: 10px 10px 10px 0; flex-shrink: 0; }
.bpm-sidebar-box { background: #f1f5f9; border-radius: 6px; padding: 8px; }
.bpm-zone-tag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; font-size: 11px; font-weight: 700;
  flex-shrink: 0; color: #fff;
}
.bpm-tag-a { background: #0f2742; }
.bpm-tag-b { background: #d97706; }
.bpm-tag-c { background: #2563eb; }
.bpm-tag-d { background: #7c3aed; }
.bpm-line { height: 5px; background: rgba(255,255,255,0.25); border-radius: 3px; margin-bottom: 4px; }
.bpm-zone-body .bpm-line { background: #e2e8f0; }
.bpm-line-title { width: 70%; height: 8px; }
.bpm-line-meta  { width: 45%; height: 4px; }
.bpm-line-heading { width: 50%; height: 6px; background: #0f2742 !important; opacity: 0.7; }
.bpm-line-short { width: 55%; }
.bpm-pills-row { display: flex; gap: 4px; margin-top: 5px; }
.bpm-pill { height: 8px; width: 36px; background: #d97706; border-radius: 99px; opacity: 0.8; }
.bpm-pill-sm { width: 28px; }
.bpm-quote-block { display: flex; align-items: flex-start; gap: 6px; border-left: 3px solid #d97706; padding-left: 6px; }
.bpm-quote-lines { flex: 1; }
.bpm-legend { background: #f8fafc; border-top: 1px solid #e2e8f0; padding: 8px 12px; display: flex; flex-wrap: wrap; gap: 10px; }
.bpm-legend span { font-size: 12px; color: #475569; display: flex; align-items: center; gap: 4px; }

/* --- Blog admin: field badges --- */
.bfg-badge {
  font-size: 11px; font-weight: 500; padding: 2px 8px;
  border-radius: 999px; margin-left: 6px; vertical-align: middle;
}
.bfg-badge-seo      { background: #dcfce7; color: #15803d; }
.bfg-badge-optional { background: #fef3c7; color: #92400e; }

/* --- Blog admin: panel subtitle --- */
.studio-panel-subtitle { font-size: 13px; color: #64748b; font-weight: 400; margin-top: 2px; display: block; }

/* --- Blog admin: help text example --- */
.studio-help-example {
  display: block; margin-top: 4px; padding: 5px 10px;
  background: #f1f5f9; border-left: 3px solid #cbd5e1;
  border-radius: 0 4px 4px 0; color: #475569; font-size: 12px; font-style: italic;
}

/* --- Blog admin: editor guide box --- */
.blog-editor-guidebox {
  background: #fffbeb; border: 1px solid #fcd34d; border-radius: 8px;
  padding: 10px 14px; font-size: 13px; color: #78350f; margin-bottom: 10px; line-height: 1.6;
}
.blog-editor-guidebox code {
  background: #fef3c7; border-radius: 4px; padding: 1px 5px; font-size: 12px; font-weight: 700;
}

/* --- Blog admin: SEO explain box --- */
.blog-seo-explain {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px;
  padding: 10px 14px; font-size: 13px; color: #14532d; margin-bottom: 14px; line-height: 1.6;
}

/* --- Blog admin: char counter --- */
.studio-char-counter { font-size: 12px; color: #64748b; margin-top: 4px; text-align: right; }

/* --- Blog admin: Google SERP preview --- */
.google-serp-preview {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px 16px;
}
.serp-label { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.serp-url   { font-size: 12px; color: #188038; margin-bottom: 3px; }
.serp-title { font-size: 18px; color: #1a0dab; font-weight: 400; line-height: 1.3; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.serp-desc  { font-size: 13px; color: #4d5156; line-height: 1.5; }

/* --- Blog admin: publish box --- */
.blog-publish-box {
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 14px 16px;
}
.publish-hint-live  { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 6px; padding: 8px 12px; font-size: 13px; color: #15803d; margin-top: 8px; }
.publish-hint-draft { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 6px; padding: 8px 12px; font-size: 13px; color: #64748b; margin-top: 8px; }

/* --- Change password page --- */
.password-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.password-input-wrap input {
  width: 100%;
  padding-right: 44px !important;
}
.password-toggle-btn {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
  display: flex;
  align-items: center;
  line-height: 1;
}
.password-toggle-btn:hover { color: #475569; }
.change-pw-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: #78350f;
  margin-top: 20px;
  line-height: 1.5;
}

/* --- Blog admin: tags live preview --- */
.tags-live-preview { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; min-height: 28px; align-items: center; }

/* --- Admin blog editor --- */
.blog-editor-toolbar {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 6px 8px;
  flex-wrap: wrap;
}
.blog-editor-toolbar button {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 13px;
  cursor: pointer;
  color: var(--site-navy);
  transition: all 0.15s ease;
  line-height: 1.4;
}
.blog-editor-toolbar button:hover { background: var(--site-gold-soft); border-color: var(--site-gold); color: var(--site-gold); }
.editor-toolbar-sep { width: 1px; height: 20px; background: #e2e8f0; margin: 0 4px; }

.blog-editor-area {
  min-height: 360px;
  border: 1px solid #e2e8f0;
  border-radius: 0 0 8px 8px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #1e293b;
  background: #fff;
  outline: none;
  overflow-y: auto;
}
.blog-editor-area:focus { border-color: #93c5fd; box-shadow: 0 0 0 3px rgba(147,197,253,0.3); }
.blog-editor-area h2 { font-size: 20px; font-weight: 700; color: var(--site-navy); margin: 20px 0 10px; }
.blog-editor-area h3 { font-size: 17px; font-weight: 700; color: var(--site-navy); margin: 16px 0 8px; }
.blog-editor-area p { margin-bottom: 14px; }
.blog-editor-area ul, .blog-editor-area ol { padding-left: 22px; margin-bottom: 14px; }

/* --- Studio toggle --- */
.studio-toggle-label { display: flex; align-items: center; gap: 12px; cursor: pointer; user-select: none; }
.studio-toggle-input { display: none; }
.studio-toggle-track {
  width: 44px;
  height: 24px;
  background: #cbd5e1;
  border-radius: 12px;
  position: relative;
  transition: background 0.25s ease;
  flex-shrink: 0;
}
.studio-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.studio-toggle-input:checked + .studio-toggle-track { background: #16a34a; }
.studio-toggle-input:checked + .studio-toggle-track::after { transform: translateX(20px); }

/* --- Blog responsive --- */
@media (max-width: 991px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-post-sidebar { position: static; }
}
@media (max-width: 575px) {
  .blog-hero-bar { padding: 48px 0 40px; }
  .privacy-card { padding: 26px 22px; }
  .privacy-section { padding: 36px 0 52px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero-inner { flex-direction: column; }
  .blog-post-header { min-height: 300px; }
  .blog-post-title { font-size: 24px; }
  .home-blog-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TESTIMONIALS STRIP
   ========================================================= */

.testimonials-strip-section {
  padding: 56px 0 60px;
  overflow: hidden;
  background: var(--site-navy);
}
.testimonials-strip-section .section-label {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
}
.testimonials-strip-section h2 { color: #fff; }
.testimonials-strip-section .section-heading h2::after { background: linear-gradient(90deg, var(--site-gold), transparent); }

.testimonials-track-wrap {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonialScroll 40s linear infinite;
}

.testimonials-track-wrap:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px 26px;
  width: 300px;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.testimonials-track-wrap:hover .testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(217,119,6,0.4);
}

.testimonial-stars {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.star-filled { color: #fbbf24; }
.star-empty  { color: rgba(255,255,255,0.2); }

.testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.testimonial-meta {
  font-size: 12px;
  color: var(--site-gold);
  font-weight: 500;
}

.testimonial-source-link {
  align-items: center;
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  gap: 4px;
  margin-top: 7px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonial-source-link:hover {
  color: #fff;
}

.studio-source-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-top: 20px;
  padding: 16px;
}

.studio-source-box h3 {
  color: var(--site-navy);
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 5px;
}

.studio-source-box > p {
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 14px;
}

/* Testimonial editor: keep optional metadata clear and custom controls isolated
   from the broad form input/label rules used throughout Studio. */
.studio-edit-form .validation-summary-valid {
  display: none;
}

.studio-edit-form .testimonial-form-content {
  padding: 20px 22px 22px;
}

.studio-edit-form .testimonial-form-content > .compact-form-row:last-child {
  margin-bottom: 0;
}

.studio-body .studio-optional-badge {
  background: #f1f5f9;
  border-radius: 999px;
  color: #64748b;
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  margin-left: 6px;
  padding: 4px 7px;
  vertical-align: middle;
}

.studio-body .form-row label.studio-toggle-label {
  align-items: center;
  color: var(--site-navy);
  display: inline-flex;
  gap: 10px;
  margin: 0;
  user-select: none;
}

.studio-body .studio-toggle-label .studio-toggle-input {
  display: none;
}

.studio-body .studio-toggle-label .studio-toggle-track {
  display: block;
}

.studio-edit-form .studio-source-box .compact-form-row:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .testimonial-card { width: 260px; padding: 18px 20px; }
  .testimonials-strip-section { padding: 44px 0 48px; }
}

/* =========================================================
   STUDIO ADMIN — ENHANCED UI (v2)
   ========================================================= */

/* ── Nav appointment badge ── */
.studio-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 5px;
  line-height: 1;
  vertical-align: middle;
}

/* ── Small inline action buttons for tables ── */
.studio-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--site-line);
  background: #fff;
  color: var(--site-navy);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
  white-space: nowrap;
  line-height: 1.5;
}
.studio-btn-sm:hover {
  background: #f1f5f9;
  color: var(--site-navy);
  border-color: #94a3b8;
}
.studio-btn-sm-success {
  color: #15803d;
  border-color: #bbf7d0;
  background: #f0fdf4;
}
.studio-btn-sm-success:hover {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.studio-btn-sm-warning {
  color: #b45309;
  border-color: #fde68a;
  background: #fffbeb;
}
.studio-btn-sm-warning:hover {
  background: #fef3c7;
  border-color: #fcd34d;
  color: #92400e;
}
.studio-btn-sm-danger {
  color: #b91c1c;
  border-color: #fecaca;
  background: #fff5f5;
}
.studio-btn-sm-danger:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #991b1b;
}
.studio-btn-sm-blue {
  color: #1d4ed8;
  border-color: #bfdbfe;
  background: #eff6ff;
}
.studio-btn-sm-blue:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1e40af;
}
.studio-table-actions .studio-btn-sm { margin-right: 4px; }
.studio-table-actions .studio-btn-sm:last-child { margin-right: 0; }

/* ── Dashboard stat icons ── */
.studio-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 12px;
}
.studio-stat-total .studio-stat-icon  { background: #e8edf5; color: var(--site-navy); }
.studio-stat-new .studio-stat-icon    { background: #fef9c3; color: #a16207; }
.studio-stat-contacted .studio-stat-icon { background: #dbeafe; color: #1d4ed8; }
.studio-stat-closed .studio-stat-icon { background: #dcfce7; color: #15803d; }

/* updated stat card layout */
.studio-stat-card {
  display: flex;
  flex-direction: column;
  padding: 20px 22px;
}
.studio-stat-card span { font-size: 12px; font-weight: 600; color: var(--site-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.studio-stat-card strong { font-size: 32px; font-weight: 800; line-height: 1.1; }

/* ── Dashboard quick actions ── */
.studio-quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}
.studio-quick-card {
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--site-navy);
  font-weight: 600;
  font-size: 13px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.studio-quick-card:hover {
  border-color: var(--site-blue);
  box-shadow: 0 2px 10px rgba(37,99,235,0.1);
  color: var(--site-blue);
  background: #f5f8ff;
}
.studio-quick-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.studio-quick-card-icon.bg-blue    { background: #dbeafe; color: #1d4ed8; }
.studio-quick-card-icon.bg-green   { background: #dcfce7; color: #15803d; }
.studio-quick-card-icon.bg-gold    { background: #fef3c7; color: #a16207; }
.studio-quick-card-icon.bg-purple  { background: #ede9fe; color: #6d28d9; }
.studio-quick-card-icon.bg-rose    { background: #ffe4e6; color: #be123c; }
.studio-quick-card-icon.bg-navy    { background: #e8edf5; color: var(--site-navy); }
.studio-quick-card-icon.bg-teal    { background: #ccfbf1; color: #0f766e; }
.studio-quick-card-label { line-height: 1.3; }

/* ── Dashboard section heading ── */
.studio-section-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--site-muted);
  margin: 28px 0 12px;
}

@media (max-width: 575px) {
  .studio-quick-actions { grid-template-columns: repeat(2, 1fr); }
  .studio-stat-card strong { font-size: 26px; }
}

/* =========================================================
   STUDIO LOGIN PAGE — SPLIT-SCREEN REDESIGN v2
   (person-centric left panel + polished right form)
   ========================================================= */

/* Reset container constraints */
.studio-login-page .studio-main {
  padding: 0;
  background: transparent;
}
.studio-login-page .studio-main > .container {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

/* Header: unified with dark left panel */
.studio-login-page .studio-header {
  background: #06172a;
  border-bottom-color: rgba(255,255,255,0.05);
  border-top-color: rgba(255,255,255,0.08);
}
.studio-login-page .studio-brand strong { color: #fff; }
.studio-login-page .studio-brand small  { color: rgba(255,255,255,0.4); }
.studio-login-page .studio-brand:hover strong { color: rgba(255,255,255,0.85); }
.studio-login-page .studio-brand-icon {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.13);
}
.studio-login-page .studio-brand-icon.has-logo {
  background: #fff;
  border-color: rgba(255,255,255,0.18);
}

/* Body colour = same dark so no flash/gap */
.studio-login-page { background: #06172a; }

/* Outer wrapper — full-height two-column flex */
.slp-wrap {
  display: flex;
  min-height: calc(100vh - 68px);
}

/* ════════════════════════════════════
   LEFT PANEL — person identity
   ════════════════════════════════════ */
.slp-left {
  width: 420px;
  flex-shrink: 0;
  background: linear-gradient(170deg, #06172a 0%, #0e2640 55%, #0b1f38 100%);
  display: flex;
  align-items: stretch;       /* let inner fill full height */
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* dot-grid texture */
.slp-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
/* warm gold glow bottom-left */
.slp-left::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(217,119,6,0.11);
  filter: blur(80px);
  pointer-events: none;
}
/* inner: full height, content distributed top→mid→bottom */
.slp-left-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 56px 48px;
}

/* ── identity block (top) ── */
.slp-identity { display: flex; flex-direction: column; align-items: flex-start; }

/* Profile photo ring */
.slp-photo-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(217,179,100,0.75), rgba(217,119,6,0.25));
  margin-bottom: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
  flex-shrink: 0;
}
.slp-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid #0e2640;
  display: block;
}

/* Fallback monogram */
.slp-mark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Name & role */
.slp-name {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 5px;
  line-height: 1.2;
}
.slp-role {
  color: rgba(217,179,100,0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.slp-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.38);
  font-size: 12px;
  font-weight: 500;
  margin: 0;
}

/* ── middle block (tagline + stats) ── */
.slp-body { display: flex; flex-direction: column; }

/* Separator */
.slp-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), transparent);
  margin: 0 0 20px;
}

/* Tagline */
.slp-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Stats row */
.slp-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 14px 18px;
  width: 100%;
}
.slp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.slp-stat strong {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.slp-stat span {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.slp-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── bottom badge ── */
.slp-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ════════════════════════════════════
   RIGHT PANEL — login form
   ════════════════════════════════════ */
.slp-right {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 56px 60px;
  border-left: 1px solid #e8edf2;
}

/* Scrollable form area — takes available space, centers content */
.slp-form-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 370px;
}

/* Footer anchored at bottom */
.slp-right-footer {
  font-size: 12px;
  color: #b0bec9;
  text-align: center;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
  max-width: 370px;
  letter-spacing: 0.01em;
}

/* Brand row */
.slp-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.slp-brand-dot {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--site-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(15,39,66,0.22);
}

.slp-brand-dot.has-logo {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(15,39,66,0.1);
  padding: 3px 6px;
  width: 58px;
}

.slp-brand-dot.has-logo img {
  display: block;
  height: 26px;
  max-width: 46px;
  object-fit: contain;
  width: auto;
}

.slc-caps-warning {
  color: #b45309;
  display: none;
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
}

.slc-caps-warning.is-visible {
  display: block;
}
.slp-brand-label {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
}

/* Form heading */
.slp-form-header { margin-bottom: 28px; }
.slp-form-header h2 {
  font-size: 27px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
  line-height: 1.2;
}
.slp-form-header p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}

/* Form fields */
.slc-field { margin-bottom: 16px; }
.slc-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 7px;
}
.slc-field input {
  width: 100%;
  height: 46px;
  border: 1.5px solid #e5e9ef;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 14px;
  color: var(--site-text);
  background: #f9fafc;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  outline: none;
  box-sizing: border-box;
}
.slc-field input:focus {
  border-color: var(--site-navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,39,66,0.08);
}
.slc-pw-wrap { position: relative; }
.slc-pw-wrap input { padding-right: 44px; }
.slc-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #b0bec9;
  display: flex;
  align-items: center;
}
.slc-pw-toggle:hover { color: var(--site-navy); }

/* Submit button */
.slc-submit {
  width: 100%;
  height: 48px;
  background: var(--site-navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.15s, box-shadow 0.15s, transform 0.12s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.slc-submit:hover {
  background: #163459;
  box-shadow: 0 6px 22px rgba(15,39,66,0.28);
  transform: translateY(-1px);
}
.slc-submit:active { transform: translateY(0); box-shadow: none; }

/* Error / alert */
.slc-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  padding: 10px 14px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.slc-error:empty { display: none; }
.slc-alert { border-radius: 8px; margin-bottom: 16px; }

/* Mobile: stack */
@media (max-width: 820px) {
  .slp-wrap  { flex-direction: column; }
  .slp-left  { width: 100%; min-height: unset; }
  .slp-left-inner { padding: 40px 32px; flex-direction: row; flex-wrap: wrap; gap: 0; }
  .slp-identity { width: 100%; margin-bottom: 20px; }
  .slp-body  { width: 100%; }
  .slp-bottom-badge { margin-top: 20px; }
  .slp-right { padding: 40px 28px; border-left: none; border-top: 1px solid #e8edf2; }
  .slp-form-area { max-width: 100%; }
  .slp-right-footer { max-width: 100%; }
}
@media (max-width: 480px) {
  .slp-left-inner { padding: 32px 20px; }
  .slp-right { padding: 32px 16px; }
  .slp-name  { font-size: 20px; }
  .slp-stats { padding: 12px 14px; }
}

/* ── Table row hover ── */
.studio-table tbody tr:hover { background: #f8fafc; }
.studio-table tbody tr:last-child td { border-bottom: none; }

/* ── Panel header tighten ── */
.studio-panel-header h2 { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }

/* ── Active nav link — stronger fill ── */
.studio-nav a.active {
  background: var(--site-navy);
  color: #fff;
  border-color: var(--site-navy);
  box-shadow: 0 2px 8px rgba(15,39,66,0.18);
}

/* ── Admin section-label — slightly subdued vs public pages ── */
.studio-body .section-label {
  font-size: 10px;
  padding: 4px 10px;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

/* Login page heading styles moved to STUDIO LOGIN PAGE — PREMIUM REDESIGN section */

/* ── Studio form inputs — tighter radius + cleaner focus ── */
.studio-body .form-row input,
.studio-body .form-row select,
.studio-body .form-row textarea,
.compact-form-row input,
.compact-form-row select,
.compact-form-row textarea {
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.studio-body .form-row input:focus,
.studio-body .form-row select:focus,
.studio-body .form-row textarea:focus,
.compact-form-row input:focus,
.compact-form-row select:focus,
.compact-form-row textarea:focus {
  border-color: var(--site-navy);
  box-shadow: 0 0 0 3px rgba(15,39,66,0.08);
  outline: none;
}

/* ── Studio form label weight ── */
.studio-body .form-row label,
.compact-form-row label { font-weight: 600; font-size: 13px; color: #374151; margin-bottom: 6px; }

/* ── Studio empty state ── */
.studio-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 32px 24px;
  color: var(--site-muted);
  font-size: 14px;
}
.studio-empty::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Filter bar improvement ── */
.studio-filter-bar a {
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
}
.studio-filter-bar a.active {
  background: var(--site-navy);
  color: #fff;
  border-color: var(--site-navy);
}

/* ── Stat card layout fix for icon+label+number ── */
.studio-stats-grid { gap: 14px; }
.studio-stat-card { border-radius: 18px; padding: 20px; }
.studio-stat-card .studio-stat-link {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--site-blue);
  margin-top: 8px;
  text-decoration: none;
}
.studio-stat-card .studio-stat-link:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .studio-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .studio-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .studio-stat-card { padding: 14px 16px; }
}
