@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Unbounded';
  src: url('font/Unbounded-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-display: swap;
}

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

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand palette */
  --navy: #10233E;
  --navy-light: #1a3356;
  --navy-dark: #0a1628;
  --coral: #E78B7B;
  --coral-light: #f0a89c;
  --coral-dark: #d4695a;

  /* Semantic colors */
  --background: #F8F5F2;
  --foreground: #10233E;
  --card: rgba(255, 255, 255, 0.72);
  --card-solid: #ffffff;
  --card-foreground: #10233E;
  --primary: #10233E;
  --primary-foreground: #ffffff;
  --secondary: #EDE9E4;
  --secondary-foreground: #10233E;
  --muted-foreground: #6B7280;
  --accent: #E78B7B;
  --accent-foreground: #ffffff;
  --border: rgba(16, 35, 62, 0.08);
  --border-hover: rgba(16, 35, 62, 0.15);
  --glow: rgba(231, 139, 123, 0.18);
  --glow-strong: rgba(231, 139, 123, 0.3);
  --shadow-sm: 0 1px 2px rgba(16, 35, 62, 0.04);
  --shadow-md: 0 4px 16px rgba(16, 35, 62, 0.06);
  --shadow-lg: 0 8px 32px rgba(16, 35, 62, 0.08);
  --shadow-xl: 0 16px 48px rgba(16, 35, 62, 0.1);
  --shadow-glow: 0 8px 32px rgba(231, 139, 123, 0.12);

  /* Typography */
  --font-heading: 'Space Grotesk', 'Unbounded', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.75rem;
  --radius-full: 9999px;

  /* Utility palette */
  --amber-50: #fffbeb; --amber-100: #fef3c7; --amber-400: #fbbf24; --amber-600: #d97706;
  --blue-50: #eff6ff; --blue-100: #dbeafe; --blue-200: #bfdbfe; --blue-400: #60a5fa;
  --blue-500: #3b82f6; --blue-600: #2563eb; --blue-700: #1d4ed8;
  --emerald-100: #d1fae5; --emerald-500: #10b981; --emerald-600: #059669;
  --pink-50: #fdf2f8; --pink-500: #ec4899; --pink-600: #db2777;
  --orange-50: #fff7ed; --orange-600: #ea580c;
  --teal-50: #f0fdfa; --teal-100: #ccfbf1; --teal-600: #0d9488;
  --purple-50: #faf5ff; --purple-100: #f3e8ff; --purple-500: #a855f7; --purple-600: #9333ea;
  --indigo-50: #eef2ff; --indigo-600: #4f46e5;
  --rose-100: #ffe4e6; --rose-600: #e11d48;
  --cyan-50: #ecfeff; --cyan-200: #a5f3fc; --cyan-400: #22d3ee; --cyan-500: #06b6d4; --cyan-600: #0891b2;
  --green-500: #22c55e;
  --red-500: #ef4444;
  --slate-50: #f8fafc; --slate-100: #f1f5f9; --slate-200: #e2e8f0;
  --slate-400: #94a3b8; --slate-500: #64748b; --slate-600: #475569;
  --slate-700: #334155; --slate-800: #1e293b; --slate-900: #0f172a;

  /* Text on surfaces (light = navy, dark theme overrides) */
  --text-primary: var(--navy);

  /* Scene backgrounds */
  --bg-image: url('../assets/bg.png');
  --community-bg-image: url('../assets/ua.png');
  --onboarding-acc-bg: url('../assets/acc_bg.png');
  --profile-acc-bg: url('../assets/acc_bg.png');
}

/* ===== DARK THEME TOKENS ===== */
[data-theme="dark"] {
  color-scheme: dark;

  --background: #0a1220;
  --foreground: #e8e4df;
  --text-primary: #e8e4df;
  --card: rgba(22, 34, 52, 0.92);
  --card-solid: #141f30;
  --card-foreground: #e8e4df;
  --secondary: #1a2738;
  --secondary-foreground: #e8e4df;
  --muted-foreground: #8b9cb3;
  --border: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.16);
  --glow: rgba(231, 139, 123, 0.22);
  --glow-strong: rgba(231, 139, 123, 0.34);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 8px 32px rgba(231, 139, 123, 0.18);

  --slate-50: #141f30;
  --slate-100: #1a2738;
  --slate-200: #243044;
  --profile-acc-bg: url('../assets/acc_bg-dark.png');
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: var(--font-body);
  border: none;
  outline: none;
  background: transparent;
}

