/* ==========================================
   BookBolt — Complete Stylesheet
   Theme: Dark + Teal + Mint
   Font: Inter
   ========================================== */

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

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --bg:          #0a0a0a;
  --bg-card:     #111111;
  --bg-card-alt: #161616;
  --bg-elevated: #1a1a1a;
  --surface:     #1e1e1e;
  --border:      #222222;
  --border-light:#2a2a2a;

  --teal:        #1da2a4;
  --teal-dark:   #15827e;
  --teal-glow:   rgba(29, 162, 164, 0.35);
  --mint:        #62dec3;
  --mint-glow:   rgba(98, 222, 195, 0.25);
  --cyan:        #3ecfe0;

  --text:        #f0f0f0;
  --text-muted:  #999999;
  --text-dim:    #666666;
  --white:       #ffffff;

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

  /* Spacing */
  --section-py:  120px;
  --container-w: 1200px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-sm:   8px;

  /* Transitions */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul { list-style: none; }

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

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

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

.text-gradient {
  background: linear-gradient(135deg, var(--teal), var(--mint), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  background: rgba(29, 162, 164, 0.1);
  border: 1px solid rgba(29, 162, 164, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border: none;
  box-shadow: 0 4px 24px var(--teal-glow);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--mint), var(--teal));
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--teal-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-light);
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(29, 162, 164, 0.15);
}

.btn--sm  { padding: 8px 20px;  font-size: 0.85rem; }
.btn--md  { padding: 12px 28px; font-size: 0.95rem; }
.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.navbar__logo-img {
  height: 52px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__links li a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.3s var(--ease);
}

.navbar__links li a:not(.btn):hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.navbar__links li a.btn,
.navbar__links li a.btn:hover,
.navbar__links li a.btn:focus,
.navbar__links li a.btn:active,
.navbar__links li a.btn:visited {
  color: var(--white);
}

/* Mobile toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

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

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

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

/* Hero glow background */
.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
}

/* ---------- Phone Mockup ---------- */
.phone-mockup {
  position: relative;
  width: 300px;
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  background: #0d0d0d;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 1px #2a2a2a,
    0 0 0 2px #181818,
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(29, 162, 164, 0.06);
}

.phone-mockup__notch {
  width: 90px;
  height: 24px;
  background: #0d0d0d;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.phone-mockup__screen {
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* --- App header --- */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px 8px;
}

.app-header__property {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-header__avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0a0a0a;
}

.app-header__name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
}

.app-header__badge {
  background: var(--teal);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-header__actions {
  display: flex;
  gap: 10px;
  color: var(--text-muted);
}

.app-header__actions svg {
  width: 18px;
  height: 18px;
}

/* --- Month nav --- */
.app-month {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4px 0 10px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.app-month svg {
  color: var(--text-dim);
}

/* --- Weekdays --- */
.app-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding: 0 8px 6px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-dim);
}

/* --- Calendar grid --- */
.app-cal {
  padding: 0 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-cal__week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  position: relative;
  flex: 1;
  min-height: 0;
}

