/* ======================================
   OurOtel Landing Page — Design System
   ====================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --primary: #1A73E8;
  --primary-dark: #0D47A1;
  --primary-light: #64B5F6;
  --accent: #00BCD4;
  --bg-dark: #0a0e1a;
  --bg-darker: #060a14;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #f0f4f8;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --green: #10b981;
  --orange: #f59e0b;
  --red: #ef4444;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --cyan: #06b6d4;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.7s ease;

  /* Shadows */
  --shadow-glow: 0 0 60px rgba(26, 115, 232, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

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

body {
  font-family: var(--font-family);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

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

.glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

.glass:hover {
  border-color: var(--border-glass-hover);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   NAVBAR
   ====================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all var(--transition-medium);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.navbar-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.navbar-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-medium);
}

.navbar-links a:hover {
  color: var(--text-primary);
}

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

.navbar-login {
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.navbar-login:hover {
  color: var(--text-primary);
  border-color: var(--border-glass-hover);
  background: rgba(255,255,255,0.03);
}

.navbar-cta {
  background: var(--primary);
  color: white;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 15px rgba(26, 115, 232, 0.25);
}

.navbar-cta:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 115, 232, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 20px 24px;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-medium);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-glass);
}

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

.mobile-menu .navbar-cta {
  display: block;
  text-align: center;
  margin-top: 16px;
}

/* ======================================
   HERO SECTION
   ====================================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.12) 0%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.08) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(26, 115, 232, 0.1);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-light);
  margin-bottom: 28px;
}

.hero-badge-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.hero-badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: var(--primary);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 16px 32px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.4);
}

.btn-outline {
  padding: 16px 32px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass-hover);
  transform: translateY(-3px);
}

/* Hero Mockup */
.hero-mockup {
  flex: 1;
  position: relative;
  max-width: 580px;
}

.hero-mockup-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-elevated);
  transform: perspective(1000px) rotateY(-8deg) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.hero-mockup-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.mockup-topbar {
  background: rgba(30, 41, 59, 0.9);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mockup-dot.red { background: rgba(239, 68, 68, 0.5); }
.mockup-dot.yellow { background: rgba(234, 179, 8, 0.5); }
.mockup-dot.green { background: rgba(34, 197, 94, 0.5); }

.hero-mockup-wrapper img {
  width: 100%;
  display: block;
}

/* Decorative glows */
.hero-glow-1 {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

/* Floating elements */
.hero-float-card {
  position: absolute;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: float-gentle 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: 20%;
  left: -40px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green);
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: 10%;
  right: -30px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--purple);
  animation-delay: 1s;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ======================================
   STATS BAR
   ====================================== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0.8;
}

/* ======================================
   FEATURES SECTION
   ====================================== */
.features {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px;
  border-radius: 20px;
  transition: all var(--transition-medium);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: transform var(--transition-fast);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15);
}

.feature-icon.blue { background: rgba(26, 115, 232, 0.1); color: var(--primary-light); }
.feature-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.feature-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
.feature-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }
.feature-icon.pink { background: rgba(236, 72, 153, 0.1); color: var(--pink); }
.feature-icon.cyan { background: rgba(6, 182, 212, 0.1); color: var(--cyan); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ======================================
   ROLES SECTION
   ====================================== */
.roles {
  padding: var(--section-padding) 0;
  background: rgba(15, 23, 42, 0.4);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.role-card {
  background: var(--bg-darker);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-medium);
}

.role-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-glass-hover);
}

.role-card-top {
  height: 5px;
}

