/* --- CSS Reset & Variables --- */
:root {
  --bg-primary: #070a13;
  --bg-secondary: #0d1222;
  --bg-card: rgba(15, 23, 42, 0.55);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --primary-color: #3b82f6; /* Blue */
  --primary-glow: rgba(59, 130, 246, 0.15);
  --accent-color: #4f46e5;  /* Indigo */
  --accent-glow: rgba(79, 70, 229, 0.25);
  --green-color: #10b981;   /* Emerald */
  --red-color: #ef4444;     /* Crimson */
  --gold-color: #f59e0b;    /* Gold */

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Animated Background Orbs --- */
.orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}

.orb-1 {
  top: -100px;
  left: -200px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  animation: floatOrb 25s infinite alternate;
}

.orb-2 {
  top: 400px;
  right: -200px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  animation: floatOrb 30s infinite alternate-reverse;
}

.orb-3 {
  bottom: 200px;
  left: 20%;
  background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
  animation: floatOrb 35s infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.1); }
  100% { transform: translate(-40px, -80px) scale(0.9); }
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-sm {
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 8px;
}

.btn-lg {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-primary);
}

/* --- Header Section --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(7, 10, 19, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo {
  height: 38px;
  width: 38px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
}

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

.nav-cta {
  display: flex;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 28px;
  cursor: pointer;
}

/* --- Mobile Navigation Menu --- */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(7, 10, 19, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  transform: translateY(-150%);
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-link:hover {
  color: var(--text-primary);
}

/* --- Hero Section --- */
.hero-section {
  padding: 160px 0 100px 0;
  position: relative;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 52px;
  line-height: 1.15;
  color: var(--text-primary);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 16px 24px;
  border-radius: 16px;
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
}

/* --- Hero Mockup Graphics --- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
              0 0 100px rgba(79, 70, 229, 0.1);
  overflow: hidden;
  animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.mockup-header {
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
}

.mockup-header .dots {
  display: flex;
  gap: 6px;
}

.mockup-header .dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-address {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 16px;
  border-radius: 6px;
  flex-grow: 1;
  text-align: center;
}

.mockup-body {
  padding: 24px;
}

.mock-calendar {
  background: #0b0f19;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 16px;
}

.mock-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mock-cal-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.mock-cal-rooms {
  display: flex;
  gap: 6px;
}

.mock-room-tab {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.mock-room-tab.active {
  background: var(--accent-color);
  color: var(--text-primary);
}

.mock-cal-grid {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
}

.mock-time-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  padding-top: 4px;
}

.mock-events-col {
  position: relative;
  height: 170px;
  border-left: 1px dashed rgba(255, 255, 255, 0.1);
  padding-left: 12px;
}

.mock-event {
  position: absolute;
  left: 12px;
  right: 0;
  padding: 8px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mock-event-title {
  font-size: 10px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-event-time {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.doctor-blue {
  background: rgba(59, 130, 246, 0.15);
  border-left: 3px solid var(--primary-color);
}

.doctor-purple {
  background: rgba(139, 92, 246, 0.15);
  border-left: 3px solid #8b5cf6;
}

.mock-event-placeholder {
  position: absolute;
  left: 12px;
  right: 0;
  background: rgba(16, 185, 129, 0.12);
  border: 1px dashed var(--green-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.mock-placeholder-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--green-color);
  display: flex;
  align-items: center;
  gap: 4px;
}

.animated-pulse {
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.5; box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
  100% { opacity: 0.9; box-shadow: 0 0 12px rgba(16, 185, 129, 0.3); }
}

/* --- Features Section --- */
.features-section {
  padding: 100px 0;
  background: rgba(13, 18, 34, 0.4);
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  font-size: 38px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
}

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

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 32px;
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
              0 0 30px rgba(59, 130, 246, 0.05);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: var(--accent-color);
  color: var(--text-primary);
  box-shadow: 0 0 15px var(--accent-color);
}

