/* ════════════════════════════════════════════════
   EAZZER WEBSITE — Shared Styles
   Edit this one file to update styling site-wide
   ════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-light: #CCFBF1;
  --teal-mid: #99F6E4;
  --navy: #0F1724;
  --navy-light: #1a2e44;
  --amber: #F59E0B;
  --amber-dark: #D97706;
  --amber-light: #FEF3C7;
  --green: #059669;
  --green-light: #DCFCE7;
  --red: #DC2626;
  --red-light: #FEE2E2;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --white: #FFFFFF;

  --container: 1160px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
}

/* ── RESET ─────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .logo, .display-font {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.3px;
}

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

/* ── CONTAINER ─────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════ */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  height: 64px;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1px;
  font-weight: 800;
  font-size: 22px;
}
.logo .ea { color: var(--navy); }
.logo .zz { background: var(--teal); color: white; padding: 1px 5px; border-radius: 4px; }
.logo .er { color: var(--navy); }

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); font-weight: 600; }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: 0.3s;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: 20px;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.mobile-menu li:last-child { border-bottom: none; }
.mobile-menu a {
  color: var(--gray-800);
  font-weight: 500;
  font-size: 16px;
  display: block;
  padding: 4px 0;
}
.mobile-menu a.active { color: var(--teal); font-weight: 700; }

/* Mobile menu button — hamburger animation */
.mobile-menu-btn {
  position: relative;
  z-index: 1000;
}
.mobile-menu-btn span {
  transition: transform 0.3s, opacity 0.3s;
}
/* Animate hamburger to X when menu is open */
body:has(.mobile-menu.open) .mobile-menu-btn span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body:has(.mobile-menu.open) .mobile-menu-btn span:nth-child(2) {
  opacity: 0;
}
body:has(.mobile-menu.open) .mobile-menu-btn span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 900px) {
  .mobile-menu { display: none; }
}

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--teal); transform: translateY(-1px); }

.btn-amber { background: var(--amber); color: #78350F; }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-1px); }

.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-dark); }

.btn-ghost {
  background: transparent;
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-md); }
.btn-xl { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-block { display: flex; width: 100%; }

/* ════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════ */
section { padding: 64px 0; }

@media (min-width: 768px) {
  section { padding: 80px 0; }
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 40px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 48px;
}
.section-header-center .section-subtitle { margin-left: auto; margin-right: auto; }

@media (min-width: 768px) {
  .section-title { font-size: 40px; }
}

/* ════════════════════════════════════════════════
   HERO (Home page)
   ════════════════════════════════════════════════ */
.hero {
  padding: 64px 0;
  background: linear-gradient(160deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--teal); }

.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

@media (min-width: 768px) {
  .hero { padding: 80px 0; }
  .hero h1 { font-size: 52px; }
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 60px; }
}

/* SEARCH BOX */
.search-box {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 6px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}
.search-box:focus-within {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(13,148,136,0.15);
}

.search-field {
  flex: 1;
  min-width: 140px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.search-input {
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  background: transparent;
  width: 100%;
}
.search-input::placeholder { color: var(--gray-400); font-weight: 400; }

.search-divider {
  width: 1px;
  background: var(--gray-200);
  align-self: center;
  height: 32px;
  display: none;
}
@media (min-width: 600px) {
  .search-divider { display: block; }
}

.search-btn {
  background: var(--amber);
  color: #78350F;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: all 0.2s;
}
.search-btn:hover { background: var(--amber-dark); }

.quick-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.quick-filter {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s;
}
.quick-filter:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: var(--teal-mid);
}

/* HERO VISUAL CARDS */
.hero-visual {
  position: relative;
  min-height: 360px;
  display: none;
}
@media (min-width: 1024px) {
  .hero-visual { display: block; }
}

.float-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-lg);
  position: absolute;
  border: 1px solid var(--gray-100);
}

.float-card.provider { width: 280px; top: 0; right: 0; }
.float-card.booking {
  width: 220px;
  bottom: 60px;
  left: 0;
  background: var(--navy);
  color: white;
}
.float-card.review { width: 200px; top: 140px; right: -10px; }

.fc-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
}
.fc-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.fc-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 10px; }
.fc-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }

.badge-pill {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}
.badge-green { background: var(--green-light); color: #065F46; }
.badge-blue { background: #DBEAFE; color: #1E3A8A; }
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }

.fc-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--gray-600);
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.fc-stats > div { flex: 1; }
.fc-val { font-weight: 700; color: var(--navy); display: block; }

