:root {
  --bg: #f6fbff;
  --bg-secondary: #eef6ff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-border: rgba(255, 255, 255, 0.85);
  --text: #0d1b42;
  --muted: #5b6787;
  --primary: #0b83ee;
  --primary-dark: #0866c2;
  --accent: #ab1f97;
  --accent-soft: #c85fdd;
  --cyan: #18aaf7;
  --success: #1cb790;
  --shadow: 0 24px 70px rgba(17, 81, 163, 0.14);
  --shadow-soft: 0 16px 38px rgba(10, 80, 148, 0.1);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1320px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 170, 247, 0.1), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(171, 31, 151, 0.1), transparent 22%),
    linear-gradient(180deg, #fbfdff 0%, #f2f8ff 52%, #edf5ff 100%);
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

input::placeholder,
textarea::placeholder,
select.placeholder {
  color: #aab7cf !important;
  opacity: 1;
}

.container {
  max-width: var(--container);
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.blur-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.55;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 320px;
  height: 320px;
  left: -80px;
  top: 140px;
  background: rgba(24, 170, 247, 0.28);
}

.orb-2 {
  width: 260px;
  height: 260px;
  right: 4%;
  top: 90px;
  background: rgba(171, 31, 151, 0.22);
  animation-delay: 1.5s;
}

.orb-3 {
  width: 240px;
  height: 240px;
  left: 55%;
  bottom: 8%;
  background: rgba(81, 117, 235, 0.2);
  animation-delay: 3s;
}

.section-space {
  padding: 88px 0;
}

.glass-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
}

.top-header {
  padding: 12px 0;
  border-bottom: 1px solid rgba(12, 92, 194, 0.08);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.top-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.top-header__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--muted);
}

.top-header__item i {
  color: var(--primary);
}

.top-header__highlight {
  color: var(--text);
  font-weight: 600;
}

.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(246, 251, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.custom-navbar.is-scrolled {
  background: rgba(246, 251, 255, 0.92);
  border-color: rgba(14, 101, 203, 0.08);
  box-shadow: 0 12px 30px rgba(12, 92, 194, 0.08);
}

.minimal-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 22px 0 26px;
  background: rgba(246, 251, 255, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14, 101, 203, 0.08);
}

.minimal-header__content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.minimal-header__side {
  display: flex;
  align-items: center;
}

.minimal-header__side--end {
  justify-content: flex-end;
}

.minimal-header__brand {
  display: inline-flex;
  justify-self: center;
  padding: 8px 0 10px;
}

.minimal-header__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-inline: 1.1rem 1.25rem;
}

.minimal-header__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  padding: 14px;
  border-radius: 22px;
}

.minimal-header__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: all 0.25s ease;
}

.minimal-header__tab:hover,
.minimal-header__tab:focus-visible {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.8);
}

.minimal-header__tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--primary), var(--accent));
  box-shadow: 0 12px 28px rgba(24, 122, 232, 0.22);
}

.brand-logo {
  width: 220px;
  height: auto;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 600;
  color: var(--text);
  padding: 10px 14px !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 700;
  border: none;
}

.btn-gradient {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--primary), var(--accent));
  box-shadow: 0 14px 35px rgba(24, 122, 232, 0.3);
}

.btn-gradient:hover,
.btn-gradient:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(24, 122, 232, 0.34);
}

.btn-glass {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 131, 238, 0.16);
  box-shadow: var(--shadow-soft);
}

.btn-glass:hover,
.btn-glass:focus-visible {
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-section {
  padding-top: 64px;
}

.eyebrow-chip,
.section-kicker,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(13, 131, 238, 0.12);
  padding: 10px 16px;
  box-shadow: var(--shadow-soft);
}

.eyebrow-chip,
.section-kicker {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-title {
  margin: 20px 0 18px;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-text,
.section-heading p,
.feature-card p,
.workflow-card p,
.team-card p,
.footer-text,
.form-note {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 30px 0 34px;
  flex-wrap: wrap;
}

.hero-stats .glass-card {
  height: 100%;
}

.stat-card {
  padding: 24px;
  text-align: left;
}

.stat-card strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  padding: 30px;
  overflow: visible;
  min-height: 560px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 170, 247, 0.14), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(171, 31, 151, 0.14), transparent 24%);
  pointer-events: none;
}

