/* ==========================================================================
   Дарья | Рациональная астрология — Dark Cosmic Luxury Theme
   ========================================================================== */

:root {
  /* Color Palette: Deep Space Abyss */
  --bg-abyss: #070811;
  --bg-space: #0c0e1c;
  --bg-surface: #121528;
  --bg-card: rgba(18, 22, 44, 0.72);
  --bg-card-hover: rgba(28, 34, 68, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.035);
  
  /* Cosmic Glows & Accents */
  --accent-gold: #fbbf24;
  --accent-gold-light: #fef08a;
  --accent-gold-glow: rgba(251, 191, 36, 0.35);
  --accent-purple: #9333ea;
  --accent-indigo: #6366f1;
  --accent-cyan: #38bdf8;
  --accent-gradient: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #38bdf8 100%);
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  
  /* Text colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-gold: #fde68a;
  
  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(168, 85, 247, 0.35);
  --border-gold: rgba(251, 191, 36, 0.4);
  --shadow-card: 0 16px 36px -10px rgba(0, 0, 0, 0.6), 0 0 24px -5px rgba(124, 58, 237, 0.15);
  --shadow-glow: 0 0 35px -5px rgba(147, 51, 234, 0.4);
  --shadow-gold-glow: 0 0 30px -5px rgba(251, 191, 36, 0.4);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-heading: 'Cinzel', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-abyss);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Cosmic Canvas Background */
#space-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

/* Nebula Lighting Orbs */
.nebula-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  animation: pulseNebula 14s ease-in-out infinite alternate;
}

.nebula-1 {
  top: -10vw;
  right: -5vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, #7c3aed 0%, rgba(99, 102, 241, 0.3) 50%, transparent 70%);
}

.nebula-2 {
  top: 40vh;
  left: -15vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, #2563eb 0%, rgba(139, 92, 246, 0.2) 60%, transparent 75%);
  animation-delay: -7s;
}

.nebula-3 {
  bottom: 5vh;
  right: 10vw;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, #d97706 0%, rgba(217, 119, 6, 0.15) 50%, transparent 70%);
  animation-delay: -3s;
}

@keyframes pulseNebula {
  0% { transform: scale(1) translate(0, 0); opacity: 0.22; }
  50% { transform: scale(1.15) translate(3%, -2%); opacity: 0.32; }
  100% { transform: scale(0.95) translate(-2%, 4%); opacity: 0.25; }
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography Utility */
h1, h2, h3, h4, .serif-text {
  font-family: var(--font-heading);
  letter-spacing: 0.03em;
  font-weight: 600;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 8, 17, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 8, 17, 0.92);
  border-bottom-color: rgba(168, 85, 247, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-symbol {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #a855f7, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--accent-gold-glow);
  position: relative;
}

.logo-symbol svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.logo-info {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #9333ea 0%, #6366f1 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.65);
  background: linear-gradient(135deg, #a855f7 0%, #4f46e5 100%);
}

.btn-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #0f172a;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.35);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-subtle);
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-indigo);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #e9d5ff;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .sparkle-icon {
  color: var(--accent-gold);
  animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: #cbd5e1;
}

.feature-pill svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-val {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.trust-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual / Avatar */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.celestial-orbit {
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 1px dashed rgba(168, 85, 247, 0.3);
  animation: rotateCelestial 60s linear infinite;
  pointer-events: none;
}

.celestial-orbit::before {
  content: '♈';
  position: absolute;
  top: -12px;
  left: 50%;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.celestial-orbit::after {
  content: '♎';
  position: absolute;
  bottom: -12px;
  left: 50%;
  color: var(--accent-indigo);
  font-size: 1.1rem;
}

@keyframes rotateCelestial {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.photo-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 6px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.5) 0%, rgba(168, 85, 247, 0.5) 50%, rgba(99, 102, 241, 0.5) 100%);
  box-shadow: var(--shadow-glow), 0 20px 50px rgba(0,0,0,0.8);
  max-width: 440px;
  width: 100%;
}

.photo-card-inner {
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  position: relative;
  background: #000;
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.photo-card:hover img {
  transform: scale(1.02);
}

.photo-badge-top {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(12, 14, 28, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.photo-badge-bottom {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(12, 14, 28, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.badge-text-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.badge-text-desc {
  font-size: 0.78rem;
  color: var(--accent-gold);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px auto;
}

.section-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 18px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   About Section (Rational Approach)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(16px);
  position: relative;
  box-shadow: var(--shadow-card);
}

.about-quote-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 30px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(168, 85, 247, 0.2);
  line-height: 1;
  pointer-events: none;
}

.about-quote-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #f1f5f9;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.author-title {
  font-size: 0.82rem;
  color: var(--accent-gold);
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
}

.pillar-item:hover {
  transform: translateX(8px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
}

.pillar-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #fff;
}

.pillar-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Topics & Directions Grid
   ========================================================================== */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(14px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topic-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.topic-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
  background: var(--bg-card-hover);
}

.topic-card:hover::after {
  opacity: 1;
}

.topic-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.topic-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.topic-number {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 700;
  opacity: 0.8;
}

.topic-title {
  font-size: 1.28rem;
  margin-bottom: 12px;
  color: #fff;
}

.topic-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.topic-takeaway {
  background: rgba(255, 255, 255, 0.025);
  border-left: 3px solid var(--accent-gold);
  padding: 10px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.86rem;
  color: #e2e8f0;
}

.topic-takeaway strong {
  color: var(--accent-gold);
}

/* ==========================================================================
   Pricing & Tariffs
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 42px 36px;
  backdrop-filter: blur(18px);
  position: relative;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.pricing-card.featured {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold-glow), 0 20px 40px rgba(0,0,0,0.6);
  background: linear-gradient(180deg, rgba(30, 36, 72, 0.85) 0%, rgba(18, 22, 44, 0.9) 100%);
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  right: 32px;
  background: var(--gold-gradient);
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.5);
}

.pricing-header {
  margin-bottom: 26px;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}

.pricing-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}

.pricing-card.featured .pricing-price {
  color: var(--accent-gold);
}

.pricing-currency {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card.featured .check-icon {
  color: var(--accent-gold);
}

/* Payment Safety Callout */
.payment-trust-banner {
  max-width: 960px;
  margin: 40px auto 0 auto;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
}

.payment-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.payment-trust-content h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.payment-trust-content p {
  font-size: 0.88rem;
  color: #a7f3d0;
}

/* ==========================================================================
   Process Roadmap (1-2-3-4)
   ========================================================================== */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.roadmap-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #9333ea 0%, #6366f1 50%, #fbbf24 100%);
  z-index: 0;
  opacity: 0.35;
}

.roadmap-step {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(14px);
  transition: all var(--transition-smooth);
}

.roadmap-step:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: var(--shadow-card);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-abyss);
  border: 2px solid var(--accent-indigo);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.4);
}