.float-card.booking .fc-label { font-size: 10px; color: var(--gray-400); text-transform: uppercase; }
.float-card.booking .fc-time { font-size: 18px; font-weight: 700; margin: 4px 0 12px; }
.float-card.booking .fc-service { font-size: 12px; color: var(--teal-mid); margin-bottom: 4px; }
.float-card.booking .fc-pro { font-size: 13px; font-weight: 600; }
.float-card.booking .fc-btn {
  margin-top: 14px;
  width: 100%;
  background: var(--amber);
  color: #78350F;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
}

.float-card.review .rc-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.float-card.review .rc-stars { font-size: 14px; color: var(--amber); margin: 4px 0; }
.float-card.review .rc-text { font-size: 11px; color: var(--gray-600); line-height: 1.5; }

/* ════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════ */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust-stat { text-align: center; }
.trust-stat .ts-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  display: block;
  font-family: 'Sora', sans-serif;
}
.trust-stat .ts-label { font-size: 13px; color: var(--gray-600); }

@media (min-width: 600px) {
  .trust-bar-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ════════════════════════════════════════════════
   CATEGORIES GRID
   ════════════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.category-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.category-card:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.cat-name { font-size: 13px; font-weight: 600; color: var(--navy); font-family: 'Sora', sans-serif; }
.cat-count { font-size: 11px; color: var(--gray-400); }

.c-blue { background: #DBEAFE; }
.c-green { background: var(--green-light); }
.c-orange { background: var(--amber-light); }
.c-purple { background: #EDE9FE; }
.c-red { background: var(--red-light); }
.c-teal { background: var(--teal-light); }
.c-pink { background: #FCE7F3; }
.c-gray { background: var(--gray-100); }
.c-indigo { background: #E0E7FF; }
.c-lime { background: #ECFCCB; }

@media (min-width: 600px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .categories-grid { grid-template-columns: repeat(5, 1fr); } }

/* ════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════ */
.how-it-works {
  background: var(--navy);
  color: white;
}
.how-it-works .section-title { color: white; }
.how-it-works .section-subtitle { color: var(--gray-400); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  font-family: 'Sora', sans-serif;
  margin-bottom: 16px;
}
.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.step-card p { font-size: 13px; color: var(--gray-400); line-height: 1.6; }

@media (min-width: 600px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

/* ════════════════════════════════════════════════
   FEATURED PROVIDERS
   ════════════════════════════════════════════════ */
.providers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.provider-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
}
.provider-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pc-top {
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pc-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: white;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}

.pc-info { flex: 1; }
.pc-name { font-size: 15px; font-weight: 700; color: var(--navy); font-family: 'Sora', sans-serif; margin-bottom: 2px; }
.pc-cat { font-size: 12px; color: var(--gray-400); margin-bottom: 6px; }

.pc-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}
.stars { color: var(--amber); }
.rating-val { font-weight: 700; color: var(--navy); font-family: 'Sora', sans-serif; }
.rating-count { color: var(--gray-400); }

.pc-divider { height: 1px; background: var(--gray-100); }

.pc-bottom {
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pc-price { font-size: 16px; font-weight: 800; color: var(--navy); font-family: 'Sora', sans-serif; }
.pc-price span { font-size: 12px; color: var(--gray-400); font-weight: 400; }
.pc-avail { font-size: 12px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.avail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

@media (min-width: 768px) { .providers-grid { grid-template-columns: repeat(3, 1fr); } }

/* ════════════════════════════════════════════════
   WHY EAZZER
   ════════════════════════════════════════════════ */
.why-section {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gray-50) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

.why-points { display: flex; flex-direction: column; gap: 24px; }

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-text p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.cost-compare {
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.cc-title { font-size: 16px; font-weight: 700; color: var(--navy); font-family: 'Sora', sans-serif; margin-bottom: 20px; }
.cc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.cc-row:last-child { border-bottom: none; }
.cc-platform { font-size: 14px; font-weight: 500; }
.cc-cost { font-size: 14px; font-weight: 700; }
.cc-good { color: var(--green); font-size: 18px; }
.cc-bad { color: var(--red); }
.cc-warn { color: var(--amber-dark); }

.cc-note {
  margin-top: 16px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--teal-dark);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════
   PROVIDER CTA BANNER
   ════════════════════════════════════════════════ */
.provider-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.pb-emoji { font-size: 32px; margin-bottom: 8px; }
.pb-title { font-size: 22px; font-weight: 800; color: white; margin-bottom: 8px; }
.pb-text { font-size: 14px; color: var(--gray-400); }
.pb-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.pb-note { font-size: 12px; color: var(--gray-400); }

@media (min-width: 768px) {
  .provider-banner { flex-direction: row; align-items: center; padding: 40px; }
  .pb-actions { align-items: flex-end; }
}

/* ════════════════════════════════════════════════
   PRICING TABLE
   ════════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.plan-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  position: relative;
}
.plan-card.featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, var(--teal-light) 0%, white 60%);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.plan-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.3px;
}

.plan-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  margin-bottom: 8px;
}
.plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  line-height: 1;
}
.plan-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-400);
}
.plan-free { font-size: 13px; color: var(--green); font-weight: 600; margin: 6px 0 16px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; }
.pf-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--gray-600);
}
.pf-check { color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pf-x { color: var(--gray-300); flex-shrink: 0; margin-top: 1px; }
.plan-card .btn { margin-top: 20px; }

@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Sora', sans-serif;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--teal);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  padding: 0 20px 18px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   STORY / ABOUT PAGE
   ════════════════════════════════════════════════ */
.story-block {
  max-width: 720px;
  margin: 0 auto;
}
.story-block p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-800);
  margin-bottom: 20px;
}
.story-block p:first-of-type::first-letter {
  font-family: 'Sora', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--teal);
  float: left;
  line-height: 1;
  margin-right: 8px;
  margin-top: 4px;
}
.story-quote {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  border-left: 4px solid var(--teal);
  padding: 16px 24px;
  margin: 32px 0;
  font-style: italic;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.value-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ════════════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════════════ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

.contact-form {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--navy);
  background: white;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--teal); }
.form-textarea { min-height: 120px; resize: vertical; }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-info-item p { font-size: 13px; color: var(--gray-600); }
.contact-info-item a { color: var(--teal); font-weight: 600; }

/* ════════════════════════════════════════════════
   FOR PROVIDERS PAGE
   ════════════════════════════════════════════════ */
.pro-hero {
  background: linear-gradient(170deg, var(--navy) 0%, var(--navy-light) 55%, #0a3d35 100%);
  color: white;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.pro-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.pro-hero h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pro-hero h1 .hl { color: var(--teal-mid); }
.pro-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 540px; margin-bottom: 28px; line-height: 1.7; }

.savings-pill {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 24px;
}
.sp-icon { font-size: 22px; }
.sp-text { font-size: 13px; color: rgba(255, 255, 255, 0.7); line-height: 1.5; }
.sp-val { font-size: 15px; font-weight: 800; color: var(--teal-mid); font-family: 'Sora', sans-serif; }

.pro-ctas { display: flex; flex-direction: column; gap: 10px; }
.pro-ctas .btn { justify-content: center; }
.pro-note { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.4); }

@media (min-width: 768px) {
  .pro-hero h1 { font-size: 52px; }
  .pro-ctas { flex-direction: row; }
}

/* VS competitor table */
.vs-table {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
}
.vs-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
}
.vs-row:last-child { border-bottom: none; }
.vs-row > div {
  padding: 14px 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
}
.vs-row.head {
  background: var(--navy);
  color: white;
}
.vs-row.head > div { font-weight: 700; font-family: 'Sora', sans-serif; font-size: 14px; }
.vs-them { color: rgba(255,255,255,0.6); }
.vs-us { color: var(--teal-mid); font-weight: 800; }
.vs-row .vs-label { font-weight: 600; color: var(--navy); background: var(--gray-50); }
.vs-row .vs-bad { color: var(--red); font-weight: 600; }
.vs-row .vs-good { color: var(--green); font-weight: 700; }

/* Testimonials */
.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }

.test-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.test-top { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  font-family: 'Sora', sans-serif;
}
.test-name { font-size: 14px; font-weight: 700; color: var(--navy); font-family: 'Sora', sans-serif; }
.test-trade { font-size: 12px; color: var(--gray-400); }
.test-stars { font-size: 14px; color: var(--amber); margin-left: auto; }
.test-quote { font-size: 14px; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.test-saving {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green-light);
  color: #065F46;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

/* ════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════ */
.final-cta {
  background: var(--navy);
  color: white;
  text-align: center;
}
.final-cta .container { max-width: 720px; }
.fc-emoji { font-size: 48px; margin-bottom: 16px; }
.final-cta h2 { font-size: 32px; font-weight: 800; color: white; margin-bottom: 12px; line-height: 1.2; }
.final-cta p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.7; }
.fc-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 56px 0 32px;
  color: var(--gray-400);
}
footer .logo .ea, footer .logo .er { color: white; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }

.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h5 { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: white; margin-bottom: 14px; }
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal-mid); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-400);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: var(--gray-400); }