.app-cal__day {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

.app-cal__day--empty {
  color: var(--text-dim);
  opacity: 0.25;
}

.app-cal__day--today {
  color: var(--teal);
  font-weight: 700;
}

.app-cal__day--today::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

/* --- Booking bars overlaid on weeks --- */
.app-booking {
  position: absolute;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
  font-size: 0.55rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: translateY(-50%) scaleX(0.3);
  transform-origin: left center;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-booking.visible {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.app-booking__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Booking color themes */
.app-booking--teal {
  background: rgba(29, 162, 164, 0.22);
  color: var(--teal);
}
.app-booking--teal .app-booking__dot { background: var(--teal); }

.app-booking--purple {
  background: rgba(160, 100, 255, 0.2);
  color: #b07fff;
}
.app-booking--purple .app-booking__dot { background: #a064ff; }

.app-booking--amber {
  background: rgba(245, 180, 50, 0.2);
  color: #f5b432;
}
.app-booking--amber .app-booking__dot { background: #f5b432; }

.app-booking--mint {
  background: rgba(98, 222, 195, 0.2);
  color: var(--mint);
}
.app-booking--mint .app-booking__dot { background: var(--mint); }

.app-booking--rose {
  background: rgba(255, 100, 130, 0.2);
  color: #ff6482;
}
.app-booking--rose .app-booking__dot { background: #ff6482; }

.app-booking--cyan {
  background: rgba(62, 207, 224, 0.2);
  color: var(--cyan);
}
.app-booking--cyan .app-booking__dot { background: var(--cyan); }

/* --- Bottom nav --- */
.app-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.app-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}

.app-nav__item svg {
  width: 18px;
  height: 18px;
}

.app-nav__item--active {
  color: var(--teal);
}

.app-nav__item--active svg {
  stroke: var(--teal);
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  padding: 64px 0 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

/* --- Stats row --- */
.trust-bar__stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-stat {
  text-align: center;
  min-width: 120px;
}

.trust-stat__number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.trust-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.trust-stat__divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--border-light), transparent);
}

/* --- Text --- */
.trust-bar__text {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 20px;
}

/* --- Marquee --- */
.trust-bar__marquee {
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trust-bar__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.trust-bar__track span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  opacity: 0.45;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.trust-bar__track span:hover {
  opacity: 0.85;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.feature-card:hover {
  border-color: var(--teal);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(29, 162, 164, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(29, 162, 164, 0.1);
  border: 1px solid rgba(29, 162, 164, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
}

.feature-card:hover .feature-card__icon {
  background: rgba(29, 162, 164, 0.2);
  box-shadow: 0 0 24px var(--teal-glow);
  transform: scale(1.1);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
}

.feature-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
}

.step__number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: all 0.4s var(--ease);
}

.step:hover .step__number {
  opacity: 1;
  text-shadow: 0 0 30px var(--teal-glow);
}

.step__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.step__line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  margin-left: 29px;
  opacity: 0.3;
}

/* ---------- SHOWCASE ---------- */
.showcase {
  padding: var(--section-py) 0;
}

.showcase__demo {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.showcase__demo::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--teal), transparent 40%, transparent 60%, var(--mint));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
}

.showcase__left {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

/* --- Enterprise mockup screen --- */
.ent-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ent-header__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.ent-header__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.ent-header__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ent-header__avatar > span:first-child {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
}

.ent-header__role {
  font-size: 0.55rem;
  font-weight: 700;
  background: var(--teal);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
}

.ent-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 16px 12px;
}

.ent-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ent-stat__num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
}

.ent-stat__label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.ent-actions {
  padding: 8px 16px;
}

.ent-actions__title,
.ent-members__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.ent-actions__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.ent-action {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.ent-members {
  padding: 12px 16px;
  flex: 1;
}

.ent-member {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.ent-member:last-child {
  border-bottom: none;
}

.ent-member__avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.ent-member__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ent-member__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.ent-member__badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}

.ent-member__badge--admin {
  background: rgba(29, 162, 164, 0.15);
  color: var(--teal);
}

.ent-member__badge--member {
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
}

.ent-member__badge--viewer {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}

.showcase__right {
  border-left: 1px solid var(--border);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

/* Activity Feed */

/* Feed header */
.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.feed-header__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.feed-header__clear {
  font-size: 0.78rem;
  color: var(--teal);
  cursor: pointer;
}

/* Feed tabs */
.feed-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.feed-tabs__tab {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}

.feed-tabs__tab:hover {
  color: var(--text);
}

.feed-tabs__tab--active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

/* Feed booking cards */
.feed-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feed-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.feed-card__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.feed-card__badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: capitalize;
}

.feed-card__badge--confirmed {
  background: rgba(29, 162, 164, 0.15);
  color: var(--teal);
}

.feed-card__badge--active {
  background: rgba(98, 222, 195, 0.15);
  color: var(--mint);
}

.feed-card__guest {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.feed-card__date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.feed-card__meta {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.feed-card__updated {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

/* Activity log entries */
.feed-card__log {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.feed-log {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 8px;
  align-items: center;
}

.feed-log__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.feed-log__dot--green {
  background: var(--teal);
}

.feed-log__dot--orange {
  background: #e8a838;
}

.feed-log__text {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.feed-log__time {
  font-size: 0.65rem;
  color: var(--text-dim);
}

/* Feed card animation */
.feed-card--animate {
  opacity: 0;
  transform: translateX(20px);
  animation: feedSlide 0.6s var(--ease) forwards;
}

@keyframes feedSlide {
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.4s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ---------- PRICING ---------- */
.pricing {
  padding: var(--section-py) 0;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card--premium {
  border-color: var(--teal);
  box-shadow: 0 0 40px rgba(29, 162, 164, 0.1);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 50px;
}

.pricing-card__badge--soon {
  background: linear-gradient(135deg, var(--mint), var(--teal));
  color: var(--bg);
}

.pricing-card__name {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 16px 0 12px;
}

.pricing-card__price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
}

.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.pricing__table-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
}

.pricing__table thead th {
  padding: 20px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing__table thead th:first-child {
  text-align: left;
}

.pricing__table tbody td {
  padding: 14px 24px;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.pricing__table tbody td:first-child {
  text-align: left;
  color: var(--text);
  font-weight: 500;
}

.pricing__table tbody tr:last-child td {
  border-bottom: none;
}

.pricing__table-highlight {
  background: rgba(29, 162, 164, 0.05);
}

.pricing__check {
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
}

.pricing__cross {
  color: var(--text-dim);
  opacity: 0.4;
  font-size: 1rem;
}

.pricing__table-actions {
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--section-py) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

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

.faq-item[open] {
  border-color: var(--teal);
  box-shadow: 0 4px 24px rgba(29, 162, 164, 0.08);
}

.faq-item__question {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
  transition: color 0.3s;
}

.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::marker { display: none; content: ''; }

.faq-item__question:hover {
  color: var(--teal);
}

.faq-item[open] .faq-item__question {
  color: var(--teal);
}

.faq-item__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.faq-item__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item[open] .faq-item__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item[open] .faq-item__icon::before {
  background: var(--teal);
}

.faq-item__answer {
  padding: 0 24px 20px;
  animation: faqOpen 0.3s var(--ease);
}

.faq-item__answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

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

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

.contact__form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.3s var(--ease);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--text-dim);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237a7a7a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact__field textarea {
  resize: vertical;
  min-height: 100px;
}


/* ---------- CTA ---------- */
.cta {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.cta__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

/* Floating dates in CTA */
.floating-dates {
  position: relative;
  width: 100%;
  height: 300px;
}

.floating-date {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  animation: floatUp 8s var(--ease) infinite;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

@keyframes floatUp {
  0%        { opacity: 0; transform: translateY(40px); }
  20%, 80%  { opacity: 1; transform: translateY(0); }
  100%      { opacity: 0; transform: translateY(-30px); }
}

/* ---------- FOOTER ---------- */
.footer {
  position: relative;
  padding: 60px 0 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.3;
}

/* --- Main grid --- */
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
}

.footer__social a:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: rgba(29, 162, 164, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(29, 162, 164, 0.15);
}

.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}

.footer__col a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

/* --- Bottom bar --- */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__made {
  color: var(--text-dim);
  opacity: 0.6;
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease);
}

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

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* Staggered children in grids */
.features__grid .feature-card.visible:nth-child(1) { transition-delay: 0s; }
.features__grid .feature-card.visible:nth-child(2) { transition-delay: 0.1s; }
.features__grid .feature-card.visible:nth-child(3) { transition-delay: 0.2s; }
.features__grid .feature-card.visible:nth-child(4) { transition-delay: 0.3s; }
.features__grid .feature-card.visible:nth-child(5) { transition-delay: 0.4s; }
.features__grid .feature-card.visible:nth-child(6) { transition-delay: 0.5s; }

.testimonials__grid .testimonial-card.visible:nth-child(1) { transition-delay: 0s; }
.testimonials__grid .testimonial-card.visible:nth-child(2) { transition-delay: 0.15s; }
.testimonials__grid .testimonial-card.visible:nth-child(3) { transition-delay: 0.3s; }

/* Slide from left/right variants */
.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s var(--ease);
}

.reveal--right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s var(--ease);
}

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

/* Scale up variant */
.reveal--scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s var(--ease);
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .showcase__right {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 24px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta__actions {
    justify-content: center;
  }

  .floating-dates {
    display: none;
  }

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

  .hero__actions .btn--primary,
  .cta__actions .btn--primary {
    background: linear-gradient(135deg, var(--mint), var(--teal));
    box-shadow: 0 8px 40px var(--teal-glow);
  }

  .hero__actions .btn--outline,
  .cta__actions .btn--outline {
    border-color: var(--teal);
    color: var(--teal);
    box-shadow: 0 4px 24px rgba(29, 162, 164, 0.15);
  }
}

@media (max-width: 768px) {
  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.4s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links li a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .navbar__links li a.btn {
    text-align: center;
    margin-top: 12px;
  }

  .navbar__toggle {
    display: flex;
  }

  :root {
    --section-py: 60px;
  }

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

  .feature-card {
    padding: 28px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .showcase__demo {
    padding: 24px;
  }

  .pricing__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing__table thead th,
  .pricing__table tbody td {
    padding: 12px 16px;
    font-size: 0.82rem;
  }

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

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .phone-mockup {
    width: 260px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .step__number {
    opacity: 1;
    text-shadow: 0 0 30px var(--teal-glow);
  }

}

@media (max-width: 600px) {
  .trust-bar__stats { gap: 24px; }
  .trust-stat__number { font-size: 1.8rem; }
  .trust-stat__divider { display: none; }
}

@media (max-width: 480px) {
  :root {
    --section-py: 48px;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 48px;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
  }

  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .phone-mockup {
    width: 220px;
  }

  .feature-card {
    padding: 24px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .showcase__demo {
    padding: 16px;
  }

  .pricing__table thead th,
  .pricing__table tbody td {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .pricing__table-actions {
    padding: 16px;
    gap: 8px;
  }

  .faq-item__question {
    padding: 16px;
    font-size: 0.92rem;
  }

  .faq-item__answer {
    padding: 0 16px 16px;
  }

  .step {
    gap: 20px;
  }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}

/* ---------- SELECTION ---------- */
::selection {
  background: rgba(29, 162, 164, 0.3);
  color: var(--white);
}