.roadmap-step:last-child .step-num {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.4);
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Interactive Calculator / Booking Form
   ========================================================================== */
.booking-section {
  background: radial-gradient(circle at 50% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
}

.booking-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-card), 0 0 50px rgba(99, 102, 241, 0.15);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-control {
  background: rgba(12, 14, 28, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-indigo);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
  background: rgba(18, 22, 44, 0.9);
}

.time-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}

.tariff-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 4px;
}

.tariff-radio-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  background: rgba(12, 14, 28, 0.6);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tariff-radio-card input {
  display: none;
}

.tariff-radio-card.active {
  border-color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.08);
}

.tariff-radio-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.tariff-radio-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 700;
}

/* Message Output & Action Buttons */
.booking-preview-box {
  background: rgba(7, 8, 17, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 26px;
}

.preview-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 8px;
  display: block;
}

.preview-text {
  font-family: monospace;
  font-size: 0.88rem;
  color: #cbd5e1;
  white-space: pre-wrap;
  line-height: 1.5;
}

.booking-channels-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-channel {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.btn-tg {
  background: #229ed9;
  color: #fff;
}
.btn-tg:hover { background: #1b86b8; transform: translateY(-2px); }

.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover { background: #1eb956; transform: translateY(-2px); }

.btn-avito {
  background: #00aaff;
  color: #fff;
}
.btn-avito:hover { background: #0092db; transform: translateY(-2px); }

.btn-copy {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: #fff;
}
.btn-copy:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }

/* ==========================================================================
   Location & Offline Info
   ========================================================================== */
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  backdrop-filter: blur(16px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.loc-details h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #fff;
}

.loc-address {
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.metro-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.metro-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.metro-badge {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.metro-blue { background: #0078d4; box-shadow: 0 0 8px #0078d4; }
.metro-red { background: #e81123; box-shadow: 0 0 8px #e81123; }
.metro-orange { background: #ff8c00; box-shadow: 0 0 8px #ff8c00; }

.work-hours-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.loc-map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  position: relative;
  min-height: 280px;
  background: #090c1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-toggle-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.5s ease-in-out;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #04050a;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px 0;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 380px;
}

.footer-col h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Toast notification */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(18, 22, 44, 0.95);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-smooth);
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   Promo Banner (DestinyHub)
   ========================================================================== */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #4c1d95 100%);
  border-bottom: 1px solid rgba(168, 85, 247, 0.4);
}

.promo-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.promo-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.promo-banner-text {
  font-size: 0.85rem;
  color: #e2e8f0;
  text-align: center;
  line-height: 1.4;
}

.promo-banner-text a {
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 191, 36, 0.4);
  transition: all var(--transition-fast);
}

.promo-banner-text a:hover {
  color: var(--accent-gold-light);
  border-bottom-color: var(--accent-gold);
}

.promo-banner-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  font-size: 0.9rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
  line-height: 1;
}

.promo-banner-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Shift header & hero when banner is visible */
body:has(.promo-banner:not(.hidden)) .site-header {
  top: 42px;
}

body:has(.promo-banner:not(.hidden)) .hero-section {
  padding-top: 190px;
}

body:has(.promo-banner:not(.hidden)) .nav-menu {
  top: 122px;
}

/* Floating Quick Bar for Mobile */
.mobile-quick-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 8, 17, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 10px 16px;
  z-index: 99;
  gap: 10px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* ---------- Tablet (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-description {
    margin: 0 auto 32px auto;
  }
  .hero-features-row, .hero-actions {
    justify-content: center;
  }
  .trust-bar {
    justify-content: center;
    flex-wrap: wrap;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roadmap-grid::before {
    display: none;
  }
  .location-card {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .photo-card {
    max-width: 340px;
    margin: 0 auto;
  }
}

/* ---------- Mobile (≤ 768px) ---------- */
@media (max-width: 768px) {
  /* -- Base & Layout -- */
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 60px 0;
  }

  /* -- Header & Nav -- */
  .nav-wrap {
    height: 64px;
  }
  .logo-title {
    font-size: 1rem;
  }
  .logo-sub {
    font-size: 0.65rem;
  }
  .logo-symbol {
    width: 32px;
    height: 32px;
  }
  .logo-symbol svg {
    width: 18px;
    height: 18px;
  }
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: rgba(7, 8, 17, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 20px;
    gap: 6px;
    transform: translateY(-150%);
    transition: transform var(--transition-smooth);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 100;
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
  }
  .nav-link:hover, .nav-link:active {
    background: rgba(255,255,255,0.05);
  }
  .mobile-toggle {
    display: block;
  }
  .nav-actions .btn-primary.btn-sm,
  .nav-actions > a.btn {
    display: none !important;
  }
  .nav-actions {
    gap: 0;
  }

  /* -- Hero -- */
  .hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }
  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    margin-bottom: 18px;
  }
  .hero-title {
    font-size: clamp(1.7rem, 6.5vw, 2.4rem);
    margin-bottom: 16px;
  }
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .hero-features-row {
    gap: 10px;
    margin-bottom: 24px;
  }
  .feature-pill {
    font-size: 0.78rem;
    padding: 6px 10px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn-lg {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* -- Trust Bar -- */
  .trust-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 8px;
    text-align: center;
    padding-top: 20px;
  }
  .trust-item {
    align-items: center;
  }
  .trust-val {
    font-size: 0.95rem;
    word-break: break-word;
  }
  .trust-lbl {
    font-size: 0.65rem;
  }

  /* -- Hero Photo Card -- */
  .hero-visual {
    order: -1;
  }
  .photo-card {
    max-width: 220px;
    margin: 0 auto;
    padding: 4px;
  }
  .celestial-orbit {
    display: none;
  }
  .photo-badge-top {
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 0.65rem;
    gap: 4px;
  }
  .photo-badge-bottom {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    gap: 4px;
  }
  .badge-text-title {
    font-size: 0.75rem;
  }
  .badge-text-desc {
    font-size: 0.6rem;
  }
  .photo-badge-bottom > div:last-child span:last-child {
    font-size: 0.65rem !important;
  }
  .status-dot {
    width: 7px;
    height: 7px;
  }

  /* -- Section Headers -- */
  .section-header {
    margin-bottom: 36px;
  }
  .section-kicker {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 12px;
  }
  .section-subtitle {
    font-size: 0.92rem;
  }

  /* -- About Section -- */
  .about-quote-card {
    padding: 24px 20px;
  }
  .about-quote-card::before {
    font-size: 3.5rem;
    top: 8px;
    left: 16px;
  }
  .about-quote-text {
    font-size: 1.05rem;
  }
  .pillar-item {
    padding: 18px 16px;
    gap: 14px;
  }
  .pillar-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .pillar-content h3 {
    font-size: 1rem;
  }
  .pillar-content p {
    font-size: 0.85rem;
  }

  /* -- Topics Grid -- */
  .topics-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .topic-card {
    padding: 22px 18px;
  }
  .topic-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .topic-title {
    font-size: 1.1rem;
  }
  .topic-desc {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }
  .topic-takeaway {
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  /* -- Pricing -- */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pricing-card {
    padding: 28px 22px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  .pricing-card:hover {
    transform: translateY(-4px);
  }
  .pricing-price {
    font-size: 2.4rem;
  }
  .pricing-title {
    font-size: 1.25rem;
  }
  .pricing-feature-item {
    font-size: 0.85rem;
  }
  .popular-ribbon {
    font-size: 0.7rem;
    padding: 5px 12px;
    top: -12px;
    right: 20px;
  }
  .payment-trust-banner {
    padding: 16px 18px;
    gap: 14px;
    flex-direction: column;
    text-align: center;
  }

  /* -- Process Roadmap -- */
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .roadmap-step {
    padding: 22px 18px;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .step-num {
    margin: 0;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .step-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .step-desc {
    font-size: 0.82rem;
  }

  /* -- Booking Form -- */
  .booking-card {
    padding: 22px 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .form-control {
    padding: 12px 14px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  .tariff-select-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tariff-radio-card {
    padding: 14px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .tariff-radio-title {
    font-size: 0.85rem;
  }
  .tariff-radio-price {
    font-size: 0.95rem;
  }
  .booking-preview-box {
    padding: 14px;
  }
  .preview-text {
    font-size: 0.8rem;
  }
  .booking-channels-row {
    flex-direction: column;
    gap: 10px;
  }
  .btn-channel {
    min-width: 0;
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  /* -- Location -- */
  .location-card {
    padding: 24px 18px;
    gap: 24px;
  }
  .loc-details h3 {
    font-size: 1.2rem;
  }
  .loc-address {
    font-size: 0.95rem;
  }
  .loc-map-box {
    min-height: 200px;
  }

  /* -- FAQ -- */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .faq-answer {
    padding: 0 18px;
  }
  .faq-answer p {
    font-size: 0.88rem;
  }

  /* -- Footer -- */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer {
    padding: 40px 0 20px 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* -- Toast -- */
  .toast-notice {
    left: 16px;
    right: 16px;
    bottom: 80px;
    font-size: 0.82rem;
    padding: 12px 16px;
  }

  /* -- Floating Mobile CTA Bar -- */
  .mobile-quick-bar {
    display: flex;
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }
  .mobile-quick-bar .btn {
    border-radius: var(--radius-md);
  }
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  }

  /* -- Reduce heavy effects for performance -- */
  .nebula-glow {
    display: none;
  }
  .hero-badge {
    white-space: normal;
    text-align: center;
  }

  /* -- Promo Banner Mobile -- */
  .promo-banner-inner {
    padding: 8px 12px;
    gap: 10px;
  }
  .promo-banner-text {
    font-size: 0.72rem;
    line-height: 1.35;
  }
  .promo-banner-close {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  body:has(.promo-banner:not(.hidden)) .site-header {
    top: 36px;
  }
  body:has(.promo-banner:not(.hidden)) .hero-section {
    padding-top: 140px;
  }
  body:has(.promo-banner:not(.hidden)) .nav-menu {
    top: 100px;
  }
}

/* ---------- Small phones (≤ 480px) ---------- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 12px;
  }
  .hero-title {
    font-size: 1.45rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  .hero-description {
    font-size: 0.88rem;
  }
  .feature-pill {
    font-size: 0.72rem;
    padding: 5px 8px;
  }
  .trust-bar {
    gap: 10px 6px;
  }
  .trust-val {
    font-size: 0.82rem;
  }
  .trust-lbl {
    font-size: 0.6rem;
  }
  .photo-card {
    max-width: 190px;
  }
  .photo-badge-bottom {
    padding: 6px 8px;
  }
  .badge-text-title {
    font-size: 0.68rem;
  }
  .badge-text-desc {
    font-size: 0.55rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .pricing-price {
    font-size: 2rem;
  }
  .booking-card {
    padding: 16px 10px;
  }
  .about-quote-text {
    font-size: 0.9rem;
  }
  .roadmap-step {
    gap: 12px;
    padding: 16px 12px;
  }
  .mobile-quick-bar {
    padding: 8px 10px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-quick-bar .btn-sm {
    font-size: 0.75rem !important;
    padding: 10px 8px !important;
  }
}