@media (min-width: 600px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-md { margin-top: 24px; }
.mb-md { margin-bottom: 24px; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* ════════════════════════════════════════════════
   PROVIDER DASHBOARD (logged-in demo)
   ════════════════════════════════════════════════ */

/* Demo banner at top */
.demo-banner {
  background: var(--amber);
  color: #78350F;
  padding: 8px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.demo-banner a { color: #78350F; text-decoration: underline; font-weight: 700; }

/* Dashboard layout */
.dash-page {
  background: var(--gray-50);
  min-height: 100vh;
}

.dash-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: calc(100vh - 64px);
}

@media (min-width: 1024px) {
  .dash-layout { grid-template-columns: 240px 1fr; }
}

/* Sidebar */
.dash-sidebar {
  background: white;
  border-right: 1px solid var(--gray-200);
  padding: 24px 16px;
  display: none;
}

@media (min-width: 1024px) {
  .dash-sidebar { display: block; }
}

.dash-user {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.dash-user-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
}
.dash-user-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.dash-user-role { font-size: 11px; color: var(--gray-400); }

.dash-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.2s;
}
.dash-nav a:hover { background: var(--gray-100); color: var(--navy); }
.dash-nav a.active {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 700;
}
.dash-nav-icon { font-size: 18px; }

/* Sidebar mobile bottom nav */
.dash-mobile-nav {
  display: flex;
  background: white;
  border-top: 1px solid var(--gray-200);
  position: sticky;
  bottom: 0;
  z-index: 100;
}
@media (min-width: 1024px) {
  .dash-mobile-nav { display: none; }
}

.dash-mobile-nav a {
  flex: 1;
  text-align: center;
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 500;
}
.dash-mobile-nav a.active { color: var(--teal); font-weight: 700; }
.dash-mobile-nav .dash-nav-icon { font-size: 18px; }

/* Main content area */
.dash-main {
  padding: 24px 20px;
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  .dash-main { padding: 32px 40px; }
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.dash-header h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.dash-header p { font-size: 14px; color: var(--gray-600); }

/* Status toggle */
.status-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
}
.status-dot-online {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.status-text { font-size: 13px; font-weight: 600; color: var(--navy); }
.toggle-switch {
  width: 36px;
  height: 20px;
  background: var(--teal);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.toggle-switch::after {
  content: '';
  position: absolute;
  right: 2px; top: 2px;
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
}

/* Metric cards */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.metric-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px;
}
.metric-label {
  font-size: 11px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.metric-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  margin-bottom: 4px;
  line-height: 1;
}
.metric-sub { font-size: 11px; }
.metric-up { color: var(--green); font-weight: 600; }
.metric-neutral { color: var(--gray-400); }

/* Section card */
.dash-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 16px;
}
.dash-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.dash-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
}
.dash-card-link {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
}

/* Job rows */
.job-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}
.job-row:last-child { border-bottom: none; }