.feature-title {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Interactive Simulator Section --- */
.simulator-section {
  padding: 100px 0;
  position: relative;
}

.simulator-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.sim-instruction {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.instruction-heading {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.sim-instruction ul {
  list-style: none;
}

.sim-instruction ul li {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.sim-instruction ul li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.text-green {
  color: var(--green-color);
  font-weight: bold;
}

.sim-legend {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
}

.sim-legend h5 {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.color-dot.blue { background-color: var(--primary-color); }
.color-dot.purple { background-color: #8b5cf6; }

/* --- Calendar Widget Simulator UI --- */
.sim-calendar-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.sim-calendar-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-header-info {
  display: flex;
  flex-direction: column;
}

.sim-calendar-title {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.sim-calendar-date {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2px;
}

.sim-room-headers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 60%;
  text-align: center;
}

.sim-room-name {
  font-size: 11px;
  font-weight: bold;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.sim-calendar-grid {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-grid-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.sim-time-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.sim-cell {
  height: 52px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.sim-cell.free:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.3);
}

.sim-cell-content {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.sim-cell.free {
  color: var(--text-muted);
}

.sim-cell.free i {
  color: var(--text-muted);
  font-size: 14px;
}

.sim-cell.booked {
  color: white;
  border: none;
  font-weight: 600;
}

.sim-cell.booked.doctor-1 {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-left: 4px solid var(--primary-color);
}

.sim-cell.booked.doctor-2 {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.1) 100%);
  border-left: 4px solid #8b5cf6;
}

.sim-cell-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sim-client-tag {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Simulated Drag Resize Handle Overlay */
.sim-drag-handle {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  cursor: ns-resize;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
}

.sim-drag-handle:hover {
  transform: scale(1.15);
}

/* --- Simulated Dialog Overlay --- */
.sim-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.sim-dialog {
  width: 100%;
  max-width: 380px;
  background: #0f172a;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  animation: modalScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScale {
  0% { transform: scale(0.9) translateY(10px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.sim-dialog-header {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sim-dialog-header h3 {
  font-size: 15px;
  color: var(--text-primary);
}

.sim-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.sim-close:hover {
  color: var(--text-primary);
}

.sim-dialog-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.sim-form-group label {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.sim-form-group input {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 14px;
  color: white;
  font-size: 13px;
  outline: none;
  font-family: var(--font-body);
}

.sim-form-group input:focus {
  border-color: var(--primary-color);
}

.phone-input-row {
  display: flex;
  gap: 8px;
}

.phone-input-row input {
  flex-grow: 1;
}

.btn-call {
  background: var(--green-color);
  color: white;
  border-radius: 8px;
  padding: 0 14px;
  font-size: 16px;
}

.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.sim-alert-box {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green-color);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 11px;
  display: none;
  animation: fadeInAlert 0.3s ease;
}

@keyframes fadeInAlert {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.sim-dialog-footer {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

/* --- Pricing Section --- */
.pricing-section {
  padding: 100px 0;
  background: rgba(13, 18, 34, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.pricing-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  width: 100%;
  max-width: 500px;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.highlighted {
  border-color: var(--accent-color);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 
              0 0 50px rgba(79, 70, 229, 0.15);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 70, 229, 0.5);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.45), 
              0 0 60px rgba(79, 70, 229, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 0 15px var(--accent-color);
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-plan {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.pricing-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.pricing-price .currency {
  font-size: 28px;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 8px;
}

.pricing-price .amount {
  font-size: 64px;
  font-weight: 900;
  font-family: var(--font-heading);
}

.pricing-price .period {
  font-size: 14px;
  color: var(--text-secondary);
  align-self: flex-end;
  margin-bottom: 14px;
}

.pricing-body {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  margin-bottom: 36px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.pricing-features li i {
  color: var(--green-color);
  font-size: 18px;
}

.pricing-features li strong {
  color: var(--text-primary);
}

.pricing-footer {
  text-align: center;
}

.pricing-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 100px 0;
  position: relative;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.faq-question i {
  font-size: 20px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
  padding: 0 24px 20px 24px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Contact Section --- */
.contact-section {
  padding: 100px 0 140px 0;
  position: relative;
}

.contact-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-title {
  font-size: 44px;
  line-height: 1.15;
}

.contact-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-mail-btn {
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 40px rgba(79, 70, 229, 0.35);
  transition: var(--transition-smooth);
}

.contact-mail-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 50px rgba(79, 70, 229, 0.5);
}

.contact-note {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-note i {
  font-size: 16px;
  color: var(--accent-color);
}



.form-group input, 
.form-group textarea {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  color: white;
  font-size: 13px;
  outline: none;
  font-family: var(--font-body);
  transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--primary-color);
  background: rgba(0, 0, 0, 0.4);
}

.form-status {
  margin-top: 14px;
  font-size: 12px;
  text-align: center;
  display: none;
  animation: fadeInAlert 0.3s ease;
}

.form-status.success {
  color: var(--green-color);
}

.form-status.error {
  color: var(--red-color);
}

/* --- Footer --- */
.footer {
  background: #04060c;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 32px;
  width: 32px;
  border-radius: 6px;
  object-fit: contain;
}

.footer-desc {
  font-size: 12px;
  color: var(--text-secondary);
  max-width: 320px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links h4 {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

/* --- Animations & Effects --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.hero-content .fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.hero-content .fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.hero-content .fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.hero-content .fade-in-up:nth-child(5) { animation-delay: 0.5s; }

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

/* =========================================
   RESPONSIVE — Tablet (≤992px)
   ========================================= */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .badge {
    align-self: center;
  }

  .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-visual {
    order: -1; /* mockup above text on tablet */
  }

  .mockup-container {
    max-width: 420px;
  }

  .simulator-wrapper {
    grid-template-columns: 1fr;
  }

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

  .sim-instruction {
    margin-bottom: 0;
  }
}

/* =========================================
   RESPONSIVE — Mobile (≤768px)
   ========================================= */
@media (max-width: 768px) {

  /* --- NAV --- */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  /* --- HERO --- */
  .hero-section {
    padding: 120px 0 70px 0;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 16px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-visual {
    order: -1;
  }

  .mockup-container {
    max-width: 100%;
  }

  /* --- SECTIONS --- */
  .features-section,
  .simulator-section,
  .pricing-section,
  .faq-section,
  .contact-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* --- FEATURES --- */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  /* --- SIMULATOR --- */
  .sim-controls {
    grid-template-columns: 1fr;
  }

  .sim-room-headers {
    width: 70%;
  }

  .sim-calendar-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sim-room-headers {
    width: 100%;
  }

  .sim-grid-row {
    grid-template-columns: 48px 1fr 1fr;
    gap: 8px;
  }

  .sim-calendar-grid {
    padding: 16px;
  }

  .sim-cell {
    padding: 0 8px;
    height: 46px;
  }

  .sim-cell-content span {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sim-client-tag {
    display: none; /* hide client name on small screens */
  }

  /* --- DIALOG --- */
  .sim-dialog {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .sim-dialog-overlay {
    align-items: flex-end;
    padding: 0;
  }

  @keyframes slideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }

  /* --- PRICING --- */
  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-price .amount {
    font-size: 52px;
  }

  /* --- CONTACT --- */
  .contact-title {
    font-size: 28px;
  }

  .contact-mail-btn {
    width: 100%;
    font-size: 15px;
    padding: 16px 24px;
  }

  /* --- FOOTER --- */
  .footer {
    padding: 60px 0 0 0;
  }

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

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

  /* --- TOAST --- */
  #chronos-toast {
    bottom: 16px !important;
    right: 16px !important;
    left: 16px !important;
    text-align: center;
  }
}

/* =========================================
   RESPONSIVE — Small Mobile (≤480px)
   ========================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 23px;
  }

  .contact-title {
    font-size: 24px;
  }

  .pricing-price .amount {
    font-size: 44px;
  }

  .sim-time-label {
    font-size: 9px;
  }

  .sim-grid-row {
    grid-template-columns: 36px 1fr 1fr;
    gap: 6px;
  }

  .btn-lg {
    font-size: 14px;
    padding: 13px 22px;
  }

  .hero-ctas .btn-lg {
    font-size: 14px;
  }

  .pricing-card {
    padding: 28px 18px;
  }

  .faq-question {
    font-size: 13px;
    padding: 16px 18px;
  }
}