img, svg {
  display: block;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.accent { color: var(--accent); }

/* ===== ICONS ===== */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1rem; height: 1rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }

.icon-star-filled svg {
  fill: var(--amber-400);
  stroke: var(--amber-400);
}

/* ===== ANIMATIONS ===== */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

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

.ping-dot {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
}

.ping-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  background-color: var(--accent);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-dot::after {
  content: '';
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background-color: var(--accent);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow-x: clip;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: var(--radius-sm);
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-img {
  height: 2.125rem;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: none;
  align-items: center;
  gap: 0.875rem;
}

.nav-cta .btn-primary {
  border-radius: 1rem;
  padding: 0.5rem 1.375rem;
  box-shadow: 0 2px 8px rgba(16, 35, 62, 0.12);
  transition: all 0.3s ease;
}

.nav-cta .btn-primary:hover {
  background-color: var(--navy-light);
  box-shadow: 0 4px 16px rgba(16, 35, 62, 0.18);
  transform: translateY(-1px);
}

.nav-cta .btn-ghost {
  color: var(--muted-foreground);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-cta .btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(16, 35, 62, 0.04);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--navy-light);
  box-shadow: 0 4px 16px rgba(16, 35, 62, 0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--muted-foreground);
  background: transparent;
}

.btn-ghost:hover {
  background-color: rgba(16, 35, 62, 0.04);
  color: var(--foreground);
}

.btn-pill {
  border-radius: var(--radius-full);
  padding: 0.5rem 1.5rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
}

.btn-secondary:hover {
  background-color: #e3ddd7;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  background-color: rgba(16, 35, 62, 0.02);
}

.btn-accent-ghost {
  color: var(--accent);
  background: transparent;
  font-weight: 600;
}

.btn-accent-ghost:hover {
  background-color: var(--glow);
  color: var(--coral-dark);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  margin: -0.5rem;
  color: var(--foreground);
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.25s ease;
}

.mobile-menu a:hover { color: var(--foreground); }

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-menu-cta .btn { justify-content: flex-start; }

@media (max-width: 767.98px) {
  .header,
  .header.header--scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  .header-inner {
    gap: 0.75rem;
    min-width: 0;
  }

  .header-inner > .nav-links,
  .header-inner > .nav-cta {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
  }

  .logo {
    flex-shrink: 0;
    min-width: 0;
  }

  .header:has(.mobile-menu.active) {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .header:has(.mobile-menu.active) .mobile-menu {
    background: transparent;
    box-shadow: none;
    margin: 0 -0.25rem;
    padding: 0.5rem 0 1rem;
  }

  .header:has(.mobile-menu.active) .header-inner {
    border-bottom: none;
  }
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(231, 139, 123, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(231, 139, 123, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(16, 35, 62, 0.04), transparent 50%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.hero-blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 139, 123, 0.15), transparent 70%);
  filter: blur(80px);
}

.hero-blob-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 35, 62, 0.06), transparent 70%);
  filter: blur(80px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 65%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(248, 245, 242, 0.35) 38%,
    var(--background) 100%
  );
  pointer-events: none;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-full);
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  box-shadow: var(--shadow-sm);
}

.hero-title,
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--text-primary);
  position: relative;
}

.hero-subtitle {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  text-wrap: pretty;
  font-weight: 400;
}