.job-status-bar {
  width: 4px;
  height: 44px;
  border-radius: 2px;
  flex-shrink: 0;
}
.jsb-progress { background: var(--amber); }
.jsb-confirmed { background: var(--green); }
.jsb-pending { background: var(--red); }
.jsb-done { background: var(--gray-400); }

.job-info { flex: 1; min-width: 0; }
.job-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.job-meta { font-size: 12px; color: var(--gray-600); }
.job-time { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

.job-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}

.job-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.jb-progress { background: var(--amber-light); color: #92400E; }
.jb-confirmed { background: var(--green-light); color: #065F46; }
.jb-pending { background: var(--red-light); color: #991B1B; }
.jb-done { background: var(--gray-100); color: var(--gray-600); }

/* Earnings card */
.earnings-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  margin-bottom: 16px;
}
.earnings-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.earnings-amount {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  margin-bottom: 4px;
  line-height: 1;
}
.earnings-sub { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.earnings-stats { display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.es-item { }
.es-val { font-size: 16px; font-weight: 700; color: var(--teal-mid); font-family: 'Sora', sans-serif; }
.es-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Mini-website card */
.website-card {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 20px;
  color: white;
  margin-bottom: 16px;
}
.website-card-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.website-card-url { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.website-stats { display: flex; gap: 20px; margin-bottom: 16px; }
.ws-val { font-size: 18px; font-weight: 800; font-family: 'Sora', sans-serif; }
.ws-label { font-size: 10px; color: rgba(255,255,255,0.6); }
.website-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.website-actions .btn { flex: 1; min-width: 120px; }
.btn-on-teal-light { background: white; color: var(--teal-dark); }
.btn-on-teal-light:hover { background: var(--gray-50); }
.btn-on-teal-outline { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-on-teal-outline:hover { background: rgba(255,255,255,0.1); }

/* Schedule timeline */
.day-pills {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 16px;
  scrollbar-width: none;
}
.day-pills::-webkit-scrollbar { display: none; }

.day-pill {
  flex-shrink: 0;
  width: 56px;
  padding: 10px 4px;
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  background: white;
  border: 1.5px solid var(--gray-200);
}
.day-pill.today {
  background: var(--teal);
  border-color: var(--teal);
}
.day-pill-name {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 600;
}
.day-pill.today .day-pill-name { color: rgba(255,255,255,0.8); }
.day-pill-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
}
.day-pill.today .day-pill-num { color: white; }
.day-pill-dot {
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
  margin: 4px auto 0;
}
.day-pill.today .day-pill-dot { background: white; }

.timeline-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.timeline-time {
  width: 56px;
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
  padding-top: 4px;
  flex-shrink: 0;
  text-align: right;
}
.timeline-block {
  flex: 1;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border-left: 3px solid;
}
.tlb-progress { background: var(--amber-light); border-left-color: var(--amber); }
.tlb-confirmed { background: var(--green-light); border-left-color: var(--green); }
.tlb-pending { background: var(--red-light); border-left-color: var(--red); }
.tlb-break { background: var(--gray-100); border-left-color: var(--gray-400); }
.timeline-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.timeline-meta { font-size: 12px; color: var(--gray-600); margin-bottom: 6px; }
.timeline-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.timeline-actions .btn { padding: 6px 12px; font-size: 11px; }

/* Profile sections */
.profile-banner {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  color: white;
  margin-bottom: 16px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.profile-banner-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  border: 3px solid rgba(255,255,255,0.1);
}
.profile-banner-info { flex: 1; min-width: 200px; }
.profile-banner-name { font-size: 22px; font-weight: 800; font-family: 'Sora', sans-serif; margin-bottom: 4px; }
.profile-banner-cat { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }

.profile-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.profile-stat {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}
.profile-stat-val { font-size: 22px; font-weight: 800; color: var(--navy); font-family: 'Sora', sans-serif; }
.profile-stat-label { font-size: 11px; color: var(--gray-400); margin-top: 2px; }

.profile-strength {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}
.ps-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.ps-label { font-size: 13px; font-weight: 600; color: var(--navy); }
.ps-pct { font-size: 13px; font-weight: 800; color: var(--teal); font-family: 'Sora', sans-serif; }
.ps-track { height: 6px; background: var(--gray-100); border-radius: 3px; margin-bottom: 8px; }
.ps-fill { height: 6px; background: var(--teal); border-radius: 3px; }
.ps-tip { font-size: 12px; color: var(--gray-600); }
.ps-tip a { color: var(--teal); font-weight: 600; }

/* Settings list */
.settings-list { display: flex; flex-direction: column; gap: 4px; }
.settings-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.settings-item:hover { border-color: var(--teal); }
.settings-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.si-teal { background: var(--teal-light); }
.si-amber { background: var(--amber-light); }
.si-green { background: var(--green-light); }
.si-blue { background: #DBEAFE; }
.si-purple { background: #EDE9FE; }
.si-red { background: var(--red-light); }
.si-gray { background: var(--gray-100); }

.settings-text { flex: 1; min-width: 0; }
.settings-label { font-size: 14px; font-weight: 600; color: var(--navy); }
.settings-sub { font-size: 12px; color: var(--gray-400); margin-top: 1px; }
.settings-badge {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
}
.settings-chevron { color: var(--gray-400); font-size: 18px; flex-shrink: 0; }

/* Subscription card */
.sub-card {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  margin-bottom: 16px;
}
.sub-icon { font-size: 24px; flex-shrink: 0; }
.sub-name { font-size: 14px; font-weight: 700; font-family: 'Sora', sans-serif; }
.sub-detail { font-size: 11px; color: rgba(255,255,255,0.7); }
.sub-link { font-size: 11px; color: white; font-weight: 600; margin-top: 2px; text-decoration: underline; }

/* Schedule section additional */
.schedule-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (min-width: 600px) { .schedule-rules-grid { grid-template-columns: repeat(4, 1fr); } }
.rule-card {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.rule-label { font-size: 10px; color: var(--gray-400); text-transform: uppercase; font-weight: 600; }
.rule-val { font-size: 15px; font-weight: 700; color: var(--navy); font-family: 'Sora', sans-serif; margin-top: 2px; }
.rule-card.amber { background: var(--amber-light); }
.rule-card.amber .rule-label { color: #92400E; }
.rule-card.amber .rule-val { color: #78350F; }

/* ════════════════════════════════════════════════
   PHOTOS, PORTFOLIO, REVIEWS — Editor styles
   ════════════════════════════════════════════════ */

/* Tabs for switching between sections */
.tabs-bar {
  display: flex;
  gap: 4px;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-bar::-webkit-scrollbar { display: none; }

.tab-item {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}
.tab-item:hover { background: var(--gray-50); }
.tab-item.active {
  background: var(--teal);
  color: white;
}

/* Profile photo card */
.profile-photo-section {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.profile-photo-large {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  color: white;
  font-family: 'Sora', sans-serif;
  margin-bottom: 16px;
  border: 4px solid white;
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
  position: relative;
  overflow: hidden;
}

.profile-photo-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.photo-tip {
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--teal-dark);
  text-align: left;
  line-height: 1.5;
}

/* Cover banner upload */
.cover-banner-zone {
  height: 180px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
}

.cover-banner-zone:hover { opacity: 0.9; }

.cover-overlay {
  background: rgba(0,0,0,0.4);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

/* Portfolio gallery */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
@media (min-width: 600px) { .portfolio-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .portfolio-gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal-light), var(--teal-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item.bg-1 { background: linear-gradient(135deg, #DBEAFE, #93C5FD); }
.gallery-item.bg-2 { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.gallery-item.bg-3 { background: linear-gradient(135deg, #DCFCE7, #86EFAC); }
.gallery-item.bg-4 { background: linear-gradient(135deg, #FCE7F3, #F9A8D4); }
.gallery-item.bg-5 { background: linear-gradient(135deg, #EDE9FE, #C4B5FD); }
.gallery-item.bg-6 { background: linear-gradient(135deg, #FEE2E2, #FCA5A5); }
.gallery-item.bg-7 { background: linear-gradient(135deg, #FED7AA, #FDBA74); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 10px;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-caption {
  font-size: 11px;
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}
.gallery-actions {
  display: flex;
  gap: 6px;
}
.gallery-btn {
  background: rgba(255,255,255,0.9);
  color: var(--navy);
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.gallery-add {
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  color: var(--gray-400);
  font-size: 32px;
}
.gallery-add:hover {
  border-color: var(--teal);
  background: var(--teal-light);
  color: var(--teal);
}

.gallery-add-text {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 4px;
  display: block;
  text-align: center;
}

/* Upload drop zone */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  background: var(--gray-50);
  cursor: pointer;
  margin-bottom: 16px;
  transition: all 0.2s;
}
.upload-zone:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}
.upload-icon-lg {
  font-size: 40px;
  margin-bottom: 8px;
}
.upload-zone h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.upload-zone p {
  font-size: 12px;
  color: var(--gray-400);
}

/* Reviews */
.review-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
}

.review-header {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}

.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Sora', sans-serif;
}
.review-info {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}
.review-stars {
  font-size: 14px;
  color: var(--amber);
  margin-top: 4px;
}
.review-date {
  font-size: 11px;
  color: var(--gray-400);
  flex-shrink: 0;
}
.review-text {
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.6;
  margin-bottom: 12px;
}

.review-response {
  background: var(--teal-light);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 14px;
  margin-top: 12px;
}
.review-response-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.review-response-text {
  font-size: 13px;
  color: var(--gray-800);
  line-height: 1.6;
}

.review-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  flex-wrap: wrap;
}

/* Reviews summary card */
.reviews-summary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .reviews-summary { grid-template-columns: auto 1fr; } }

.rs-rating {
  text-align: center;
}
.rs-big-rating {
  font-size: 56px;
  font-weight: 800;
  color: var(--amber);
  font-family: 'Sora', sans-serif;
  line-height: 1;
}
.rs-stars-row { font-size: 18px; color: var(--amber); margin: 4px 0; }
.rs-count { font-size: 13px; color: rgba(255,255,255,0.7); }

.rs-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rs-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.rs-stars-label {
  width: 50px;
  color: rgba(255,255,255,0.7);
}
.rs-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.rs-bar-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 3px;
}
.rs-bar-count {
  width: 30px;
  text-align: right;
  color: rgba(255,255,255,0.5);
}

/* Modal-style reply box */
.reply-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 12px;
}
.reply-textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--navy);
  resize: vertical;
  min-height: 60px;
  outline: none;
}
.reply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.reply-tip { font-size: 11px; color: var(--gray-400); }

/* ════════════════════════════════════════════════
   LAUNCH BANNER
   ════════════════════════════════════════════════ */
.launch-banner {
  background: linear-gradient(90deg, var(--teal) 0%, #0a7a70 100%);
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.launch-banner a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: underline;
}
.launch-banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.launch-banner-close:hover { color: white; }

/* ════════════════════════════════════════════════
   PASSWORD GATE
   ════════════════════════════════════════════════ */
.gate-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gate-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.gate-logo {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}
.gate-logo .zz { background: var(--teal); color: white; padding: 2px 6px; border-radius: 4px; }
.gate-tagline { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; line-height: 1.5; }
.gate-label { font-size: 11px; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.5px; text-align: left; margin-bottom: 6px; display: block; }
.gate-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--navy);
  transition: border-color 0.2s;
}
.gate-input:focus { border-color: var(--teal); }
.gate-input.error { border-color: var(--red); animation: shake 0.3s; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  75% { transform: translateX(8px); }
}
.gate-error { font-size: 12px; color: var(--red); margin-bottom: 12px; min-height: 16px; }
.gate-hint { font-size: 11px; color: var(--gray-400); margin-top: 16px; }
.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--amber-light);
  color: #92400E;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════════
   CUSTOMER DEMO PAGES
   ════════════════════════════════════════════════ */
.customer-hero {
  background: linear-gradient(160deg, var(--teal-light) 0%, white 60%);
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--gray-200);
}
.customer-hero h1 { font-size: 28px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.customer-hero p { font-size: 14px; color: var(--gray-600); }

.search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .search-results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .search-results-grid { grid-template-columns: repeat(3, 1fr); } }

.result-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.result-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.result-card-banner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
}
.result-card-body { padding: 16px; }
.result-card-name { font-size: 15px; font-weight: 700; color: var(--navy); font-family: 'Sora', sans-serif; margin-bottom: 2px; }
.result-card-trade { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.result-card-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 8px; }
.result-card-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 12px; }
.result-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--gray-100); }
.result-card-price { font-size: 16px; font-weight: 800; color: var(--navy); font-family: 'Sora', sans-serif; }
.result-avail { font-size: 11px; color: var(--green); font-weight: 600; }

/* Booking flow */
.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  overflow-x: auto;
}
.booking-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.booking-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
}
.booking-step.active .booking-step-num { background: var(--teal); color: white; }
.booking-step.done .booking-step-num { background: var(--green); color: white; }
.booking-step-label { font-size: 12px; font-weight: 600; color: var(--gray-400); }
.booking-step.active .booking-step-label { color: var(--teal); }
.booking-step-line { width: 32px; height: 2px; background: var(--gray-200); margin: 0 4px; flex-shrink: 0; }

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
@media (min-width: 600px) { .time-slots { grid-template-columns: repeat(4, 1fr); } }

.time-slot {
  padding: 10px 6px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray-800);
  transition: all 0.15s;
}
.time-slot:hover { border-color: var(--teal); color: var(--teal); }
.time-slot.selected { background: var(--teal); border-color: var(--teal); color: white; }
.time-slot.unavailable { background: var(--gray-50); color: var(--gray-300); cursor: not-allowed; text-decoration: line-through; }

/* Customer booking summary */
.booking-summary {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.booking-summary-header {
  background: var(--navy);
  color: white;
  padding: 16px 20px;
}
.booking-summary-header h3 { font-size: 15px; font-weight: 700; font-family: 'Sora', sans-serif; }
.booking-summary-body { padding: 20px; }
.bs-row { display: flex; justify-content: space-between; font-size: 13px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.bs-row:last-child { border-bottom: none; }
.bs-label { color: var(--gray-600); }
.bs-val { font-weight: 600; color: var(--navy); }
.bs-total { font-size: 16px; font-weight: 800; color: var(--teal); font-family: 'Sora', sans-serif; }

/* ════════════════════════════════════════════════
   CATEGORY DEMO PROVIDER CARDS
   ════════════════════════════════════════════════ */
.cat-demo-banner {
  padding: 40px 0 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.cat-demo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
}
.cat-demo-banner > * { position: relative; z-index: 1; }
.cat-demo-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.cat-demo-banner h1 { font-size: 32px; font-weight: 800; color: white; margin-bottom: 8px; }
.cat-demo-banner p { font-size: 15px; color: rgba(255,255,255,0.7); max-width: 540px; }

.provider-demo-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 20px;
}
.pdc-banner {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
}
.pdc-avatar-large {
  position: absolute;
  left: 24px;
  bottom: -28px;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  color: white;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}
.pdc-body { padding: 44px 24px 24px; }
.pdc-name { font-size: 20px; font-weight: 800; color: var(--navy); font-family: 'Sora', sans-serif; margin-bottom: 4px; }
.pdc-meta { font-size: 13px; color: var(--gray-600); margin-bottom: 12px; }
.pdc-stats { display: flex; gap: 20px; margin-bottom: 16px; flex-wrap: wrap; }
.pdc-stat { text-align: center; }
.pdc-stat-val { font-size: 18px; font-weight: 800; color: var(--navy); font-family: 'Sora', sans-serif; }
.pdc-stat-label { font-size: 11px; color: var(--gray-400); }
.pdc-bio { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }
.pdc-services { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pdc-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}
.pdc-service-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.pdc-service-desc { font-size: 12px; color: var(--gray-400); margin-top: 1px; }
.pdc-service-price { font-size: 16px; font-weight: 800; color: var(--teal); font-family: 'Sora', sans-serif; }

/* Work photo gallery for category demo */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 600px) { .work-gallery { grid-template-columns: repeat(3, 1fr); } }

.work-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}
.work-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 20px 10px 8px;
}

.review-mini {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 10px;
}
.review-mini-top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.review-mini-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.review-mini-stars { font-size: 12px; color: var(--amber); }
.review-mini-text { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.book-now-sticky {
  position: sticky;
  bottom: 0;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  z-index: 100;
}
.book-now-price { font-size: 20px; font-weight: 800; color: var(--navy); font-family: 'Sora', sans-serif; }
.book-now-price span { font-size: 13px; color: var(--gray-400); font-weight: 400; }

/* ════════════════════════════════════════════════
   AI FEATURES — Eazzer Intelligence (Elite)
   ════════════════════════════════════════════════ */

/* AI Chat Container */
.ai-panel {
  background: linear-gradient(160deg, #0a1628 0%, #0F1724 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(13,148,136,0.3);
  box-shadow: 0 0 40px rgba(13,148,136,0.08);
}

.ai-panel-header {
  background: linear-gradient(90deg, rgba(13,148,136,0.15) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-orb {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0D9488, #06B6D4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(13,148,136,0.5);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(13,148,136,0.4); }
  50% { box-shadow: 0 0 28px rgba(13,148,136,0.8); }
}

.ai-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  font-family: 'Sora', sans-serif;
}
.ai-panel-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
}

.ai-elite-badge {
  margin-left: auto;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.5px;
}

/* Messages area */
.ai-messages {
  padding: 20px;
  min-height: 200px;
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(13,148,136,0.3) transparent;
}

.ai-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ai-msg-avatar.ai { background: linear-gradient(135deg, #0D9488, #06B6D4); }
.ai-msg-avatar.user { background: rgba(255,255,255,0.1); color: white; font-size: 12px; font-weight: 700; font-family: 'Sora', sans-serif; }

.ai-msg-bubble {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.6;
  max-width: calc(100% - 44px);
}

.ai-msg.ai .ai-msg-bubble {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}

.ai-msg.user .ai-msg-bubble {
  background: rgba(13,148,136,0.2);
  border: 1px solid rgba(13,148,136,0.3);
  color: rgba(255,255,255,0.9);
  margin-left: auto;
}

.ai-msg.user {
  flex-direction: row-reverse;
}

/* Typing indicator */
.ai-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: fit-content;
}
.ai-typing span {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: typing-dot 1.2s ease infinite;
}
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

/* Input area */
.ai-input-area {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.ai-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 13px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  resize: none;
  min-height: 40px;
  max-height: 100px;
  transition: border-color 0.2s;
}
.ai-input:focus { border-color: rgba(13,148,136,0.6); }
.ai-input::placeholder { color: rgba(255,255,255,0.3); }

.ai-send-btn {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0D9488, #06B6D4);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.ai-send-btn:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(13,148,136,0.4); }
.ai-send-btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* Insight cards */
.ai-insight-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}
@media (min-width: 600px) { .ai-insight-cards { grid-template-columns: repeat(3, 1fr); } }

.ai-insight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.ai-insight-card:hover {
  background: rgba(13,148,136,0.1);
  border-color: rgba(13,148,136,0.3);
  transform: translateY(-1px);
}
.ai-insight-card-icon { font-size: 20px; margin-bottom: 8px; }
.ai-insight-card-title { font-size: 12px; font-weight: 700; color: white; margin-bottom: 4px; font-family: 'Sora', sans-serif; }
.ai-insight-card-desc { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.4; }

/* AI tag for suggestion pills */
.ai-suggestions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 0 16px 12px;
}
.ai-suggestion-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.ai-suggestion-pill:hover {
  background: rgba(13,148,136,0.2);
  border-color: rgba(13,148,136,0.4);
  color: var(--teal-mid);
}

/* Result cards from AI */
.ai-result-card {
  background: rgba(13,148,136,0.1);
  border: 1px solid rgba(13,148,136,0.2);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-top: 8px;
}
.ai-result-card-title { font-size: 12px; font-weight: 700; color: var(--teal-mid); margin-bottom: 6px; font-family: 'Sora', sans-serif; }
.ai-result-card p { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* Section header for AI */
.ai-section-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 16px 8px;
  font-family: 'DM Sans', sans-serif;
}
