/* =============================================
   REVYFY MARKETING SITE — styles.css
   Brand: Montserrat (headings) + DM Sans (body)
   Accent: #e60e89 | Light & minimal theme
   ============================================= */

/* === CUSTOM PROPERTIES === */
:root {
  --accent: #e60e89;
  --accent-dark: #b9006a;
  --accent-light: #fce8f3;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-grey: #eef1f8;
  --bg-pink: #fce8f3;
  --bg-blue: #f0f4ff;
  --bg-dark: #1a1a2e;
  --border: #e8e8ed;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
  --container: 1160px;
  --navbar-h: 72px;
  --diag: 80px;  /* height of diagonal cut */
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(230,14,137,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-ghost:hover { background: var(--accent-light); }

/* Ghost button for use on dark backgrounds */
.btn-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* Inverted primary — white bg, magenta text (for use on dark/gradient backgrounds) */
.btn-primary-inverted {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-primary-inverted:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

/* Ghost white — for use on dark/gradient backgrounds */
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* === SECTION UTILITIES === */
.section { padding: 80px 0; }

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

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

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

/* === FADE-IN ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in--delay { transition-delay: 0.15s; }

/* =============================================
   DIAGONAL SECTION DIVIDERS
   Each section uses ::after to draw a triangle
   in the next section's background colour.
   Direction alternates: ↗ then ↖ (zigzag).
   ============================================= */

/* Shared diagonal setup */
.sec-hero,
.sec-proof,
.sec-feature--booking,
.sec-feature--appointments,
.sec-feature--pos,
.sec-feature--clients,
.sec-grid,
.sec-spotlight,
.sec-pricing,
.sec-testimonials {
  position: relative;
}

/* Shared ::after setup for diagonal shapes */
.sec-hero::after,
.sec-feature--booking::after,
.sec-feature--appointments::after,
.sec-feature--pos::after,
.sec-feature--clients::after,
.sec-grid::after,
.sec-spotlight::after,
.sec-pricing::after,
.sec-testimonials::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--diag);
  pointer-events: none;
  z-index: 1;
}

/* === SECTION BACKGROUNDS & DIAGONAL COLOURS === */

/* HERO → Feature 1 (white) — direction ↗ */
.sec-hero {
  background: linear-gradient(135deg, #e60e89 0%, #b9006a 30%, #4a0035 65%, #1a1a2e 100%);
  padding-top: calc(var(--navbar-h) + 72px);
  padding-bottom: calc(72px + var(--diag));
}
.sec-hero::after {
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* FEATURE 1 — Online Booking (white) → Feature 2 (pink) — direction ↗ */
.sec-feature--booking {
  background: var(--bg);
  padding-bottom: calc(72px + var(--diag));
}
.sec-feature--booking::after {
  background: var(--bg-pink);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* FEATURE 2 — Appointments (soft pink) → Feature 3 (white) — direction ↖ */
.sec-feature--appointments {
  background: var(--bg-pink);
  padding-bottom: calc(72px + var(--diag));
}
.sec-feature--appointments::after {
  background: var(--bg);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* FEATURE 3 — POS (white) → Feature 4 (pale blue) — direction ↗ */
.sec-feature--pos {
  background: var(--bg);
  padding-bottom: calc(72px + var(--diag));
}
.sec-feature--pos::after {
  background: var(--bg-blue);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* FEATURE 4 — Clients (pale blue) → Features grid (grey) — direction ↖ */
.sec-feature--clients {
  background: var(--bg-blue);
  padding-bottom: calc(72px + var(--diag));
}
.sec-feature--clients::after {
  background: var(--bg-grey);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* FEATURES GRID (grey) → Spotlight (magenta) — direction ↗ */
.sec-grid {
  background: var(--bg-grey);
  padding-bottom: calc(72px + var(--diag));
}
.sec-grid::after {
  background: var(--accent);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* BOOKING SPOTLIGHT (magenta gradient) → Pricing (dark) — direction ↖ */
.sec-spotlight {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: calc(96px) 0 calc(96px + var(--diag));
}
.sec-spotlight::after {
  background: var(--bg-dark);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* PRICING (dark navy) → Testimonials (white) — direction ↗ */
.sec-pricing {
  background: var(--bg-dark);
  padding-bottom: calc(72px + var(--diag));
}
.sec-pricing::after {
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* TESTIMONIALS (white) → CTA (dark) — direction ↖ */
.sec-testimonials {
  background: var(--bg);
  padding-bottom: calc(72px + var(--diag));
}
.sec-testimonials::after {
  background: #0f0f1e;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* =============================================
   DARK SECTION OVERRIDES
   Pricing and CTA are dark — override text colours
   ============================================= */
.sec-pricing h2,
.sec-pricing h3,
.sec-pricing .section-title {
  color: #fff;
}

.sec-pricing .section-eyebrow {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 50px;
}

.sec-pricing .section-sub {
  color: rgba(255,255,255,0.6);
}

.sec-pricing .pricing-card__tagline {
  color: rgba(255,255,255,0.55);
}

.sec-pricing .pricing-card__period {
  color: rgba(255,255,255,0.45);
}

.sec-pricing .pricing-card__features li {
  color: rgba(255,255,255,0.85);
}

/* Spotlight dark overrides already handled inline via booking-spotlight styles */


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

/* Transparent state — when hero is visible */
.navbar--transparent {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.navbar--transparent .navbar__links a { color: rgba(255,255,255,0.85); }
.navbar--transparent .navbar__links a:hover { color: #fff; }
.navbar--transparent .navbar__cta {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.navbar--transparent .navbar__cta:hover {
  background: rgba(255,255,255,0.28);
}
.navbar--transparent .navbar__burger span { background: #fff; }
.navbar--transparent .navbar__links.open a { color: var(--text); }

/* Logo: scrolled (light bg) — R icon + dark wordmark text */
.logo--dark-bg { display: none; }
.logo--light-bg { display: block; }
.logo--light-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-left: 8px;
  display: flex;
  align-items: center;
}

/* Logo: transparent (dark bg) — full logo with white wordmark */
.navbar--transparent .logo--dark-bg { display: block; }
.navbar--transparent .logo--light-bg { display: none; }
.navbar--transparent .logo--light-text { display: none; }

.navbar__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-fallback {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  display: flex;
  align-items: center;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active { color: var(--text); }
.navbar__links a:hover::after,
.navbar__links a.active::after { transform: scaleX(1); }

.navbar__cta { margin-left: 16px; padding: 10px 22px; font-size: 14px; }

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.navbar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* =============================================
   HERO
   ============================================= */
.hero {
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

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

.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__composite {
  width: 120%;
  max-width: 960px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.45));
  margin-left: -10%;
}

/* Floating notification cards */
.hero__float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  white-space: nowrap;
  z-index: 10;
  animation: floatCard 4s ease-in-out infinite;
}

.hero__float-card--top {
  top: -12px;
  right: -16px;
  animation-delay: 0.5s;
}

.hero__float-card--bottom {
  bottom: 48px;
  left: -24px;
  animation-delay: 2s;
}

.float-icon { font-size: 20px; line-height: 1; }

.float-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.float-body span {
  font-size: 11px;
  color: var(--text-muted);
}

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


/* =============================================
   DEVICE FRAMES (mock UI)
   ============================================= */
.device-frame {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--bg-grey);
  border: 2px solid var(--border);
}

.device-frame--laptop {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding-top: 28px;
  background: #2a2d3f;
  border-color: #2a2d3f;
  position: relative;
}

.device-frame--laptop::before {
  content: '';
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.device-frame--laptop .device-frame__screen {
  background: #f0f1f5;
  border-radius: 8px 8px 0 0;
  height: 320px;
  overflow: hidden;
}

.device-frame--tablet {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 16px 10px;
  background: #1f2232;
  border-color: #1f2232;
}

.device-frame--tablet .device-frame__screen {
  background: #f0f1f5;
  border-radius: 8px;
  height: 290px;
  overflow: hidden;
}

.device-frame--mobile {
  width: 200px;
  border-radius: 28px;
  padding: 20px 10px;
  background: #1a1a2e;
  border-color: #1a1a2e;
}

.device-frame--mobile .device-frame__screen {
  background: #f0f1f5;
  border-radius: 16px;
  height: 380px;
  overflow: hidden;
  position: relative;
}

.device-frame--float {
  animation: floatAnim 4s ease-in-out infinite;
}

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

/* Real app screenshots inside device frames */
.device-frame__screen {
  position: relative;
}
.device-frame__screen .device-screenshot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  border-radius: inherit;
  display: block;
}


/* =============================================
   DEVICE CAROUSEL
   ============================================= */

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.carousel-frame-row {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
}

.carousel__slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  flex-shrink: 0;
}

.carousel__arrow {
  background: none;
  border: none;
  font-size: 2.8rem;
  font-weight: 300;
  color: #1a1a2e;
  cursor: pointer;
  padding: 8px 4px;
  line-height: 1;
  transition: color 0.2s, transform 0.15s;
  user-select: none;
  flex-shrink: 0;
}

.carousel__arrow:hover {
  color: var(--accent);
  transform: scale(1.25);
}

.carousel__dots {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
  min-height: 12px;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel__dot--active {
  background: var(--accent);
  transform: scale(1.35);
}


/* =============================================
   MOCK DASHBOARD (hero — improved)
   ============================================= */
.mock-dashboard {
  display: flex;
  height: 320px;
}

.mock-dashboard__sidebar {
  width: 56px;
  background: #1a1a2e;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-sidebar-item {
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.mock-sidebar-item--active {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(230,14,137,0.5);
}

.mock-sidebar-icon {
  width: 10px; height: 10px;
  border-radius: 3px;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.mock-sidebar-item--active .mock-sidebar-icon {
  background: rgba(255,255,255,0.9);
}

.mock-dashboard__content {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f8f8fb;
}

/* Stat cards — richer */
.mock-stat-row { display: flex; gap: 6px; }

.mock-stat {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 8px 8px 6px;
  box-shadow: var(--shadow-sm);
}

.mock-stat__label {
  font-size: 7px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.mock-stat__number {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.mock-stat__bar {
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  width: 80%;
}
.mock-stat__bar--short { width: 55%; }
.mock-stat__bar--tiny  { width: 30%; }

/* Appointment grid — 3 staff columns */
.mock-appt-grid {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.mock-grid-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.mock-grid-col-label {
  font-size: 7px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-grid-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 22px);
  gap: 3px;
  height: calc(5 * 22px + 4 * 3px);
}

.mock-grid-appt {
  border-radius: 4px;
  border-left: 2px solid transparent;
}
.mock-grid-appt--pink   { background: rgba(230,14,137,0.22); border-color: var(--accent); }
.mock-grid-appt--purple { background: rgba(120,60,200,0.18); border-color: #783cc8; }
.mock-grid-appt--soft   { background: rgba(230,14,137,0.08); border-color: rgba(230,14,137,0.35); }

/* Mini bar chart */
.mock-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  padding: 6px 8px 4px;
  box-shadow: var(--shadow-sm);
}

.mock-bar {
  flex: 1;
  background: rgba(230,14,137,0.25);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
}

.mock-bar--today {
  background: var(--accent);
}


/* =============================================
   MOCK BOOKING (mobile)
   ============================================= */
.mock-booking {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 340px;
}

.mock-booking__header {
  height: 14px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.7;
  width: 70%;
  margin: 0 auto;
}

.mock-booking__slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mock-slot {
  height: 32px;
  border-radius: 8px;
  background: #e8e8ed;
}

.mock-slot--selected {
  background: var(--accent);
  opacity: 0.85;
}

.mock-booking__btn {
  height: 36px;
  border-radius: 50px;
  background: var(--accent);
  margin-top: auto;
}


/* =============================================
   MOCK CALENDAR (tablet)
   ============================================= */
.mock-calendar-view {
  padding: 12px;
  min-height: 280px;
}

.mock-cal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(5, 40px);
  gap: 6px;
  height: 100%;
}

.mock-appt { border-radius: 6px; }
.mock-appt--pink { background: rgba(230,14,137,0.25); border-left: 3px solid var(--accent); }
.mock-appt--light { background: rgba(230,14,137,0.08); border-left: 3px solid rgba(230,14,137,0.4); }


/* =============================================
   MOCK POS (tablet)
   ============================================= */
.mock-pos {
  padding: 14px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-pos__header {
  height: 12px;
  border-radius: 4px;
  background: #e8e8ed;
  width: 60%;
}

.mock-pos__items { display: flex; flex-direction: column; gap: 8px; }

.mock-pos-item {
  height: 40px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--accent);
}

.mock-pos__total {
  height: 20px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.2;
  margin-top: auto;
}

.mock-pos__btn {
  height: 40px;
  border-radius: 50px;
  background: var(--accent);
}


/* =============================================
   MOCK CLIENTS (laptop)
   ============================================= */
.mock-clients {
  padding: 14px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-client-header {
  height: 10px;
  border-radius: 4px;
  background: #e8e8ed;
  width: 40%;
  margin-bottom: 4px;
}

.mock-client-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--shadow-sm);
}

.mock-client-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}

.mock-client-avatar--2 { background: var(--accent-dark); }

.mock-client-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }

.mock-client-name {
  height: 8px;
  border-radius: 3px;
  background: #e8e8ed;
  width: 70%;
}

.mock-client-detail {
  height: 6px;
  border-radius: 3px;
  background: #f0f1f5;
  width: 50%;
}

.mock-client-tag {
  height: 20px; width: 48px;
  border-radius: 50px;
  background: var(--accent-light);
  flex-shrink: 0;
}

.mock-client-tag--alt { background: #e8f4fd; }


/* =============================================
   PROOF STRIP
   ============================================= */
.proof-strip {
  padding: 32px 0;
}

.proof-strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-strip__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-strip__logos {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #c0c4d0;
  letter-spacing: 0.02em;
}


/* =============================================
   FEATURE BLOCKS
   ============================================= */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-block--reverse .feature-block__visual { order: 2; }
.feature-block--reverse .feature-block__content { order: 1; }

.feature-block__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-block__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

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

.feature-block__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.feature-block__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 16px;
}

.feature-block__desc {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Feature icon on pink background: keep it readable */
.sec-feature--appointments .feature-block__icon,
.sec-feature--clients .feature-block__icon {
  background: rgba(255,255,255,0.7);
}

/* Feature icon on blue background */
.sec-feature--clients .feature-block__icon {
  background: rgba(255,255,255,0.75);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23e60e89' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-list--light li { color: rgba(255,255,255,0.92); }
.feature-list--light li::before {
  border-color: rgba(255,255,255,0.6);
  background-color: rgba(255,255,255,0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2 6 5 9 10 3' stroke='%23fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


/* =============================================
   SECONDARY FEATURES GRID
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.mini-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.mini-feature__icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mini-feature__icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent);
}

.mini-feature h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.mini-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* =============================================
   BOOKING SPOTLIGHT
   ============================================= */
.booking-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.sec-spotlight .section-eyebrow {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 50px;
}

.sec-spotlight .section-title {
  color: #fff;
}

.sec-spotlight .section-sub {
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}

.booking-spotlight__content { max-width: 560px; }

.booking-spotlight__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Booking spotlight mock */
.mock-booking--full {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-booking__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f1f5;
}

.mock-brand-logo {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--accent);
  opacity: 0.85;
}

.mock-brand-name {
  height: 10px;
  border-radius: 4px;
  background: #e8e8ed;
  width: 80px;
}

.mock-booking__step { display: flex; flex-direction: column; gap: 8px; }

.mock-step-label {
  height: 8px;
  border-radius: 3px;
  background: #e8e8ed;
  width: 60%;
  margin-bottom: 4px;
}

.mock-service-card {
  height: 44px;
  border-radius: 10px;
  background: #f5f5f7;
  border: 2px solid transparent;
}

.mock-service-card--selected {
  border-color: var(--accent);
  background: var(--accent-light);
}

.mock-booking__btn--full {
  height: 40px;
  border-radius: 50px;
  background: var(--accent);
  margin-top: auto;
}


/* =============================================
   PRICING
   ============================================= */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.pricing-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-3px);
}

.pricing-card--featured {
  background: rgba(255,255,255,0.13);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  transform: scale(1.02);
}

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

.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card__header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #fff;
}

.pricing-card__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.check {
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.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: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-card__author strong { display: block; font-size: 14px; }
.testimonial-card__author span { font-size: 13px; color: var(--text-muted); }


/* =============================================
   CTA BANNER
   ============================================= */
.sec-cta {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #2a1040 100%);
  padding: 96px 0;
}

.cta-banner__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner__inner h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.cta-banner__inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0f0f1e;
  color: rgba(255,255,255,0.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer__brand img { margin-bottom: 12px; opacity: 0.9; }
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 280px; }

.footer__links { display: contents; }

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

.footer__col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  background: rgba(0,0,0,0.3);
  padding: 16px 0;
  text-align: center;
}

.footer__bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  :root { --diag: 50px; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__sub { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__visual { justify-content: center; }
  .hero__float-card { display: none; }

  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block--reverse .feature-block__visual { order: 0; }
  .feature-block--reverse .feature-block__content { order: 0; }
  .feature-block__visual { justify-content: center; }

  .booking-spotlight__inner { grid-template-columns: 1fr; gap: 48px; }
  .booking-spotlight__visual { display: none; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-3px); }

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

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

@media (max-width: 768px) {
  :root { --diag: 36px; }

  .section { padding: 64px 0; }

  .navbar__links { display: none; }
  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--navbar-h); left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }

  .proof-strip__inner { flex-direction: column; gap: 16px; text-align: center; }
  .proof-strip__logos { justify-content: center; }

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

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

  .device-frame--laptop { max-width: 340px; }
  .device-frame--tablet { max-width: 300px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn-lg { width: 100%; }
}


/* =============================================
   HERO TRUST LINE
   ============================================= */

.hero__trust {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}


/* =============================================
   STATS BAR
   ============================================= */

.stats-bar {
  background: var(--bg-grey);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-item strong {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: var(--accent);
  line-height: 1.1;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 160px;
  margin-top: 6px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .stats-bar__inner { gap: 32px; }
}


/* =============================================
   WHO IT'S FOR — INDUSTRIES SECTION
   ============================================= */

.sec-industries { background: #fff; }

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

.industry-group {
  background: var(--bg-grey);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.industry-group__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.industry-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.industry-group ul li {
  font-size: 0.875rem;
  color: var(--text);
}

.industries__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.industries__cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .industries-grid { grid-template-columns: 1fr; }
}