.hero-visual__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.status-badge {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.mini-dots {
  display: inline-flex;
  gap: 8px;
}

.mini-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--accent));
  opacity: 0.7;
}

.hero-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.metric-tile,
.hero-list-card,
.client-pill,
.contact-chip {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.metric-tile {
  padding: 24px;
}

.metric-tile small {
  display: block;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.metric-tile strong {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 10px;
}

.metric-tile span {
  color: var(--muted);
}

.gradient-tile {
  background: linear-gradient(135deg, rgba(10, 111, 226, 0.94), rgba(171, 31, 151, 0.84));
  color: #fff;
  box-shadow: 0 18px 50px rgba(59, 70, 209, 0.3);
}

.gradient-tile small,
.gradient-tile span {
  color: rgba(255, 255, 255, 0.86);
}

.hero-list-card {
  padding: 24px 26px;
}

.hero-list-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-list-card ul,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-list-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  color: var(--muted);
  font-weight: 600;
}

.hero-list-card li i {
  color: var(--success);
}

.floating-pill {
  position: absolute;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 14px 18px;
  box-shadow: 0 16px 38px rgba(20, 90, 168, 0.16);
  font-weight: 700;
  color: var(--text);
  animation: levitate 4.8s ease-in-out infinite;
}

.floating-pill i {
  color: var(--primary);
}

.floating-pill--one {
  top: 18%;
  right: -42px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-heading.text-lg-start {
  margin-left: 0;
  margin-right: 0;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 18px 0 16px;
  font-weight: 800;
}

.feature-card,
.workflow-card,
.team-card {
  height: 100%;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.workflow-card:hover,
.team-card:hover,
.client-pill:hover,
.contact-chip:hover {
  transform: translateY(-6px);
}

.icon-badge,
.team-avatar {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(24, 170, 247, 0.16), rgba(171, 31, 151, 0.18));
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.feature-card h3,
.workflow-card h3,
.team-card h3,
.footer-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 800;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.logo-carousel-section {
  padding-top: 0;
}

.logo-marquee {
  padding: 22px 0;
  overflow: hidden;
}

.logo-marquee__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marqueeSlide 28s linear infinite;
}

.logo-mark {
  min-width: 180px;
  padding: 22px 24px;
  border-radius: 22px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(13, 27, 66, 0.5);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 247, 250, 0.86));
  border: 1px solid rgba(15, 23, 42, 0.08);
  filter: grayscale(1);
}

.client-pill,
.contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 700;
}

.client-pill i,
.contact-chip i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(24, 170, 247, 0.18), rgba(171, 31, 151, 0.18));
  color: var(--primary);
}

.workflow-grid {
  position: relative;
}

.workflow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.subscribe-box {
  padding: 40px;
  overflow: hidden;
}

.subscribe-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(171, 31, 151, 0.18), transparent 60%);
  pointer-events: none;
}

