/* === Reset & Base === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* === Utilities === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.section-header p { font-size: 1.125rem; color: #64748b; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6366f1;
  margin-bottom: 12px;
}
.section-tag.light { color: #a5b4fc; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
}
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(99,102,241,0.5); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid #e2e8f0;
  color: #1a1a2e;
}
.btn-outline:hover { border-color: #6366f1; color: #6366f1; }
.btn-ghost { background: transparent; color: #64748b; }
.btn-ghost:hover { color: #6366f1; }
.btn-block { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { font-size: 0.9rem; color: #64748b; font-weight: 500; transition: color 0.2s; }
.nav-links a:not(.btn):hover { color: #6366f1; }
/* Language Switch */
.lang-switch {
  display: flex;
  gap: 2px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 2px;
}
.lang-switch a {
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  color: #64748b;
  transition: all 0.2s;
}
.lang-switch a.lang-active {
  background: #fff;
  color: #1a1a2e;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.lang-switch a:hover:not(.lang-active) { color: #6366f1; }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: #1a1a2e; border-radius: 2px; transition: all 0.2s; }
.mobile-menu { display: none; flex-direction: column; gap: 12px; padding: 16px 24px 24px; border-top: 1px solid #f1f5f9; }
.mobile-menu a { font-size: 1rem; color: #64748b; padding: 8px 0; }
.mobile-menu.open { display: flex; }

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

/* === Hero === */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(99,102,241,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 100%, rgba(139,92,246,0.06) 0%, transparent 50%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-block;
  background: #f0f0ff;
  color: #6366f1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.hero-sub { font-size: 1.125rem; color: #64748b; max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.hero-cta { display: flex; gap: 16px; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 24px; align-items: center; }
.stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: #6366f1; }
.stat-label { font-size: 0.8rem; color: #94a3b8; font-weight: 500; }
.stat-divider { width: 1px; height: 32px; background: #e2e8f0; }

/* App Mockup */
.hero-visual { perspective: 1000px; }
.app-mockup {
  background: #1e1e2e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.05);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s;
}
.app-mockup:hover { transform: rotateY(-2deg) rotateX(1deg); }
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #16161f;
  border-bottom: 1px solid #2a2a3e;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }
.mockup-url { font-size: 0.75rem; color: #64748b; background: #0f0f1a; padding: 4px 12px; border-radius: 6px; flex:1; text-align: center; }
.mockup-screen { display: flex; min-height: 300px; }
.mockup-sidebar { width: 140px; background: #16161f; padding: 12px 0; border-right: 1px solid #2a2a3e; flex-shrink: 0; }
.sb-item { display: flex; align-items: center; gap: 8px; padding: 8px 14px; font-size: 0.72rem; color: #8892a4; cursor: pointer; }
.sb-item.active { color: #fff; background: rgba(99,102,241,0.15); border-right: 2px solid #6366f1; }
.mockup-content { flex: 1; padding: 14px; }
.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mh-title { font-size: 0.85rem; font-weight: 700; color: #fff; }
.mh-badges { display: flex; gap: 6px; }
.badge { font-size: 0.6rem; font-weight: 600; padding: 3px 8px; border-radius: 10px; }
.badge-green { background: rgba(34,197,94,0.15); color: #22c55e; }
.badge-orange { background: rgba(249,115,22,0.15); color: #f97316; }

/* Calendar mockup */
.mockup-calendar { font-size: 0.65rem; }
.cal-row { display: flex; align-items: center; border-bottom: 1px solid #2a2a3e; }
.cal-row.cal-header { color: #64748b; font-weight: 600; }
.cal-room-label { width: 60px; padding: 6px 8px; color: #8892a4; font-size: 0.6rem; flex-shrink: 0; }
.cal-day { flex: 1; padding: 6px 4px; text-align: center; }
.cal-day.today { color: #6366f1; font-weight: 700; }
.cal-cells { flex: 1; display: flex; position: relative; height: 28px; align-items: center; }
.cal-row:not(.cal-header) .cal-cells { display: block; position: relative; }
.booking-bar {
  position: absolute;
  height: 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  font-size: 0.58rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  top: 4px;
}
.bar-blue { background: linear-gradient(90deg, #3b82f6, #6366f1); }
.bar-green { background: linear-gradient(90deg, #22c55e, #16a34a); }
.bar-purple { background: linear-gradient(90deg, #8b5cf6, #a855f7); }
.bar-orange { background: linear-gradient(90deg, #f97316, #fb923c); }
.bar-teal { background: linear-gradient(90deg, #14b8a6, #2dd4bf); }
.bar-pink { background: linear-gradient(90deg, #ec4899, #f472b6); }

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; }
  .app-mockup { transform: none; }
  .app-mockup:hover { transform: none; }
  .mockup-sidebar { width: 100px; }
  .mockup-sidebar .sb-item { font-size: 0.6rem; padding: 6px 8px; gap: 4px; }
  .mockup-sidebar .sb-item svg { width: 12px; height: 12px; }
}

/* === Trusted === */
.trusted { padding: 60px 0; border-bottom: 1px solid #f1f5f9; }
.trusted-label { text-align: center; font-size: 0.85rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.trusted-types { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.type-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s;
}
.type-pill:hover { border-color: #6366f1; color: #6366f1; background: #f0f0ff; }

/* === Problem Section === */
.problem { padding: 80px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.problem-card {
  padding: 36px;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s;
}
.problem-card.visible { opacity: 1; transform: translateY(0); }
.problem-card.old { background: #fef2f2; border: 1px solid #fecaca; }
.problem-card.new { background: #f0fdf4; border: 1px solid #bbf7d0; }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 16px; }
.problem-card li { padding: 6px 0; color: #475569; font-size: 0.95rem; position: relative; padding-left: 20px; }
.problem-card.old li::before { content: '✕'; position: absolute; left: 0; color: #ef4444; font-weight: 700; }
.problem-card.new li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }

@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* === Features === */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 28px;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(20px);
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { border-color: #e0e7ff; box-shadow: 0 8px 30px rgba(99,102,241,0.08); }
.feature-large { grid-column: span 3; display: grid; grid-template-columns: auto 1fr; gap: 0 20px; background: linear-gradient(135deg, #f8faff, #f0f0ff); border-color: #e0e7ff; }
.feature-large .feature-icon-wrap { grid-row: span 3; align-self: start; }
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon-wrap.blue { background: #eef2ff; color: #6366f1; }
.feature-icon-wrap.green { background: #ecfdf5; color: #22c55e; }
.feature-icon-wrap.purple { background: #f5f3ff; color: #8b5cf6; }
.feature-icon-wrap.orange { background: #fff7ed; color: #f97316; }
.feature-icon-wrap.teal { background: #f0fdfa; color: #14b8a6; }
.feature-icon-wrap.pink { background: #fdf2f8; color: #ec4899; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: #64748b; line-height: 1.6; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.feature-tags span { font-size: 0.72rem; font-weight: 600; background: rgba(99,102,241,0.1); color: #6366f1; padding: 4px 10px; border-radius: 6px; }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; grid-template-columns: 1fr; }
  .feature-large .feature-icon-wrap { grid-row: auto; }
  .section-header h2 { font-size: 1.8rem; }
}

/* === Guest Community Section === */
.guest-community {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f7ff 0%, #fff 100%);
  border-top: 1px solid #e0e7ff;
  border-bottom: 1px solid #e0e7ff;
}
.community-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.community-text h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.community-text > p { font-size: 1.05rem; color: #64748b; margin-bottom: 36px; line-height: 1.7; }
.community-features { display: flex; flex-direction: column; gap: 24px; }
.cf-item { display: flex; gap: 16px; align-items: flex-start; }
.cf-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: #1a1a2e; }
.cf-item p { font-size: 0.88rem; color: #64748b; line-height: 1.5; }

.community-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: sticky;
  top: 84px;
}
.comp-column {
  border-radius: 16px;
  padding: 24px;
}
.comp-others { background: #fef2f2; border: 1px solid #fecaca; }
.comp-us { background: #f0fdf4; border: 1px solid #bbf7d0; }
.comp-header {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.comp-others .comp-header { color: #dc2626; }
.comp-us .comp-header { color: #16a34a; }
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  padding: 8px 0;
  line-height: 1.4;
}
.comp-item svg { flex-shrink: 0; margin-top: 2px; }
.comp-item.negative { color: #7f1d1d; }
.comp-item.positive { color: #14532d; }

@media (max-width: 768px) {
  .community-layout { grid-template-columns: 1fr; gap: 40px; }
  .community-text h2 { font-size: 1.8rem; }
  .community-comparison { grid-template-columns: 1fr; position: static; }
}

/* === Dark Sections === */
.section-dark { background: #0f0f1a; color: #fff; padding: 100px 0; }
.section-dark p { color: #94a3b8; }
.section-light { background: #f8fafc; padding: 100px 0; }

/* === Split Sections === */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-text h2 { font-size: 2.25rem; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.split-text p { font-size: 1.05rem; color: #64748b; margin-bottom: 24px; line-height: 1.7; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: #334155; }
.section-dark .check-item { color: #cbd5e1; }
.check { color: #22c55e; font-weight: 700; flex-shrink: 0; }

@media (max-width: 768px) {
  .split-section, .split-section.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split-text h2 { font-size: 1.8rem; }
}

/* === Channel Cards === */
.channel-cards { display: flex; flex-direction: column; gap: 10px; }
.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s;
}
.channel-card.visible { opacity: 1; transform: translateX(0); }
.channel-card:nth-child(2).visible { transition-delay: 0.1s; }
.channel-card:nth-child(3).visible { transition-delay: 0.2s; }
.channel-card:nth-child(4).visible { transition-delay: 0.3s; }
.channel-card:nth-child(5).visible { transition-delay: 0.4s; }
.channel-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.channel-logo.bcom { background: #003580; }
.channel-logo.hw { background: #f47920; }
.channel-logo.exp { background: #fbce00; color: #1a1a2e; }
.channel-logo.air { background: #ff5a5f; }
.channel-logo.cx { background: #6366f1; }
.channel-name { flex: 1; font-weight: 600; font-size: 0.95rem; }
.channel-status { font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 8px; }
.channel-status.synced { background: rgba(34,197,94,0.15); color: #22c55e; }
.sync-animation {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: #22c55e;
  font-weight: 500;
}
.sync-pulse {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

/* === Booking Mockup === */
.booking-mockup {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.bm-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
}
.bm-step.active { background: #f0f0ff; color: #6366f1; }
.bm-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: #e2e8f0;
  color: #64748b;
  flex-shrink: 0;
}
.bm-step.active .bm-step-num { background: #6366f1; color: #fff; }
.bm-preview { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.bm-room {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  align-items: center;
}
.bm-room-img {
  width: 60px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, #dbeafe, #c7d2fe);
  flex-shrink: 0;
}
.bm-room-img.private { background: linear-gradient(135deg, #fce7f3, #f5d0fe); }
.bm-room-name { font-weight: 600; font-size: 0.9rem; }
.bm-room-price { font-size: 1.1rem; font-weight: 800; color: #6366f1; }
.bm-room-price span { font-size: 0.75rem; font-weight: 400; color: #94a3b8; }
.bm-room-meta { font-size: 0.75rem; color: #94a3b8; }

/* === Speed Section === */
.speed-section { padding: 100px 0; background: linear-gradient(180deg, #f8fafc, #fff); }
.speed-content { max-width: 700px; margin: 0 auto; text-align: center; }
.speed-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; line-height: 1.15; }
.speed-content > p { font-size: 1.05rem; color: #64748b; margin-bottom: 40px; }
.speed-bars { text-align: left; }
.speed-bar-item { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.speed-bar-label { width: 120px; font-size: 0.85rem; font-weight: 600; flex-shrink: 0; }
.speed-bar-track { flex: 1; height: 12px; background: #f1f5f9; border-radius: 6px; overflow: hidden; }
.speed-bar-fill { height: 100%; border-radius: 6px; transition: width 1s ease; }
.speed-bar-fill.fast { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.speed-bar-fill.slow { background: #fbbf24; }
.speed-bar-fill.slower { background: #f87171; }
.speed-bar-time { font-size: 0.85rem; font-weight: 700; width: 50px; text-align: right; }

@media (max-width: 768px) {
  .speed-content h2 { font-size: 1.8rem; }
  .speed-bar-label { width: 90px; font-size: 0.75rem; }
}

/* === XP Section === */
.xp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.xp-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
}
.xp-card.visible { opacity: 1; transform: translateY(0); }
.xp-icon { font-size: 2rem; margin-bottom: 12px; }
.xp-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.xp-card p { font-size: 0.85rem; color: #64748b; }

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

/* === Permissions Visual === */
.permissions-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
}
.perm-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.perm-name { flex: 1; font-size: 0.85rem; color: #cbd5e1; }
.perm-check { width: 36px; text-align: center; font-size: 0.8rem; font-weight: 700; }
.perm-check.on { color: #22c55e; }
.perm-check.off { color: #475569; }
.perm-labels { display: flex; justify-content: flex-end; padding-top: 10px; }
.perm-labels span { width: 36px; text-align: center; font-size: 0.65rem; color: #64748b; font-weight: 600; }
.role-examples { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.role-pill { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: #cbd5e1; }
.role-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.role-dot.owner { background: #6366f1; }
.role-dot.manager { background: #22c55e; }
.role-dot.reception { background: #3b82f6; }
.role-dot.housekeeping { background: #f97316; }
.role-dot.volunteer { background: #94a3b8; }

/* === Pricing === */
.pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s;
  position: relative;
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card.popular {
  border-color: #6366f1;
  box-shadow: 0 8px 30px rgba(99,102,241,0.15);
  transform: scale(1.04) translateY(20px);
}
.pricing-card.popular.visible { transform: scale(1.04) translateY(0); }
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 10px;
}
.pricing-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 900; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: #94a3b8; }
.pricing-period { font-size: 0.85rem; color: #94a3b8; margin-bottom: 24px; }
.pricing-features { margin-bottom: 24px; }
.pricing-features li { padding: 8px 0; font-size: 0.9rem; color: #475569; border-bottom: 1px solid #f8fafc; position: relative; padding-left: 20px; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: #6366f1; font-weight: 700; }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular.visible { transform: none; }
}

/* === CTA === */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f1a, #1a1a3e);
  color: #fff;
  text-align: center;
}
.cta h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; }
.cta p { color: #94a3b8; font-size: 1.1rem; margin-bottom: 32px; }
.cta-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.cta-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}
.cta-input::placeholder { color: #64748b; }
.cta-input:focus { border-color: #6366f1; }
.cta-note { font-size: 0.8rem; color: #64748b; margin-top: 12px; }

@media (max-width: 768px) {
  .cta h2 { font-size: 1.8rem; }
  .cta-form { flex-direction: column; }
}

/* === Footer === */
.footer { padding: 60px 0 30px; border-top: 1px solid #f1f5f9; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: #94a3b8; font-size: 0.9rem; margin-top: 12px; }
.footer-col h4 { font-weight: 700; font-size: 0.85rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; color: #475569; }
.footer-col a { display: block; font-size: 0.9rem; color: #64748b; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: #6366f1; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid #f1f5f9; }
.footer-bottom p { font-size: 0.8rem; color: #94a3b8; }

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