/* Search bar — premium */
.search-bar {
  margin-top: 2.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem;
  background: var(--card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(16, 35, 62, 0.02);
  transition: all 0.3s ease;
}

.search-bar-inner:focus-within {
  border-color: var(--border-hover);
  box-shadow:
    var(--shadow-xl),
    0 0 0 3px var(--glow);
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1rem;
  color: var(--muted-foreground);
}

.search-input-wrap input {
  width: 100%;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: var(--foreground);
  font-weight: 400;
}

.search-input-wrap input::placeholder {
  color: var(--muted-foreground);
  font-weight: 400;
}

.search-bar .btn {
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  flex-shrink: 0;
}

/* Popular tags */
.popular-tags {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.popular-tags > span {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.tag {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: var(--card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.tag:hover {
  color: var(--foreground);
  background: var(--card-solid);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-sm);
}

/* Hero trust strip */
.trust-strip {
  margin-top: 3.5rem;
  width: 100%;
}

.trust-strip__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 560px) {
  .trust-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.trust-strip__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 1.375rem 1.25rem 1.25rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 252, 248, 0.72) 100%
  );
  backdrop-filter: blur(20px) saturate(1.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 1.5rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 32px rgba(16, 35, 62, 0.06),
    0 0 0 1px rgba(16, 35, 62, 0.04);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.trust-strip__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231, 139, 123, 0.55) 35%,
    rgba(231, 139, 123, 0.85) 50%,
    rgba(231, 139, 123, 0.55) 65%,
    transparent
  );
  opacity: 0;
  transform: scaleX(0.6);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-strip__item:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 139, 123, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 44px rgba(16, 35, 62, 0.1),
    0 0 0 1px rgba(231, 139, 123, 0.12),
    0 0 32px rgba(231, 139, 123, 0.12);
}

.trust-strip__item:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.trust-strip__icon-wrap {
  --orb: 5.5rem;
  flex-shrink: 0;
  width: var(--orb);
  height: var(--orb);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    62% 62% at 50% 38%,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 244, 232, 0.75) 48%,
    rgba(252, 228, 205, 0.28) 78%,
    transparent 100%
  );
  border: 1px solid rgba(16, 35, 62, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 4px 14px rgba(231, 139, 123, 0.14);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.trust-strip__item:hover .trust-strip__icon-wrap {
  transform: scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 6px 20px rgba(231, 139, 123, 0.22);
}

.trust-strip__icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 2px 6px rgba(16, 35, 62, 0.08));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-strip__item:hover .trust-strip__icon {
  transform: scale(1.06);
}

.trust-strip__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  min-width: 0;
}

.trust-strip__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.028em;
  color: var(--text-primary);
  line-height: 1.3;
  overflow-wrap: break-word;
}

.trust-strip__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-muted);
  overflow-wrap: break-word;
  max-width: 16rem;
}

@media (max-width: 559.98px) {
  .trust-strip__item {
    align-items: center;
    padding: 1.25rem 1.125rem 1.125rem;
    text-align: center;
  }

  .trust-strip__icon-wrap {
    align-self: center;
    margin-top: 0;
    --orb: min(7.5rem, 52vw);
    width: var(--orb);
    height: var(--orb);
  }

  .trust-strip__body {
    align-items: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-strip__item {
    transition: none;
  }

  .trust-strip__item:hover {
    transform: none;
  }
}

@media (min-width: 768px) {
  .hero { padding: 11rem 0 8rem; }
  .hero-title,
  .hero h1 { font-size: 3.75rem; }
  .hero-subtitle { font-size: 1.25rem; }
  .trust-strip {
    margin-top: 5rem;
  }
  .trust-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.125rem;
  }
  .trust-strip__item {
    padding: 1.5rem 1.125rem 1.375rem;
    gap: 1.125rem;
  }
  .trust-strip__icon-wrap {
    --orb: 6.25rem;
  }
  .trust-strip__title {
    font-size: 1rem;
  }
  .trust-strip__desc {
    font-size: 0.8125rem;
    max-width: none;
  }
  .search-input-wrap input { font-size: 1rem; }
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .section-header h2 { font-size: 2.25rem; }
  .categories { padding: 7rem 0; }
}

@media (min-width: 1024px) {
  .hero-title,
  .hero h1 { font-size: 4.5rem; }
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 5rem 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}

.section-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  transition: all 0.25s ease;
}