.subscribe-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-control,
.form-select,
textarea.form-control {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(14, 101, 203, 0.12);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus,
textarea.form-control:focus {
  border-color: rgba(14, 101, 203, 0.34);
  box-shadow: 0 0 0 0.25rem rgba(24, 170, 247, 0.08) !important;
}

.subscribe-form .form-control {
  min-width: 240px;
  flex: 1 1 240px;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-card {
  padding: 32px;
  height: 100%;
}

.form-label {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.site-footer {
  padding: 0 0 34px;
}

.footer-card {
  padding: 34px;
}

.footer-logo {
  width: 210px;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 18px;
}

.social-links a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(14, 101, 203, 0.12);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-4px);
  color: var(--accent);
}

.footer-copy {
  margin: 18px 0 0;
  text-align: center;
  height: 46px;
  font-size: 13px;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-contact-link {
  color: var(--primary);
  font-weight: 700;
}

.footer-address {
  margin-bottom: 0;
}

.footer-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(14, 101, 203, 0.12);
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.schedule-modal .modal-dialog {
  max-width: 1260px;
}

.schedule-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(171, 31, 151, 0.12), transparent 22%),
    radial-gradient(circle at left top, rgba(24, 170, 247, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.88));
  box-shadow: 0 34px 90px rgba(13, 74, 150, 0.24);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

.schedule-modal__header {
  padding: 28px 28px 14px;
  align-items: flex-start;
  gap: 24px;
}

.schedule-modal__title {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.schedule-modal__text {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.schedule-modal__close {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  opacity: 1;
}

.schedule-modal__body {
  padding: 8px 28px 28px;
}

.schedule-calendar-card,
.schedule-sidebar-card,
.schedule-summary-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.schedule-calendar-card {
  padding: 20px;
}

.schedule-sidebar-card {
  padding: 20px;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.schedule-calendar-card__top,
.schedule-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.schedule-calendar-card__top h3,
.schedule-sidebar-card__intro h3,
.schedule-summary-card h4 {
  margin: 10px 0 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.schedule-calendar-title {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
}

.schedule-calendar-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.schedule-mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.schedule-legend__item i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
}

.dot-available {
  background: linear-gradient(135deg, #2ddcb2, #10b981);
}

.dot-mixed {
  background: linear-gradient(135deg, #18aaf7, #ab1f97);
}

.dot-occupied {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.schedule-weekdays,
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.schedule-weekdays {
  margin: 18px 0 10px;
}

.schedule-weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.schedule-day {
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 11px;
  text-align: left;
  border: 1px solid rgba(14, 101, 203, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.schedule-day:disabled {
  opacity: 0.55;
  cursor: default;
}

.schedule-day:not(:disabled):hover,
.schedule-day.is-selected {
  transform: translateY(-4px);
  border-color: rgba(14, 101, 203, 0.18);
  box-shadow: 0 18px 34px rgba(18, 93, 170, 0.12);
}

.schedule-day--empty {
  min-height: 92px;
  border-radius: 24px;
  background: transparent;
}

.schedule-day--available {
  background: linear-gradient(180deg, rgba(248, 255, 252, 0.98), rgba(238, 255, 249, 0.92));
}

.schedule-day--mixed {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(252, 242, 255, 0.94));
}

.schedule-day--occupied {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.92));
}

.schedule-day__number {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text);
}

.schedule-day__meta {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
  font-weight: 700;
}

.schedule-sidebar-card__intro p,
.schedule-summary-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.schedule-slot-list {
  display: grid;
  gap: 10px;
}

.schedule-slot-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(14, 101, 203, 0.08);
  background: rgba(255, 255, 255, 0.88);
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.schedule-slot-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.schedule-slot-card span,
.schedule-slot-card small {
  color: var(--muted);
  font-weight: 600;
}

.schedule-slot-card.is-available {
  background: linear-gradient(180deg, rgba(246, 255, 251, 0.98), rgba(235, 255, 246, 0.94));
}

.schedule-slot-card.is-occupied {
  opacity: 0.75;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.92));
}

.schedule-slot-card.is-available:hover,
.schedule-slot-card.is-selected {
  transform: translateY(-3px);
  border-color: rgba(14, 101, 203, 0.18);
  box-shadow: 0 16px 28px rgba(18, 93, 170, 0.1);
}

.schedule-empty-state {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}

.schedule-summary-card {
  padding: 18px;
}

.owner-schedule-modal .modal-dialog {
  max-width: 1180px;
}

.owner-schedule-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(244, 250, 255, 0.95));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 34px 80px rgba(16, 72, 140, 0.18);
}

.owner-schedule-modal .modal-header,
.owner-schedule-modal .modal-body {
  padding-inline: 26px;
}

.owner-schedule-modal__layout {
  align-items: stretch;
}

.owner-schedule-booking-note {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(14, 101, 203, 0.06);
  border: 1px solid rgba(14, 101, 203, 0.08);
}

.schedule-booking-modal .modal-dialog {
  max-width: 640px;
}

.owner-schedule-booking-modal .modal-dialog {
  max-width: 1020px;
}

.schedule-booking-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 255, 0.94));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 34px 80px rgba(16, 72, 140, 0.18);
}

.schedule-booking-modal .modal-header,
.schedule-booking-modal .modal-body {
  padding-inline: 26px;
}