.role-card-top.blue { background: linear-gradient(90deg, #1A73E8, #5B21B6); }
.role-card-top.green { background: linear-gradient(90deg, #059669, #0D9488); }
.role-card-top.orange { background: linear-gradient(90deg, #EA580C, #DC2626); }

.role-card-body {
  padding: 36px;
}

.role-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.role-icon.blue { background: rgba(26, 115, 232, 0.1); color: var(--primary); }
.role-icon.green { background: rgba(16, 185, 129, 0.1); color: var(--green); }
.role-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--orange); }

.role-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.role-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.role-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.role-card li .check {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.role-card.green-card li .check { color: var(--green); }
.role-card.orange-card li .check { color: var(--orange); }

/* ======================================
   HERO CSS DASHBOARD UI
   ====================================== */
.dashboard-ui {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-glass); box-shadow: var(--shadow-elevated);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform var(--transition-slow);
  background: #0d1117;
}
.dashboard-ui:hover { transform: perspective(1000px) rotateY(0) rotateX(0); }
.ui-topbar {
  background: rgba(30,41,59,0.9); padding: 8px 14px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ui-dots { display: flex; gap: 6px; }
.ui-dots .dot { width: 10px; height: 10px; border-radius: 50%; }
.ui-dots .dot.red { background: rgba(239,68,68,0.5); }
.ui-dots .dot.yellow { background: rgba(234,179,8,0.5); }
.ui-dots .dot.green { background: rgba(34,197,94,0.5); }
.ui-topbar-title { font-size: 11px; color: var(--text-muted); margin-left: 8px; }
.ui-body { display: flex; min-height: 280px; }
.ui-sidebar {
  width: 140px; background: rgba(15,23,42,0.6); padding: 12px 0;
  border-right: 1px solid rgba(255,255,255,0.05); flex-shrink: 0;
}
.ui-sidebar-item {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px;
  font-size: 11px; color: var(--text-muted); cursor: default; transition: all 0.2s;
}
.ui-sidebar-item .material-symbols-outlined { font-size: 16px; }
.ui-sidebar-item.active { color: var(--primary); background: rgba(26,115,232,0.08); border-left: 2px solid var(--primary); }
.ui-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.ui-stat-row { display: flex; gap: 10px; }
.ui-stat-card {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px; padding: 10px;
}
.ui-stat-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ui-stat-icon .material-symbols-outlined { font-size: 16px; }
.ui-stat-icon.blue { background: rgba(26,115,232,0.15); color: var(--primary-light); }
.ui-stat-icon.green { background: rgba(16,185,129,0.15); color: var(--green); }
.ui-stat-icon.red { background: rgba(239,68,68,0.15); color: var(--red); }
.ui-stat-val { font-size: 16px; font-weight: 800; }
.ui-stat-lbl { font-size: 9px; color: var(--text-muted); }
.ui-chart-area {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px; padding: 12px; flex: 1;
}
.ui-chart-title { font-size: 10px; color: var(--text-muted); margin-bottom: 8px; }
.ui-chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.ui-bar {
  flex: 1; background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 4px 4px 0 0; height: var(--height); position: relative;
  animation: barGrow 1.5s ease-out forwards; transform-origin: bottom;
}
.ui-bar span { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); font-size: 8px; color: var(--text-muted); }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.ui-room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.ui-room {
  text-align: center; padding: 6px 4px; border-radius: 6px;
  font-size: 10px; font-weight: 700; border: 1px solid;
}
.ui-room.available { background: rgba(76,175,80,0.1); border-color: rgba(76,175,80,0.3); color: #4CAF50; }
.ui-room.occupied { background: rgba(239,83,80,0.1); border-color: rgba(239,83,80,0.3); color: #EF5350; }
.ui-room.cleaning { background: rgba(255,167,38,0.1); border-color: rgba(255,167,38,0.3); color: #FFA726; }

/* ======================================
   HOW IT WORKS / SHOWCASE (replaces screenshots)
   ====================================== */
.how-it-works { padding: var(--section-padding) 0; overflow: hidden; }
.showcase { max-width: 1000px; margin: 0 auto 80px; }
.showcase-tabs {
  display: flex; gap: 6px; margin-bottom: 32px; overflow-x: auto;
  padding-bottom: 4px; scrollbar-width: none;
}
.showcase-tabs::-webkit-scrollbar { display: none; }
.showcase-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px; font-size: 14px; font-weight: 600;
  background: transparent; color: var(--text-muted); border: 1px solid transparent;
  cursor: pointer; transition: all 0.3s; white-space: nowrap;
}
.showcase-tab .material-symbols-outlined { font-size: 20px; }
.showcase-tab:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
.showcase-tab.active {
  color: var(--primary); background: rgba(26,115,232,0.08);
  border-color: rgba(26,115,232,0.2);
}
.showcase-panels { position: relative; }
.showcase-panel {
  display: none; gap: 48px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border-glass);
  border-radius: 24px; padding: 48px; animation: fadePanel 0.4s ease;
}
.showcase-panel.active { display: flex; }
@keyframes fadePanel { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.panel-text { flex: 1; }
.panel-text h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.panel-text > p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.panel-features { display: flex; flex-direction: column; gap: 10px; }
.panel-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-secondary);
}
.panel-features li .material-symbols-outlined { font-size: 18px; color: var(--green); }
.panel-visual { flex: 1; min-width: 0; }

/* Mock Room Grid */
.mock-room-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mock-room {
  border-radius: 12px; padding: 14px 8px; text-align: center;
  border: 1px solid; transition: transform 0.3s;
}
.mock-room:hover { transform: scale(1.08); }
.mock-room span { display: block; font-size: 18px; font-weight: 800; }
.mock-room small { font-size: 10px; opacity: 0.8; }
.mock-room.available { background: rgba(76,175,80,0.1); border-color: rgba(76,175,80,0.25); color: #4CAF50; }
.mock-room.occupied { background: rgba(239,83,80,0.1); border-color: rgba(239,83,80,0.25); color: #EF5350; }
.mock-room.cleaning { background: rgba(255,167,38,0.1); border-color: rgba(255,167,38,0.25); color: #FFA726; }
.mock-room.maintenance { background: rgba(126,87,194,0.1); border-color: rgba(126,87,194,0.25); color: #7E57C2; }
.mock-room.reserved { background: rgba(66,165,245,0.1); border-color: rgba(66,165,245,0.25); color: #42A5F5; }

/* Mock Wizard */
.mock-wizard { background: rgba(255,255,255,0.02); border: 1px solid var(--border-glass); border-radius: 16px; padding: 24px; }
.wizard-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 24px; }
.wizard-step {
  width: 36px; height: 36px; border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-size: 13px; font-weight: 700;
  background: rgba(255,255,255,0.05); color: var(--text-muted); position: relative;
  border: 2px solid rgba(255,255,255,0.1);
}
.wizard-step small { position: absolute; bottom: -18px; font-size: 9px; white-space: nowrap; font-weight: 500; }
.wizard-step.completed { background: var(--primary); color: white; border-color: var(--primary); }
.wizard-step.active { background: rgba(26,115,232,0.2); color: var(--primary); border-color: var(--primary); }
.wizard-line { width: 40px; height: 2px; background: rgba(255,255,255,0.1); }
.wizard-line.completed { background: var(--primary); }
.wizard-line.active { background: linear-gradient(90deg, var(--primary), rgba(255,255,255,0.1)); }
.wizard-form { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.wizard-form-field label { font-size: 10px; color: var(--text-muted); margin-bottom: 2px; display: block; }
.mock-input {
  padding: 10px 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-glass);
  border-radius: 10px; font-size: 13px; color: var(--text-primary);
}
.mock-input.auto { display: flex; align-items: center; justify-content: space-between; }
.mock-input.auto .material-symbols-outlined { font-size: 16px; color: var(--accent); }
.wizard-actions { display: flex; justify-content: space-between; margin-top: 16px; }
.wizard-btn-back { padding: 8px 16px; font-size: 12px; background: none; color: var(--text-muted); border: 1px solid var(--border-glass); border-radius: 8px; }
.wizard-btn-next { padding: 8px 20px; font-size: 12px; background: var(--primary); color: white; border-radius: 8px; font-weight: 600; }

/* Mock Task List */
.mock-task-list { display: flex; flex-direction: column; gap: 10px; }
.mock-task {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border-glass);
  border-radius: 12px; padding: 14px;
}
.mock-task-priority { width: 4px; height: 40px; border-radius: 4px; flex-shrink: 0; }
.mock-task-priority.low { background: var(--green); }
.mock-task-priority.high { background: var(--orange); }
.mock-task-priority.urgent { background: var(--red); }
.mock-task-content { flex: 1; }
.mock-task-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.mock-task-meta { font-size: 11px; color: var(--text-muted); display: flex; gap: 8px; align-items: center; }
.mock-task-meta .material-symbols-outlined { font-size: 14px; }
.mock-task-badge {
  padding: 4px 10px; border-radius: 20px; font-size: 10px; font-weight: 700;
  white-space: nowrap;
}
.mock-task-badge.pending { background: rgba(245,158,11,0.1); color: var(--orange); }
.mock-task-badge.in-progress { background: rgba(26,115,232,0.1); color: var(--primary); }
.mock-task-badge.completed { background: rgba(16,185,129,0.1); color: var(--green); }

/* Mock Report */
.mock-report { background: rgba(255,255,255,0.02); border: 1px solid var(--border-glass); border-radius: 16px; padding: 20px; }
.mock-report-header { display: flex; gap: 12px; margin-bottom: 16px; }
.mock-report-stat { flex: 1; text-align: center; padding: 12px 8px; background: rgba(255,255,255,0.03); border-radius: 10px; }
.mock-report-val { font-size: 20px; font-weight: 800; }
.mock-report-lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.mock-report-change { font-size: 10px; margin-top: 4px; color: var(--text-muted); }
.mock-report-change.up { color: var(--green); }
.mock-chart { height: 80px; }
.mock-line-chart { width: 100%; height: 100%; }

/* Steps Flow */
.steps-flow { display: flex; align-items: flex-start; justify-content: center; gap: 0; flex-wrap: wrap; }
.step-item { text-align: center; max-width: 200px; padding: 0 12px; }
.step-number { font-size: 11px; font-weight: 800; color: var(--primary); letter-spacing: 2px; margin-bottom: 12px; }
.step-icon {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 16px;
  background: rgba(26,115,232,0.08); border: 1px solid rgba(26,115,232,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: all 0.3s;
}
.step-item:hover .step-icon { transform: translateY(-4px); background: rgba(26,115,232,0.15); }
.step-icon .material-symbols-outlined { font-size: 28px; }
.step-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.step-connector { width: 48px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); margin-top: 42px; flex-shrink: 0; }

/* ======================================
   PRICING SECTION
   ====================================== */
.pricing {
  padding: var(--section-padding) 0;
  background: rgba(15, 23, 42, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
}

.pricing-card {
  padding: 44px;
  border-radius: 24px;
  transition: all var(--transition-medium);
}

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

.pricing-card.featured {
  background: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(26, 115, 232, 0.3);
  position: relative;
  z-index: 2;
}

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

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.pricing-card.featured .pricing-price {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
}

.pricing-features li .check {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li .check {
  color: white;
}

.pricing-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: all var(--transition-fast);
  text-align: center;
  display: block;
}

.pricing-btn.outline {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
}

.pricing-btn.outline:hover {
  background: rgba(255, 255, 255, 0.05);
}

.pricing-btn.white {
  background: white;
  color: var(--primary);
  border: none;
}

.pricing-btn.white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

/* ======================================
   CTA BANNER
   ====================================== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--bg-dark);
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(26, 115, 232, 0.15);
  top: -150px;
  right: -100px;
  animation: cta-float 8s ease-in-out infinite;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 188, 212, 0.1);
  bottom: -150px;
  left: -100px;
  animation: cta-float 10s ease-in-out infinite reverse;
}

.cta-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cta-float 12s ease-in-out infinite;
}

@keyframes cta-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.08); }
}

/* ---- CTA Card ---- */
.cta-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 28px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.6), rgba(0, 188, 212, 0.4), rgba(139, 92, 246, 0.5));
  background-size: 300% 300%;
  animation: cta-border-glow 6s ease infinite;
}

@keyframes cta-border-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(26, 115, 232, 0.3), rgba(0, 188, 212, 0.2), rgba(139, 92, 246, 0.25));
  background-size: 300% 300%;
  animation: cta-border-glow 6s ease infinite;
  filter: blur(20px);
  z-index: -1;
}

.cta-card-content {
  background: linear-gradient(145deg, #0c1426 0%, #0a1020 50%, #0e1530 100%);
  border-radius: 26px;
  padding: 64px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grid inside card */
.cta-card-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

/* ---- Badge ---- */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(26, 115, 232, 0.08);
  border: 1px solid rgba(26, 115, 232, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
  position: relative;
}

.cta-badge-pulse {
  position: relative;
  width: 8px;
  height: 8px;
}

.cta-badge-pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  animation: cta-pulse 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.cta-badge-pulse::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: var(--green);
}

@keyframes cta-pulse {
  75%, 100% { transform: scale(2.5); opacity: 0; }
}

.cta-badge .material-symbols-outlined {
  font-size: 18px;
}

/* ---- Heading ---- */
.cta-banner h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta-highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: cta-gradient-shift 4s ease infinite;
}

@keyframes cta-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- Description ---- */
.cta-banner p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ---- Buttons ---- */
.cta-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary), #1565c0);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-25deg);
  animation: cta-shimmer 3s ease-in-out infinite;
}

@keyframes cta-shimmer {
  0% { left: -60%; }
  100% { left: 160%; }
}

.cta-btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 44px rgba(26, 115, 232, 0.5);
}