.section-header-link:hover { color: var(--accent); }

.section-header-link .icon { transition: transform 0.25s ease; }
.section-header-link:hover .icon { transform: translateX(4px); }

/* Premium asymmetric category showcase */
.category-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-showcase__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 0;
}

.category-spotlight {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid rgb(255, 255, 255);
  background-color: #f8f5f2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 1px 2px rgba(16, 35, 62, 0.04),
    0 14px 36px rgba(16, 35, 62, 0.045);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}

.category-spotlight--beauty {
  background-image: url('../assets/beaty.png');
}

.category-spotlight--beauty::after {
  background: linear-gradient(
    to top,
    rgba(248, 245, 242, 0.98) 0%,
    rgba(248, 245, 242, 0.9) 15%,
    rgba(255, 236, 230, 0.35) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.category-spotlight--cleaning {
  background-image: url('../assets/clean.png');
}

.category-spotlight--cleaning::after {
  background: linear-gradient(
    to top,
    rgba(248, 245, 242, 0.98) 0%,
    rgba(248, 245, 242, 0.92) 16%,
    rgba(255, 255, 255, 0.22) 52%,
    rgba(255, 255, 255, 0.06) 100%
  );
}

.category-spotlight--tutors {
  background-image: url('../assets/tutor.png');
}

.category-spotlight--tutors::after {
  background: linear-gradient(
    to top,
    rgba(248, 245, 242, 0.98) 0%,
    rgba(242, 246, 252, 0.9) 15%,
    rgba(236, 244, 252, 0.3) 50%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.category-spotlight:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.category-spotlight:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 35, 62, 0.1);
  box-shadow:
    0 20px 44px rgba(16, 35, 62, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 0 0 3px rgba(231, 139, 123, 0.12);
}

.category-spotlight--featured {
  min-height: 17.5rem;
}

.category-spotlight--medium {
  min-height: 11.5rem;
}

.category-spotlight__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  min-height: 0;
  gap: 0.5rem;
}

.category-spotlight--featured .category-spotlight__content {
  padding: 1.75rem;
}

.category-spotlight--medium .category-spotlight__content {
  padding: 1.375rem 1.25rem;
}

.category-spotlight__text {
  min-width: 0;
  max-width: 26rem;
  padding: 1rem 1.125rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.68)
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(16, 35, 62, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.category-spotlight__title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #10233e;
  line-height: 1.15;
}

.category-spotlight--featured .category-spotlight__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.category-spotlight--medium .category-spotlight__title {
  font-size: 1.3125rem;
  letter-spacing: -0.02em;
}

.category-spotlight__desc {
  font-family: var(--font-body);
  font-weight: 400;
  color: #6b7280;
  line-height: 1.55;
  margin-top: 0.375rem;
}

.category-spotlight--featured .category-spotlight__desc {
  font-size: 1rem;
  max-width: 22rem;
}

.category-spotlight--medium .category-spotlight__desc {
  font-size: 0.9375rem;
}

@media (min-width: 1024px) {
  .category-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    min-height: 26rem;
    align-items: stretch;
  }

  .category-spotlight--featured {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 0;
  }

  .category-showcase__stack {
    grid-column: 2;
    grid-row: 1 / span 2;
    gap: 1.25rem;
    height: 100%;
  }

  .category-spotlight--medium {
    flex: 1;
    min-height: 0;
  }

  .category-spotlight--featured .category-spotlight__content {
    padding: 2.25rem 2rem 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-spotlight {
    transition: none;
  }

  .category-spotlight:hover {
    transform: none;
  }
}

/* ===== TRUST ===== */
.trust {
  position: relative;
  padding: 5rem 0;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    var(--card-solid) 0%,
    var(--card-solid) 76%,
    rgba(248, 245, 242, 0.5) 100%
  );
}

.trust::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  height: clamp(3.5rem, 10vw, 6.5rem);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    rgba(248, 245, 242, 0) 100%
  );
}