.schedule-booking-feedback {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
}

.schedule-booking-feedback.is-success {
  background: rgba(18, 184, 134, 0.1);
  color: #0f8c68;
  border: 1px solid rgba(18, 184, 134, 0.18);
}

.schedule-booking-feedback.is-error {
  background: rgba(239, 68, 68, 0.08);
  color: #c24141;
  border: 1px solid rgba(239, 68, 68, 0.16);
}

.agenda-page .site-footer {
  padding-top: 24px;
}

.auth-page .site-footer,
.dashboard-page .site-footer {
  padding-top: 24px;
}

.auth-section,
.dashboard-section,
.agenda-section {
  padding: 72px 0 24px;
}

.auth-info-card,
.auth-form-card,
.dashboard-hero,
.dashboard-panel,
.dashboard-stat-card,
.agenda-hero {
  padding: 32px;
}

.auth-title,
.dashboard-title,
.agenda-title {
  margin: 18px 0 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.agenda-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.agenda-hero__content {
  max-width: 760px;
}

.agenda-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 420px;
}

.agenda-highlight {
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(14, 101, 203, 0.1);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.agenda-highlight strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.agenda-highlight span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.agenda-section .schedule-calendar-card {
  padding: 18px;
}

.agenda-section .schedule-sidebar-card {
  padding: 18px;
}

.agenda-section .schedule-weekdays,
.agenda-section .schedule-grid {
  gap: 8px;
}

.agenda-section .schedule-weekdays {
  margin: 14px 0 8px;
}

.agenda-section .schedule-day {
  min-height: 80px;
  padding: 9px;
}

.agenda-section .schedule-day--empty {
  min-height: 80px;
}

.agenda-section .schedule-day__number {
  font-size: 1.02rem;
}

.agenda-section .schedule-day__meta {
  font-size: 0.72rem;
}

.agenda-section .schedule-slot-list {
  gap: 8px;
}

.agenda-section .schedule-slot-card {
  padding: 12px 14px;
}

.auth-bullets {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.auth-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(14, 101, 203, 0.08);
  font-weight: 700;
  color: var(--text);
}

.auth-bullet i {
  color: var(--primary);
}

.demo-credentials {
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(24, 170, 247, 0.1), rgba(171, 31, 151, 0.1));
  border: 1px solid rgba(14, 101, 203, 0.08);
}

.demo-credentials h2,
.panel-header h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  font-weight: 800;
}

.demo-credentials p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.auth-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.auth-alert {
  border-radius: 18px;
  border: none;
  box-shadow: var(--shadow-soft);
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.dashboard-stat-grid {
  margin-bottom: 12px;
}

.dashboard-stat-card span,
.panel-header span,
.project-meta span {
  color: var(--muted);
  font-weight: 600;
}

.panel-header-copy span {
  display: block;
  margin-top: 2px;
}

.owner-meeting-panel__title {
  font-size: clamp(2rem, 3vw, 2.85rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.owner-meeting-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.owner-meeting-filter {
  border: 1px solid rgba(14, 101, 203, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.owner-meeting-filter:hover,
.owner-meeting-filter:focus-visible,
.owner-meeting-filter.is-active {
  transform: translateY(-2px);
  border-color: rgba(14, 101, 203, 0.18);
  box-shadow: 0 14px 26px rgba(18, 93, 170, 0.1);
}

.owner-meeting-filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--primary), var(--accent));
}

.owner-meeting-filter-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.owner-meeting-filter-date .form-label {
  white-space: nowrap;
  margin-bottom: 0;
}

.owner-meeting-filter-date .form-control {
  min-width: 170px;
}

.dashboard-stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 800;
}

.dashboard-panel {
  height: 100%;
}

.dashboard-section-block {
  margin-top: 24px;
  scroll-margin-top: 150px;
}

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

.panel-list,
.project-stack {
  display: grid;
  gap: 16px;
}

.panel-list-item,
.project-card {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.panel-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.owner-meeting-item.is-past {
  background: rgba(241, 245, 249, 0.78);
  border-color: rgba(148, 163, 184, 0.22);
}

.owner-meeting-item.is-past h3,
.owner-meeting-item.is-past p {
  color: #7c8ba1;
}

.owner-meeting-item__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.owner-meeting-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.owner-meeting-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 18px rgba(22, 50, 79, 0.12);
  margin-left: -8px;
  background: #fff;
}

.owner-meeting-avatar:first-child {
  margin-left: 0;
}

.owner-booking-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(14, 101, 203, 0.06);
  border: 1px solid rgba(14, 101, 203, 0.08);
}