.cta-btn-primary .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.3s;
}

.cta-btn-primary:hover .material-symbols-outlined {
  transform: translateX(4px);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.cta-btn-secondary .material-symbols-outlined {
  font-size: 20px;
}

/* ---- Trust Row ---- */
.cta-trust {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.cta-trust-item .material-symbols-outlined {
  font-size: 16px;
  color: var(--green);
}

.cta-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
}

/* ---- CTA Responsive ---- */
@media (max-width: 768px) {
  .cta-banner {
    padding: 80px 0;
  }

  .cta-card-content {
    padding: 48px 28px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 60px 0;
  }

  .cta-card-content {
    padding: 40px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .cta-divider {
    display: none;
  }

  .cta-trust {
    flex-direction: column;
    gap: 12px;
  }
}


/* ======================================
   CONTACT SECTION
   ====================================== */
.contact {
  padding: var(--section-padding) 0;
}

.contact-wrapper {
  border-radius: 32px;
  overflow: hidden;
  display: flex;
}

.contact-form-side {
  flex: 1;
  padding: 60px;
}

.contact-form-side h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-form-side > p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 460px;
  font-size: 15px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form select option {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.contact-submit {
  padding: 16px 40px;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
  cursor: pointer;
}

.contact-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.4);
}

.contact-info-side {
  width: 360px;
  background: rgba(15, 23, 42, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px;
  display: flex;
  flex-direction: column;
}

.contact-info-side h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex: 1;
}

.contact-info-item {
  display: flex;
  gap: 14px;
}

.contact-info-item .icon {
  color: var(--primary);
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .label {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-info-item .value {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--green);
}

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 15px;
}

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer-column h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-credit {
  text-align: center;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-credit p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-credit a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-credit a:hover {
  color: var(--primary-light);
}

.footer-badges {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ======================================
   RESPONSIVE
   ====================================== */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-mockup {
    max-width: 500px;
  }

  .dashboard-ui {
    transform: none;
  }

  .hero-float-card {
    display: none;
  }

  .showcase-panel {
    flex-direction: column;
  }

  .step-connector {
    display: none;
  }

  .steps-flow {
    gap: 24px;
    justify-content: space-around;
  }

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

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

  .roles-grid > :last-child {
    grid-column: span 2;
    max-width: none;
    justify-self: stretch;
  }

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

  .pricing-card.featured {
    grid-column: span 2;
    justify-self: stretch;
    order: -1;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info-side {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .navbar-links {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .navbar-login {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

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

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

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

  .role-card {
    width: 100%;
  }

  .roles-grid > :last-child {
    grid-column: auto;
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .ui-sidebar {
    display: none;
  }

  .showcase-panel {
    padding: 28px;
    gap: 28px;
  }

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

  .steps-flow {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 24px;
    margin-top: 0;
  }

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

  .pricing-card.featured {
    grid-column: auto;
    max-width: none;
    order: -1;
    transform: scale(1);
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-side {
    padding: 36px 24px;
  }

  .contact-info-side {
    padding: 36px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons button {
    width: 100%;
    justify-content: center;
  }

  .stat-number {
    font-size: 28px;
  }

  .pricing-card {
    padding: 32px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}