.trust > .container {
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  gap: 3rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  background: var(--glow);
  color: var(--coral-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.trust h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
}

.trust h2 .accent { color: var(--accent); }

.trust-desc {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.trust-features {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.trust-feature {
  display: flex;
  gap: 1rem;
  padding: 0.625rem 0.75rem;
  margin: 0 -0.75rem;
  border-radius: var(--radius-xl);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.trust-feature:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.38)
  );
  box-shadow:
    0 10px 28px rgba(16, 35, 62, 0.06),
    0 0 0 1px rgba(16, 35, 62, 0.04);
}

.trust-feature:hover .trust-feature-icon {
  border-color: rgba(231, 139, 123, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 20px rgba(16, 35, 62, 0.07);
}

@media (prefers-reduced-motion: reduce) {
  .trust-feature {
    transition: none;
  }

  .trust-feature:hover {
    transform: none;
  }
}

.trust-feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  min-width: 3.125rem;
  padding: 0;
  border-radius: 50%;
  background: radial-gradient(
    72% 72% at 50% 38%,
    rgba(255, 252, 250, 1) 0%,
    rgba(255, 238, 232, 0.55) 62%,
    rgba(255, 228, 218, 0.35) 100%
  );
  border: 1px solid rgba(231, 139, 123, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 6px 16px rgba(16, 35, 62, 0.06);
  color: #10233e;
}

.trust-feature-icon__glyph {
  width: 1.75rem;
  height: 1.75rem;
}

.trust-feature-icon__glyph svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  color: #10233e;
}

.trust-feature-icon__glyph svg :is(path, line, circle, polygon) {
  stroke: currentColor;
  fill: none;
  stroke-width: 2.15;
}

.trust-feature h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  color: #10233e;
}

.trust-feature p {
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Trust visual — reference illustration */
.trust-visual {
  position: relative;
}

.trust-visual-bg {
  position: relative;
  aspect-ratio: 1;
  max-width: 24rem;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(231, 139, 123, 0.06), rgba(16, 35, 62, 0.03));
  box-shadow:
    0 14px 40px rgba(16, 35, 62, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.45) inset;
}

.trust-visual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .trust-features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .trust { padding: 7rem 0; }
  .trust h2 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    align-items: center;
  }

  .trust-visual-bg {
    max-width: none;
    margin: 0;
  }
}

/* ===== COMMUNITY (immersive editorial — centered, layered) ===== */
.community {
  position: relative;
  isolation: isolate;
  padding: clamp(4.5rem, 12vw, 8rem) 0 clamp(2.75rem, 8vw, 4rem);
  overflow: hidden;
  background-color: var(--background);
}

.community::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(
      165deg,
      rgba(248, 245, 242, 0.78) 0%,
      rgba(248, 245, 242, 0.38) 38%,
      rgba(248, 245, 242, 0.28) 52%,
      rgba(248, 245, 242, 0.5) 100%
    ),
    var(--community-bg-image);
  background-repeat: no-repeat;
  background-size: auto, cover;
  background-position: 0 0, center center;
  filter: saturate(1.02) contrast(0.97);
  pointer-events: none;
}

.community::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(
      to bottom,
      var(--background) 0,
      rgba(248, 245, 242, 0.55) 2.25rem,
      rgba(248, 245, 242, 0.16) 5.5rem,
      rgba(248, 245, 242, 0) min(10rem, 22vh)
    ),
    linear-gradient(
      to top,
      var(--card-solid) 0,
      rgba(255, 255, 255, 0.78) 1.5rem,
      rgba(255, 255, 255, 0.38) 3.5rem,
      rgba(248, 245, 242, 0.14) 6rem,
      rgba(248, 245, 242, 0.04) 9rem,
      rgba(248, 245, 242, 0) min(13.5rem, 26vh)
    );
}

.community__ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.community__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(255, 255, 255, 0.75) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 80% 100%, rgba(231, 139, 123, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 10% 60%, rgba(16, 35, 62, 0.04) 0%, transparent 45%);
}

.community__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
}

.community__glow--coral {
  width: min(42rem, 90vw);
  height: min(42rem, 90vw);
  top: 15%;
  right: -18%;
  background: radial-gradient(circle, rgba(231, 139, 123, 0.22) 0%, transparent 68%);
}