.owner-booking-switch__copy {
  display: grid;
  gap: 4px;
}

.owner-booking-switch__copy strong {
  font-size: 1rem;
}

.owner-booking-switch__copy span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.owner-booking-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  margin: 0;
}

.owner-booking-column {
  display: grid;
  gap: 16px;
  height: 100%;
}

.owner-booking-textarea {
  min-height: 124px;
  resize: vertical;
}

.owner-team-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.owner-team-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(14, 101, 203, 0.08);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.owner-team-card:hover,
.owner-team-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(14, 101, 203, 0.18);
  box-shadow: 0 14px 26px rgba(18, 93, 170, 0.08);
}

.owner-team-card input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.owner-team-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.owner-team-card__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.owner-team-card__content strong {
  font-size: 0.98rem;
}

.owner-team-card__content small {
  color: var(--muted);
  font-weight: 600;
}

.owner-meeting-reason {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

body.owner-booking-modal-open #ownerScheduleModal .modal-content {
  filter: blur(10px);
  transform: scale(0.985);
  opacity: 0.42;
  pointer-events: none;
  transition: filter 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

body.owner-booking-modal-open .modal-backdrop.show {
  opacity: 0.78;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 991.98px) {
  .owner-schedule-booking-modal .modal-dialog {
    max-width: 92vw;
  }

  .owner-team-selector {
    grid-template-columns: 1fr;
  }
}

.panel-list-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.panel-list-link:hover,
.panel-list-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(14, 101, 203, 0.18);
  box-shadow: 0 16px 28px rgba(18, 93, 170, 0.1);
}

.dashboard-highlight-card {
  height: 100%;
  align-items: flex-start;
}

.panel-list-item h3,
.project-card h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 800;
}

.panel-list-item p,
.project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  font-size: 0.85rem;
}

.status-badge-small,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #f0f0f0;
  color: #333;
  font-weight: 700;
  white-space: nowrap;
}

.status-pill.status-aprobada {
  background: rgba(28, 183, 144, 0.16) !important;
  color: var(--success) !important;
}

.status-pill.status-revision {
  background: rgba(255, 193, 7, 0.16) !important;
  color: #d39e00 !important;
}

.status-pill.status-enviada {
  background: rgba(24, 170, 247, 0.16) !important;
  color: var(--cyan) !important;
}

.status-badge-small.is-past {
  background: rgba(148, 163, 184, 0.16);
  color: #64748b;
}

.owner-meeting-action {
  padding: 0.72rem 1rem;
  white-space: nowrap;
}

.contact-chip {
  text-decoration: none;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.dashboard-table th,
.dashboard-table td {
  padding: 0.6rem;
  border-bottom: 1px solid rgba(14, 101, 203, 0.08);
  text-align: left;
  vertical-align: middle;
}

.dashboard-table th {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 700;
}

.dashboard-table .btn-sm {
  padding: 0.3rem 0.5rem;
  font-size: 0.8rem;
}

.dashboard-table .status-pill,
.dashboard-table .status-badge-small {
  font-size: 0.8rem;
  padding: 5px 10px;
}

.project-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.progress-track {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  background: rgba(14, 101, 203, 0.1);
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--primary), var(--accent));
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
}

.project-meta strong {
  font-size: 1rem;
}

.dashboard-mini-stat {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.dashboard-mini-stat strong {
  display: block;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.1;
  font-weight: 800;
}

.dashboard-mini-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.dashboard-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.toast-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: grid;
  gap: 12px;
}

