﻿/* =========================================================
   Hotel - Enterprise Hotel Management SaaS Website
   Global design system, layout, components and responsive rules.
   ========================================================= */

:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --brand-primary: #094345;
  --brand-hover: #0b5457;
  --brand-active: #062d2f;
  --brand-tint: #eaf4f3;
  --brand-rgb: 9, 67, 69;
  --accent: var(--brand-primary);
  --accent-2: var(--brand-hover);
  --success: #10b981;
  --bg: #ffffff;
  --soft: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 32px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  color: #fff;
  background: var(--accent);
}

/* Layout */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 10%, rgba(var(--brand-rgb), 0.12), transparent 28rem),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2,
.grid-3,
.grid-4 {
  grid-template-columns: 1fr;
}

.split {
  display: grid;
  gap: 42px;
  align-items: center;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.section-head.center {
  text-align: center;
  justify-items: center;
}

.section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.eyebrow2 {
  position: relative;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 999px;
  padding: 7px 11px;

  color: var(--accent);
  background: rgba(var(--brand-rgb), 0.08);

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow {
  position: relative;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  /* border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 999px; */
  padding: 7px 11px;

  color: var(--accent);
  /* background: rgba(var(--brand-rgb), 0.08); */

  /* font-size: 0.78rem; */
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;

  width: 50%;
  height: 3px;

  transform: translateX(-50%);

  border-radius: 999px;
  background: #094345;

  animation: pulseLine 4s ease-in-out infinite;
}

@keyframes pulseLine {

  0%,
  100% {
    width: 30%;
    opacity: .6;
  }

  50% {
    width: 70%;
    opacity: 1;
  }
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-transform: capitalize;
}

h1 {
  font-size: clamp(2.65rem, 8vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.lead {
  max-width: 760px;
  color: #475569;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--brand-hover) 45%, var(--success));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}

.nav {
  width: min(1280px, calc(100% - 24px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--success));
  box-shadow: 0 12px 30px rgba(var(--brand-rgb), 0.28);
}

.nav-menu {
  position: fixed;
  inset: 78px 12px auto;
  display: none;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu.is-open .nav-mobile-login {
  display: inline-flex;
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 0 10px;
  color: #334155;
  font-size: 0.93rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--brand-tint);
}

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

.nav-actions .btn-secondary {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.nav-mobile-login {
  display: none;
}

/* Buttons and forms */
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--text);
  background: #fff;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-hover), var(--brand-primary));
}

.btn-secondary {
  border-color: var(--line);
}

.btn-success {
  color: #fff;
  background: linear-gradient(135deg, var(--success), #059669);
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: none;
  background: none;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #334155;
  font-size: 0.84rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.12);
}

.form-grid {
  display: grid;
  gap: 14px;
}

/* Cards */
.card,
.glass-card,
.feature-card,
.module-card,
.price-card,
.industry-card,
.blog-card,
.testimonial,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(16px);
}

.card-body {
  padding: 24px;
}

.hover-lift {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hover-lift:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--brand-rgb), 0.28);
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.12);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--accent);
  background: var(--brand-tint);
  font-weight: 900;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: #475569;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.pill.success {
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.22);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 64px;
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--brand-rgb), 0.18), transparent 22rem),
    radial-gradient(circle at 78% 8%, rgba(16, 185, 129, 0.13), transparent 24rem),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.hero::after {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  text-align: center;
  justify-items: center;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* SaaS dashboard mockup */
.dashboard-wrap {
  position: relative;
  margin-top: 4px;
}

.dashboard {
  position: relative;
  overflow: visible;
  /* border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 28px;
  background: #0f172a;
  box-shadow: 0 36px 100px rgba(15, 23, 42, 0.28); */
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
  color: #cbd5e1;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
}

.window-dots span:nth-child(1) {
  background: #ef4444;
}

.window-dots span:nth-child(2) {
  background: #f59e0b;
}

.window-dots span:nth-child(3) {
  background: #10b981;
}

.dashboard-grid {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.dash-sidebar,
.dash-panel,
.dash-chart,
.dash-table,
.dash-calendar,
.dash-phone {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.dash-sidebar {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.dash-sidebar span {
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.dash-panel {
  padding: 16px;
}

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.dash-kpi {
  border-radius: 14px;
  padding: 14px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
}

.dash-kpi strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.dash-chart {
  min-height: 180px;
  padding: 16px;
  background:
    linear-gradient(180deg, transparent 60%, rgba(var(--brand-rgb), 0.16)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 54px);
}

.chart-bars {
  height: 140px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.chart-bars span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--brand-hover), var(--brand-active));
}

.dash-table {
  padding: 14px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 10px 0;
  color: #cbd5e1;
  font-size: 0.88rem;
}

.table-row:last-child {
  border-bottom: 0;
}

.dash-phone {
  max-width: 240px;
  margin: 0 auto;
  padding: 14px;
  background: #020617;
}

.phone-screen {
  display: grid;
  gap: 10px;
  border-radius: 20px;
  padding: 14px;
  background: #fff;
}

.phone-screen span {
  height: 58px;
  border-radius: 14px;
  background: var(--brand-tint);
}

.floating-card {
  display: none;
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.floating-card strong {
  display: block;
}

.floating-card.one {
  left: -10px;
  top: 14%;
}

.floating-card.two {
  right: -10px;
  bottom: 16%;
}

/* Tables and pricing */
.pricing-toggle {
  width: max-content;
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  background: #fff;
}

.toggle-btn {
  border: 0;
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
}

.toggle-btn.active {
  color: #fff;
  background: var(--brand-active);
}

.price-card {
  display: grid;
  gap: 7px;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(var(--brand-rgb), 0.42);
  box-shadow: 0 30px 90px rgba(var(--brand-rgb), 0.18);
}

.price {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 9px;
  color: #475569;
}

.check-list li::before {
  content: "✓";
  color: var(--success);
  font-weight: 900;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.07);
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 15px;
  text-align: left;
}

.comparison th {
  background: var(--soft);
}

.comparison td:not(:first-child) {
  text-align: start;
  font-weight: 800;
}

/* Page heroes and media */
.page-hero {
  padding: 88px 0 54px;
  background:
    radial-gradient(circle at 80% 0%, rgba(var(--brand-rgb), 0.15), transparent 22rem),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.page-hero .container {
  display: grid;
  gap: 18px;
}

.module-card {
  overflow: hidden;
}

.module-shot {
  min-height: 180px;
  display: grid;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(135deg, var(--brand-tint), #f8fafc);
}

.module-shot span {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.module-shot span:nth-child(1) {
  height: 38px;
}

.module-shot span:nth-child(2) {
  height: 74px;
}

.module-shot span:nth-child(3) {
  height: 44px;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.media-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 18px 20px;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 900;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.active .faq-answer {
  display: block;
}

.site-footer {
  padding: 72px 0 0;
  color: #a7c4c5;
  background: linear-gradient(160deg, #062d2f 0%, #094345 60%, #0b5457 100%);
}

.footer-grid {
  display: grid;
  gap: 32px;
}

.site-footer .brand,
.site-footer h4 {
  color: #fff;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-brand-col p {
  color: #a7c4c5;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-column h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c8dcdd;
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease, gap 180ms ease;
}

.footer-column a svg {
  width: 15px;
  height: 15px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 180ms ease;
}

.footer-column a:hover {
  color: #fff;
  gap: 12px;
}

.footer-column a:hover svg {
  opacity: 1;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #c8dcdd !important;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease !important;
  gap: 0 !important;
  line-height: 1;
}

.footer-social-link svg {
  width: 16px !important;
  height: 16px !important;
  opacity: 1 !important;
  display: block;
  flex-shrink: 0;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
  transform: translateY(-3px);
  gap: 0 !important;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.2);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  transform: translateY(-140%);
  border-radius: 999px;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Animation helpers */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.float {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 640px) {

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

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

  .dash-kpis {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 860px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 0.95fr 1.05fr;
  }

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

  .footer-brand-col {
    grid-column: 1;
  }

  .dashboard-grid {
    grid-template-columns: 190px minmax(0, 1fr) 260px;
  }

  .dash-panel {
    grid-column: span 2;
  }

  .dash-chart {
    grid-column: 2;
  }
}

@media (min-width: 1080px) {
  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu .nav-mobile-login {
    display: none !important;
  }

  .nav-actions .btn-secondary {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .floating-card {
    display: block;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-actions,
  .card-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* WhatsApp floating action */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2500;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  animation: whatsappPulse 3.8s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.04);
  background: linear-gradient(135deg, #2be36f, #075e54);
  box-shadow: 0 24px 60px rgba(37, 211, 102, 0.44);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  width: max-content;
  transform: translateY(-50%) translateX(8px);
  border: 1px solid rgba(var(--brand-rgb), 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  font-size: 0.84rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-fab:hover .whatsapp-fab-tooltip,
.whatsapp-fab:focus-visible .whatsapp-fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes whatsappPulse {

  0%,
  74%,
  100% {
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34), 0 0 0 0 rgba(37, 211, 102, 0);
  }

  84% {
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.34), 0 0 0 14px rgba(37, 211, 102, 0.16);
  }
}

@media (max-width: 680px) {
  .whatsapp-fab {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-fab-tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Premium UI/UX Refinement Pass
   Consistent 8px spacing scale, stronger SaaS hierarchy,
   larger whitespace, deeper cards and more deliberate rhythm.
   ========================================================= */

:root {
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-10: 80px;
  --space-12: 96px;
  --space-14: 112px;
  --space-16: 128px;
  --container: min(1240px, calc(100% - 40px));
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 28px 90px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 42px 120px rgba(15, 23, 42, 0.18);
}

body {
  line-height: 1.8;
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--brand-rgb), 0.08), transparent 30rem),
    radial-gradient(circle at 90% 8%, rgba(16, 185, 129, 0.06), transparent 26rem),
    #fff;
}

.section {
  padding: var(--space-6) 0;
}

.section+.section {
  position: relative;
}

.grid {
  gap: var(--space-4);
}

.grid-3,
.grid-4 {
  gap: var(--space-5);
}

.split {
  gap: var(--space-8);
}

.section-head {
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.section-head p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-transform: capitalize;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.045em;
}

h1 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 900;
}

h2 {
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  line-height: 1.22;
  font-weight: 850;
}

/* Card-level h3 — smaller, tighter across all pages */
.feature-card h3,
.industry-card h3,
.module-card h3,
.why-card h3,
.price-card h3,
.testimonial h3,
.blog-card h3,
.screenshot-caption h3,
.office-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Vision/Mission and similar card-level h2 overrides */
.card.card-body h2,
.glass-card.card-body h2 {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

/* Card body p — consistent muted text */
.feature-card p,
.industry-card p,
.module-card p,
.why-card p,
.price-card p,
.blog-card p,
.screenshot-caption p,
.office-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

p {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.8;
  text-transform: capitalize;
}

.lead {
  margin-top: 0;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  line-height: 1.8;
}

.eyebrow {
  margin-bottom: 2px;
  padding: 8px 12px;
}

.eyebrow2 {
  margin-bottom: 2px;
  padding: 8px 12px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
}

.hero {
  padding: 80px 0 0;
}

.hero-content {
  gap: var(--space-3);
}

.hero-actions,
.card-actions {
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.trust-row {
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.dashboard-wrap {
  margin-top: -125px;
}

@media (max-width: 768px) {
  .dashboard-wrap {
    margin-top: 4px;
  }
}

/* .dashboard {
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
} */

.dashboard-grid {
  gap: var(--space-3);
  padding: var(--space-3);
}

.dash-panel,
.dash-chart,
.dash-table,
.dash-phone,
.dash-sidebar {
  border-radius: 22px;
}

.dash-panel,
.dash-table,
.dash-chart {
  padding: var(--space-3);
}

.card,
.glass-card,
.feature-card,
.module-card,
.price-card,
.industry-card,
.blog-card,
.testimonial,
.faq-item {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 64px rgba(15, 23, 42, 0.08);
}

.card-body {
  padding: var(--space-5);
}

.feature-card,
.industry-card,
.testimonial {
  display: grid;
  gap: var(--space-2);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  stroke: var(--accent);
}

.page-hero {
  padding: 80px 0 60px;
}

.page-hero .container {
  gap: var(--space-3);
  text-align: center;
  justify-items: center;
}

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

.footer-grid {
  gap: var(--space-5);
}

@media (max-width: 1024px) {
  .section {
    padding: var(--space-10) 0;
  }

  .hero {
    padding: var(--space-10) 0 var(--space-8);
  }

  .split {
    gap: var(--space-6);
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1240px);
  }

  .section {
    padding: var(--space-7) 0;
  }

  .hero {
    padding: var(--space-7) 0 var(--space-6);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  .section-head {
    margin-bottom: var(--space-5);
  }

  .card-body {
    padding: var(--space-3);
  }

  .grid,
  .grid-3,
  .grid-4 {
    gap: var(--space-3);
  }
}



/* =========================================================
   Dashboard Screenshot Slider — legacy stubs kept for
   product-tour / other pages that still use .dash-slides
   ========================================================= */
.dash-slider-clip {
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

.dash-slides {
  display: flex;
  transition: transform 680ms cubic-bezier(0.37, 0, 0.12, 1);
  will-change: transform;
}

.dash-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 20px 20px 0;
}

.dash-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-radius: 18px;
  transition: opacity 400ms ease;
}

.dash-slide img[loading="lazy"] {
  opacity: 0;
}

.dash-slide img.is-loaded {
  opacity: 1;
}

.footer-address-text {
  display: inline-block;
  min-width: 320px;
  white-space: normal;
  line-height: 1.7;
}

.footer-column:last-child {
  min-width: 350px;
}

/* Mobile View tab only */
[data-tour-panel="mobile"] .dashboard {
  max-width: 320px;
  padding: 20px;
  margin: 0 auto;
}

[data-tour-panel="mobile"] .tour-dash-images img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =========================================================
   Premium Laptop Showcase — Cinematic Ken-Burns Edition
   ========================================================= */

/* 1. Wrapper — strip all dashboard defaults, allow overflow for shadow */
.dashboard-wrap .laptop-showcase {
  width: min(100%, 1200px);
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  perspective: 1400px;
}

/* 2. Soft ground shadow beneath the whole laptop */
/* .laptop-showcase::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 2%;
  height: 8%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
      rgba(9, 67, 69, 0.32),
      rgba(15, 23, 42, 0.18) 46%,
      transparent 72%);
  filter: blur(22px);
  pointer-events: none;
} */

/* 3. Floating wrapper — MacBook open on load, then float + JS tilt */
.laptop-showcase .dash-slider {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  transform-origin: center bottom;
  will-change: transform;
  touch-action: pan-y;
  /* Start: closed state */
  transform: scale(0.85) rotateX(20deg);
  opacity: 0;
}

/* Triggered by JS after load */
.laptop-showcase .dash-slider.mac-open {
  animation: macOpen 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* After open: hand off to float */
.laptop-showcase .dash-slider.mac-done {
  animation: laptopFloat 7s ease-in-out infinite;
  transform: none;
  opacity: 1;
}

@keyframes macOpen {
  0%   { transform: scale(0.85) rotateX(20deg); opacity: 0; }
  100% { transform: scale(1)    rotateX(0deg);  opacity: 1; }
}

/* 4. Stage: aspect-ratio matches laptop.png visible area (500px wide, top 390px used) */
.dash-laptop-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 500 / 390;
  margin-inline: auto;
  transform-style: preserve-3d;
}

/* 5. Laptop PNG — natural size, no cropping */
.dash-laptop-frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  user-select: none;
  pointer-events: none;
  filter:
    drop-shadow(0 40px 50px rgba(15, 23, 42, 0.36))
    drop-shadow(0 8px 16px rgba(15, 23, 42, 0.18));
}

/* 6. Screen bezel: pixel-perfect match to laptop.png transparent screen hole.
      PNG 500x500 (square) rendered via object-fit:contain in 500/390 stage.
      scale=390/500=0.78, offset-x=(500-390)/2=55px
      Screen hole px: top=124 bottom=346 left=51 right=449
      left=(55+51*0.78)/500=18.96%  top=(124*0.78)/390=24.8%
      width=(398*0.78)/500=62.09%   height=(222*0.78)/390=44.4% */
.dash-screen {
  position: absolute;
  left: 23.96%;
  top: 27.8%;
  z-index: 2;
  width: 53.09%;
  height: 42.4%;
  overflow: hidden;
  border-radius: 2px;
  background: #0f172a;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 48px rgba(9, 67, 69, 0.52),
    inset 0 0 32px rgba(9, 67, 69, 0.28);
  will-change: transform;
}

/* 7. Ambient screen glow */
.dash-screen-glow {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(16, 185, 129, 0.22), transparent 38%),
    radial-gradient(circle at 70% 65%, rgba(9, 67, 69, 0.38), transparent 44%);
  animation: screenGlow 5s ease-in-out infinite;
  pointer-events: none;
}

/* 8. Ken-Burns viewport: fills the screen, clips all motion */
.dash-kb-viewport {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #020617;
}

/* 9. Each screenshot: stacked, fills viewport perfectly */
.dash-kb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0;
  will-change: opacity;
  border-radius: 0;
  display: block;
}

/* 10. Glass reflection overlay on screen */
.dash-screen-reflection {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(120deg,
      rgba(255, 255, 255, 0.22) 0%,
      rgba(255, 255, 255, 0.06) 22%,
      transparent 42%),
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 38%);
  mix-blend-mode: screen;
  pointer-events: none;
}

/* 11. Animations */
@keyframes macOpen {
  0%   { transform: scale(0.85) rotateX(20deg); opacity: 0; }
  100% { transform: scale(1)    rotateX(0deg);  opacity: 1; }
}

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

@keyframes screenGlow {
  0%, 100% { opacity: 0.6;  transform: scale(1);    }
  50%       { opacity: 0.95; transform: scale(1.04); }
}

/* 12. Responsive */
@media (max-width: 1024px) {
  .dashboard-wrap .laptop-showcase {
    width: min(100%, 900px);
  }

  .dash-laptop-stage {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .dashboard-wrap .laptop-showcase {
    width: 100%;
  }

  .dash-laptop-stage {
    max-width: 640px;
  }
}

@media (max-width: 480px) {
  .dashboard-wrap .laptop-showcase {
    width: calc(100% + 16px);
    margin-left: -8px;
  }

  .dash-laptop-stage {
    aspect-ratio: 500 / 390;
  }
}

/* Story metrics — always 3 columns on all screen sizes */
.testimonial .grid-3 {
  display: flex;
  gap: 0;
}

.story-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 8px;
  border-right: 1px solid var(--line);
}

.story-metric:last-child {
  border-right: none;
}

.story-metric strong {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.story-metric span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