.community__glow--navy {
  width: min(36rem, 80vw);
  height: min(36rem, 80vw);
  bottom: 5%;
  left: -22%;
  background: radial-gradient(circle, rgba(16, 35, 62, 0.07) 0%, transparent 70%);
  opacity: 0.7;
}

.community__glow--mist {
  width: min(28rem, 70vw);
  height: min(28rem, 70vw);
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 65%);
  filter: blur(56px);
  opacity: 0.85;
}

.community__container {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin: 0 auto;
}

.community__hero {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}

.community__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.125rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-dark);
  background: linear-gradient(
    135deg,
    rgba(255, 252, 250, 0.95),
    rgba(255, 228, 218, 0.5)
  );
  border: 1px solid rgba(231, 139, 123, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 32px rgba(231, 139, 123, 0.12);
  margin-bottom: 1.5rem;
}

.community__headline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.25rem, 7.5vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: #10233e;
  text-wrap: balance;
}

.community__subline {
  margin: 1.5rem auto 0;
  max-width: 32rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  line-height: 1.65;
  color: #6b7280;
  text-wrap: pretty;
}

.community__cta {
  position: relative;
  margin-top: clamp(2.75rem, 7vw, 4.5rem);
  padding-bottom: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.community__cta-btn {
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  font-weight: 600;
  min-height: 3.375rem;
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius-full);
  box-shadow:
    var(--shadow-sm),
    0 12px 32px rgba(16, 35, 62, 0.12);
}

.community__cta-btn:hover {
  box-shadow:
    0 4px 20px rgba(16, 35, 62, 0.18),
    0 14px 36px rgba(16, 35, 62, 0.1);
}

.community__scene {
  position: relative;
  margin-top: clamp(3rem, 8vw, 5.5rem);
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(0.5rem, 2vw, 1rem);
}

.community__features {
  position: relative;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 38rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.125rem);
}

.community-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.375rem 1.25rem;
  text-align: left;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(16, 35, 62, 0.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 12px 40px rgba(16, 35, 62, 0.06),
    0 2px 8px rgba(16, 35, 62, 0.03);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.community-feature:nth-child(1) {
  transform: translateY(0);
}

.community-feature:nth-child(2) {
  transform: translateY(0.35rem);
}

.community-feature:nth-child(3) {
  transform: translateY(-0.25rem);
}

.community-feature:nth-child(4) {
  transform: translateY(0.5rem);
}

.community-feature:hover {
  transform: translateY(-6px) !important;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(231, 139, 123, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 24px 56px rgba(16, 35, 62, 0.09),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset,
    0 0 40px rgba(231, 139, 123, 0.14);
}

.community-feature__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #10233e;
  background: radial-gradient(
    70% 70% at 40% 30%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 232, 224, 0.4) 100%
  );
  border: 1px solid rgba(231, 139, 123, 0.14);
}

.community-feature__icon svg {
  width: 1.0625rem;
  height: 1.0625rem;
}

.community-feature__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  color: #10233e;
  line-height: 1.25;
}

.community-feature__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #6b7280;
}

@media (prefers-reduced-motion: reduce) {
  .community-feature {
    transition: none;
  }

  .community-feature:hover {
    transform: none !important;
  }

  .community-feature:nth-child(1),
  .community-feature:nth-child(2),
  .community-feature:nth-child(3),
  .community-feature:nth-child(4) {
    transform: none;
  }
}