.toast-item {
  min-width: 280px;
  max-width: 360px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(13, 27, 66, 0.92);
  color: #fff;
  box-shadow: 0 18px 44px rgba(13, 27, 66, 0.2);
  animation: toastIn 0.35s ease forwards;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(22px, -18px, 0) scale(1.07);
  }
}

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

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

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199.98px) {
  .hero-visual {
    min-height: auto;
  }

  .floating-pill--one {
    position: static;
    margin-top: 18px;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 72px 0;
  }

  .custom-navbar {
    padding: 14px 0;
  }

  .minimal-header__content {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .minimal-header__side {
    width: 100%;
    justify-content: center;
  }

  .minimal-header__tabs {
    margin-top: 18px;
    padding: 12px;
    gap: 8px;
  }

  .minimal-header__tab {
    flex: 1 1 calc(50% - 8px);
    min-width: 150px;
    padding-inline: 1rem;
  }

  .dashboard-grid-two {
    grid-template-columns: 1fr;
  }




  .navbar-collapse {
    margin-top: 16px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(14, 101, 203, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .brand-logo {
    width: 180px;
  }

  .hero-title {
    max-width: 11ch;
  }

  .schedule-modal__header,
  .schedule-modal__body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .schedule-day {
    min-height: 82px;
  }
}

@media (max-width: 767.98px) {
  .top-header__content,
  .hero-actions,
  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .metric-row,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .feature-card,
  .workflow-card,
  .team-card,
  .contact-card,
  .subscribe-box,
  .footer-card,
  .auth-info-card,
  .auth-form-card,
  .dashboard-hero,
  .dashboard-panel,
  .dashboard-stat-card,
  .schedule-calendar-card,
  .schedule-sidebar-card,
  .schedule-summary-card {
    padding: 24px;
  }

  .dashboard-hero,
  .panel-header,
  .panel-list-item,
  .project-card__header,
  .project-meta,
  .schedule-calendar-card__top,
  .schedule-legend,
  .schedule-slot-card,
  .schedule-modal__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-weekdays,
  .schedule-grid {
    gap: 8px;
  }

  .schedule-day {
    min-height: 74px;
    padding: 10px;
    border-radius: 18px;
  }

  .schedule-day__meta {
    font-size: 0.72rem;
  }

  .floating-pill {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Dashboard Table Adjustments
   ========================================================================== */
.table-dashboard {
  font-size: 0.92rem;
}
.table-dashboard th, .table-dashboard td {
  padding: 0.6rem;
  vertical-align: middle;
}
.table-dashboard .btn-sm {
  padding: 0.3rem 0.5rem;
  font-size: 0.8rem;
}
.table-dashboard .status-pill {
  font-size: 0.8rem;
  padding: 5px 10px;
}

/* ==========================================================================
   Print Styles (Optimized for PDF/Print)
   ========================================================================== */
@media print {
  @page {
    margin: 1cm;
    size: auto;
  }

  body, html {
    background: #fff !important;
    color: #000 !important;
    display: block !important;
    font-size: 11px !important;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  h2.text-primary {
    font-size: 20px !important;
    margin-bottom: 2px !important;
  }
  
  h5.text-muted {
    font-size: 14px !important;
  }
  
  p, div {
    font-size: 11px !important;
  }
  
  img[alt="CloudBusiness"] {
    max-width: 140px !important;
  }
  
  main, .section-space, .pb-5, .card, .container, .card-body {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }
  
  .mb-5 {
    margin-bottom: 12px !important;
  }
  
  .mt-5 {
    margin-top: 12px !important;
  }
  
  .mb-4 {
    margin-bottom: 10px !important;
  }
  
  .d-print-none,
  .site-header,
  .site-footer,
  .toast-box {
    display: none !important;
  }
  
  .card, .glass-card {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    backdrop-filter: none !important;
  }
  
  /* Ensure row alignment at top */
  .row.mb-5.align-items-center {
    align-items: flex-start !important;
  }
  
  /* Ensure colors print correctly and handle page breaks */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  
  .table-responsive {
    overflow: visible !important;
  }
  
  table {
    page-break-inside: auto;
    font-size: 11px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
  }
  
  .table th, .table td {
    padding: 4px 6px !important;
  }
  
  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  
  /* Eliminar regla global avoid para card-body div que rompe las tablas */
  .card-body > div {
    page-break-inside: auto;
  }
}