@media (min-width: 768px) {
  .community__features {
    max-width: 42rem;
    gap: 1.125rem 1.25rem;
  }

  .community-feature {
    padding: 1.5rem 1.375rem;
  }

  .community__cta {
    margin-top: clamp(3rem, 8vw, 5rem);
  }

  .community__cta-btn {
    min-height: 3.5rem;
    padding: 1rem 2.875rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .community__container {
    max-width: 56rem;
  }

  .community__headline {
    font-size: clamp(3rem, 5.2vw, 4.5rem);
  }

  .community__features {
    max-width: 44rem;
  }

  .community__cta-btn {
    min-height: 3.625rem;
    padding: 1.0625rem 3rem;
    font-size: 1.1875rem;
  }
}

/* Mockup UI styles (How It Works vignettes) */
.mockup {
  background: var(--card-solid);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.mockup-search-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--background);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.mockup-tags {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.375rem;
}

.mockup-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-profile-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.mockup-profile-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mockup-profile-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mockup-profile-rating span {
  font-size: 10px;
  color: var(--muted-foreground);
}

.mockup-thumbs {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.25rem;
}

.mockup-thumb {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #ddd8d2);
}

.mockup-contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mockup-contact-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mockup-contact-btn.telegram { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.mockup-contact-btn.instagram { background: linear-gradient(135deg, var(--pink-500), var(--purple-500)); }
.mockup-contact-btn.phone { background: linear-gradient(135deg, var(--green-500), var(--emerald-500)); }

.mockup-contact-label {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 10px;
  color: var(--muted-foreground);
  font-weight: 500;
}

.mockup-editor-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mockup-editor-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.mockup-editor-lines { flex: 1; }

.mockup-line {
  height: 0.5rem;
  border-radius: 0.25rem;
  background: var(--secondary);
}

.mockup-line.short { width: 4rem; }
.mockup-line.shorter { width: 3rem; height: 0.375rem; background: var(--border); margin-top: 0.25rem; }

.mockup-placeholder-lines {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mockup-placeholder-line {
  height: 0.5rem;
  border-radius: 0.25rem;
  background: var(--border);
}

.mockup-placeholder-line.w-75 { width: 75%; }

.mockup-notif-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup-bell-wrap { position: relative; }

.mockup-bell-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--accent);
  border-radius: 50%;
  font-size: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.mockup-notif-label {
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
}

.mockup-notif-list {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.mockup-notif-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.5rem;
}

.mockup-notif-item.highlight { background: var(--glow); }
.mockup-notif-item.muted { background: var(--secondary); }

.mockup-notif-dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}

.mockup-notif-dot.blue { background: rgba(231, 139, 123, 0.3); }
.mockup-notif-dot.gray { background: var(--border); }

.mockup-notif-text { font-size: 10px; font-weight: 500; }

.mockup-notif-item.highlight .mockup-notif-text { color: var(--navy); }
.mockup-notif-item.muted .mockup-notif-text { color: var(--muted-foreground); }

.mockup-rating-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.mockup-rating-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mockup-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(16, 35, 62, 0.08);
  color: var(--text-primary);
  padding: 0.125rem 0.375rem;
  border-radius: var(--radius-full);
  font-size: 9px;
  font-weight: 700;
}

.mockup-rating-quote {
  font-size: 10px;
  color: var(--muted-foreground);
  font-style: italic;
}

/* ===== FOOTER SECTION (dark) ===== */
.footer-section {
  position: relative;
  margin-top: clamp(1.25rem, 3.5vw, 2.5rem);
  padding: clamp(1.5rem, 3.5vw, 2rem) 0 0;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    var(--navy-dark) 0%,
    var(--navy) 42%,
    var(--navy-light) 100%
  );
  color: rgba(255, 255, 255, 0.92);
}

.footer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 55% at 88% 5%, rgba(231, 139, 123, 0.14), transparent 58%),
    radial-gradient(ellipse 70% 45% at 8% 95%, rgba(231, 139, 123, 0.08), transparent 52%);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-brand .logo-img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.25s ease;
  font-weight: 500;
}

.footer-col a:hover {
  color: var(--coral-light);
}

.footer-col--contacts {
  grid-column: 1 / -1;
}

.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-link:hover {
  color: var(--coral-light);
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-icon svg {
  width: 1.0625rem;
  height: 1.0625rem;
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Site support contacts (compact) --- */
.rika-support--compact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.875rem;
}

.rika-support__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.rika-support__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rika-support__link svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  opacity: 0.75;
}

.rika-support__link:hover {
  color: var(--coral);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-brand { grid-column: span 1; }
  .footer-col--contacts { grid-column: auto; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
