/* ================================================================
   FinBooks360 - Main Stylesheet
   File:    style.css
   Usage:   Linked from index.html via <link rel="stylesheet" href="style.css"/>
   Fonts:   Playfair Display (headings) + Cormorant Garamond (logo) + DM Sans (body)
================================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --primary: #D4A446;
  --primary-hover: #B8892E;
  --primary-light: #FDF6E7;
  --accent: #609B8F;
  --accent-light: #EAF4F2;
  --bg: #F9F7F2;
  --card: #FFFFFF;
  --text: #1C3B51;
  --text-2: #495759;
  --text-3: #7F8182;
  --border: #E8E3D8;
  --border-2: #D4CCBE;
  --success: #609B8F;
  --warning: #D4A446;
  --danger: #EF4444;

  --grad-primary: linear-gradient(135deg, #D4A446 0%, #609B8F 100%);
  --grad-hero: linear-gradient(160deg, #F0EBE0 0%, #E8F4F1 60%, #F9F7F2 100%);
  --grad-dark: linear-gradient(135deg, #1C3B51 0%, #0D2535 100%);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .10), 0 4px 12px rgba(0, 0, 0, .06);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, .12), 0 8px 24px rgba(0, 0, 0, .06);
  --shadow-color: 0 16px 48px rgba(212, 164, 70, .18);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --transition: all .22s cubic-bezier(.4, 0, .2, 1);
  --section-pad: 96px 0;
}

/* ============================================================
   RESET & BASE
============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(212, 164, 70, .2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.17;
  letter-spacing: -.6px;
  margin-top: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  margin-top: 12px;
  max-width: 560px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 12px auto 0;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background .18s;
}

.btn:hover::after {
  background: rgba(255, 255, 255, .08);
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-color);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(212, 164, 70, .28);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: var(--card);
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(10px);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .5);
}

.btn-sm {
  font-size: 13.5px;
  padding: 9px 20px;
}

.btn-lg {
  font-size: 16px;
  padding: 15px 34px;
}

.btn-block {
  width: 100%;
}

/* ============================================================
   HEADER / NAV
============================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, .85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, .7);
  transition: box-shadow .3s;
}

#header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Legacy logo styles removed to match premium-design.css */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-login {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-login:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
  background: rgba(248, 250, 252, .97);
  backdrop-filter: blur(20px);
}

.mobile-menu a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.mobile-menu .btn {
  margin-top: 8px;
}

.mobile-menu.open {
  display: flex;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  background: var(--grad-hero);
  padding: 90px 0 80px;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 164, 70, .07) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 155, 143, .06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: heroFadeUp .7s ease both;
}

.hero-eyebrow {
  margin-bottom: 22px;
}

.hero-eyebrow .section-label {
  background: rgba(212, 164, 70, .08);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-left: -8px;
}

.hero-trust-avatars span:first-child {
  margin-left: 0;
}

/* Dashboard */
.hero-visual {
  animation: heroFadeUp .7s .15s ease both;
}

.dash-frame {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--border);
  overflow: hidden;
  position: relative;
}

.dash-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
  z-index: 2;
}

.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #FAFAFA;
  border-bottom: 1px solid var(--border);
}

.traffic-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.traffic-dot.r {
  background: #FF5F57;
}

.traffic-dot.y {
  background: #FEBC2E;
}

.traffic-dot.g {
  background: #28C840;
}

.dash-url {
  flex: 1;
  margin: 0 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-body);
}

.dash-layout {
  display: grid;
  grid-template-columns: 152px 1fr 158px;
  min-height: 340px;
}

/* Sidebar */
.dash-sidebar {
  background: #1C3B51;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ds-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  padding: 4px 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ds-brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.ds-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--transition);
}

.ds-item:hover {
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .06);
}

.ds-item.active {
  background: rgba(212, 164, 70, .3);
  color: #A5B4FC;
}

.ds-icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .7;
}

/* Calendar main */
.dash-main {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
}

.dm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dm-month {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.dm-nav {
  display: flex;
  gap: 4px;
}

.dm-nav-btn {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-2);
  cursor: pointer;
}

.cal-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-head-cell {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-3);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-cell {
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.cal-cell:hover {
  background: var(--bg);
}

.cal-cell.dim {
  color: #D4CCBE;
}

.cal-cell.today {
  background: var(--grad-primary) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 50%;
}

.cal-cell.has-dot::after {
  content: '';
  position: absolute;
  bottom: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.apt-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}

.apt-list-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 2px;
}

.apt-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 7px;
  font-size: 12px;
  border-left: 3px solid;
}

.apt-chip.indigo {
  background: #FDF6E7;
  border-color: var(--primary);
  color: #B8892E;
}

.apt-chip.violet {
  background: var(--accent-light);
  border-color: var(--accent);
  color: #6D28D9;
}

.apt-chip.emerald {
  background: #ECFDF5;
  border-color: var(--success);
  color: #059669;
}

.apt-chip strong {
  font-weight: 700;
}

.apt-chip span {
  opacity: .7;
}

/* Right panel */
.dash-right {
  border-left: 1px solid var(--border);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FAFAFA;
}

.dr-title {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .7px;
}

.client-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.c-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.c-info .c-name {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text);
}

.c-info .c-time {
  font-size: 9.5px;
  color: var(--text-3);
}

.rev-card {
  background: var(--grad-primary);
  border-radius: 10px;
  padding: 12px;
  color: #fff;
}

.rev-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  opacity: .8;
}

.rev-amount {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  margin: 2px 0;
}

.rev-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, .2);
  border-radius: var(--radius-full);
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 600;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  margin-top: 8px;
}

.mini-bar {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: rgba(255, 255, 255, .25);
}

.mini-bar.hi {
  background: rgba(255, 255, 255, .7);
}

/* ============================================================
   TRUSTED BY
============================================================ */
#trusted {
  padding: 52px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 28px;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.logo-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-3);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.logo-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.logo-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-2);
}

/* Brand logo chips - white card, proper padding for real logos */
.logo-chip-brand {
  padding: 16px 28px;
  min-height: 68px;
  min-width: 90px;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
  filter: grayscale(0.15) opacity(0.85);
  transition: var(--transition);
}

.logo-chip-brand:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
  border-color: rgba(0, 0, 0, .12);
}

.logo-chip-brand svg {
  display: block;
}

/* Why section responsive grid */
@media (max-width: 900px) {
  .why-split {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   FEATURES
============================================================ */
#features {
  background: var(--bg);
}

.features-intro {
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--grad-primary);
  transition: height .3s ease;
  z-index: 0;
  opacity: 0;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 164, 70, .3);
  box-shadow: var(--shadow-color);
}

.feat-card:hover .feat-icon-wrap {
  background: var(--grad-primary);
  border-color: transparent;
}

.feat-card:hover .feat-icon-wrap svg {
  color: #fff;
}

.feat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  border: 1.5px solid rgba(212, 164, 70, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.feat-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.feat-title {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 9px;
}

.feat-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============================================================
   PRODUCT PREVIEW
============================================================ */
#preview {
  background: #1C3B51;
  padding: var(--section-pad);
  overflow: hidden;
  position: relative;
}

#preview::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212, 164, 70, .15) 0%, transparent 70%);
  pointer-events: none;
}

#preview .section-label {
  background: rgba(212, 164, 70, .2);
  border-color: rgba(99, 102, 241, .3);
  color: #A5B4FC;
}

#preview .section-heading {
  color: #F1F5F9;
}

#preview .section-sub {
  color: #7F8182;
}

.preview-frame {
  margin-top: 56px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.preview-topbar {
  background: #1E293B;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.preview-topbar .dots {
  display: flex;
  gap: 6px;
}

.preview-url {
  flex: 1;
  margin: 0 12px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
}

.preview-badges {
  display: flex;
  gap: 6px;
  margin-left: auto;
}

.preview-badge {
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 10.5px;
  font-weight: 600;
}

.pb-gray {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .4);
}

.pb-green {
  background: rgba(16, 185, 129, .15);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, .25);
}

.preview-body {
  display: grid;
  grid-template-columns: 180px 1fr 200px;
  min-height: 420px;
}

.prev-sidebar {
  background: #0D1424;
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  flex-direction: column;
}

.prev-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  padding: 0 6px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prev-brand-dot {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.prev-nav-group {
  margin-bottom: 6px;
}

.prev-nav-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, .2);
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 0 10px 6px;
  margin-top: 10px;
  display: block;
}

.prev-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 1px;
}

.prev-item:hover {
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .05);
}

.prev-item.active {
  background: rgba(212, 164, 70, .25);
  color: #A5B4FC;
  font-weight: 600;
}

.prev-item.active .prev-item-icon {
  opacity: 1;
}

.prev-item-icon {
  font-size: 14px;
  opacity: .5;
}

.upgrade-card {
  margin-top: auto;
  background: rgba(212, 164, 70, .15);
  border: 1px solid rgba(212, 164, 70, .3);
  border-radius: 10px;
  padding: 12px;
  margin-top: 20px;
}

.upgrade-card .uc-title {
  font-size: 12px;
  font-weight: 700;
  color: #818CF8;
  text-transform: uppercase;
  letter-spacing: .6px;
}

.upgrade-card .uc-desc {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .35);
  margin: 4px 0 10px;
  line-height: 1.5;
}

.upgrade-btn {
  display: block;
  background: var(--grad-primary);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  border-radius: 7px;
}

/* Calendar center */
.prev-center {
  background: #1E293B;
  padding: 18px;
}

.prev-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.prev-cal-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: #F1F5F9;
}

.prev-cal-controls {
  display: flex;
  gap: 5px;
}

.pc-btn {
  padding: 5px 11px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.pc-btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .45);
  border-color: rgba(255, 255, 255, .08);
}

.pc-btn-active {
  background: var(--grad-primary);
  color: #fff;
}

.week-grid {
  display: grid;
  grid-template-columns: 40px repeat(7, 1fr);
  gap: 3px;
}

.wg-time-col {
  display: flex;
  flex-direction: column;
}

.wg-time-spacer {
  height: 48px;
}

.wg-time-label {
  height: 44px;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, .25);
}

.wg-day-col {
  display: flex;
  flex-direction: column;
}

.wg-day-head {
  text-align: center;
  padding-bottom: 8px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.wg-day-name {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, .3);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.wg-day-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  margin-top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wg-day-num.today {
  background: var(--grad-primary);
  color: #fff;
}

.wg-cell {
  height: 44px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, .04);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.wg-cell:hover {
  background: rgba(255, 255, 255, .04);
}

.wg-apt {
  position: absolute;
  left: 2px;
  right: 2px;
  border-radius: 5px;
  padding: 3px 6px;
  font-size: 9.5px;
  font-weight: 600;
  overflow: hidden;
  line-height: 1.4;
}

.wg-apt-name {
  font-weight: 700;
}

.wg-apt-type {
  opacity: .7;
  font-weight: 400;
  font-size: 8.5px;
}

.wg-apt.ind {
  background: rgba(212, 164, 70, .3);
  color: #A5B4FC;
  border-left: 3px solid #6366F1;
  top: 2px;
  height: 40px;
}

.wg-apt.vio {
  background: rgba(96, 155, 143, .3);
  color: #C4B5FD;
  border-left: 3px solid #8B5CF6;
  top: 0;
  height: 88px;
}

.wg-apt.em {
  background: rgba(16, 185, 129, .2);
  color: #6EE7B7;
  border-left: 3px solid #609B8F;
  top: 2px;
  height: 40px;
}

.wg-apt.ora {
  background: rgba(245, 158, 11, .2);
  color: #FCD34D;
  border-left: 3px solid #D4A446;
  top: 2px;
  height: 55px;
}

/* Right panel */
.prev-right {
  background: #0D1424;
  border-left: 1px solid rgba(255, 255, 255, .05);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pr-section-title {
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .25);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}

.pr-client {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.pr-client:last-child {
  border-bottom: none;
}

.pr-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.pr-name {
  font-size: 11.5px;
  font-weight: 600;
  color: #E8E3D8;
}

.pr-time {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
}

.pr-rev-card {
  background: var(--grad-primary);
  border-radius: 12px;
  padding: 14px;
}

.pr-rev-label {
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pr-rev-amount {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.pr-rev-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, .2);
  border-radius: var(--radius-full);
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

.pr-chart {
  background: rgba(255, 255, 255, .04);
  border-radius: 9px;
  padding: 12px;
}

.pr-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  margin-top: 6px;
}

.pr-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(212, 164, 70, .35);
  transition: .18s;
}

.pr-bar:hover {
  background: #6366F1;
}

.pr-bar.hi {
  background: #818CF8;
}

/* Highlights */
.preview-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ph-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.ph-card:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(99, 102, 241, .3);
}

.ph-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
  background: rgba(212, 164, 70, .2);
  border: 1px solid rgba(212, 164, 70, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ph-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 6px;
}

.ph-desc {
  font-size: 13.5px;
  color: #64748B;
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
#how {
  background: var(--card);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.steps-connector {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), rgba(212, 164, 70, .4), var(--primary-light));
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 8px var(--card), var(--shadow-sm);
  transition: var(--transition);
}

.step:nth-child(odd) .step-bubble {
  background: var(--primary-light);
  border-color: rgba(212, 164, 70, .3);
}

.step:hover .step-bubble {
  background: var(--grad-primary);
  border-color: transparent;
  transform: scale(1.08);
}

.step-num {
  position: absolute;
  top: -6px;
  right: calc(50% - 32px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================================
   INTEGRATIONS
============================================================ */
#integrations {
  background: var(--bg);
}

.int-intro-text {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin: 14px auto 52px;
}

.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.int-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.int-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 164, 70, .3);
  box-shadow: var(--shadow-color);
}

.int-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: var(--bg);
  border: 1.5px solid var(--border);
}

.int-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.int-tag {
  font-size: 11.5px;
  color: var(--text-3);
}

.int-card.more {
  border-style: dashed;
  background: var(--bg);
}

.int-card.more .int-icon {
  font-size: 20px;
  color: var(--text-3);
  background: transparent;
}

.int-card.more .int-name {
  color: var(--text-2);
}

/* ============================================================
   PRICING
============================================================ */
#pricing {
  background: var(--card);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 0;
  font-size: 14px;
  color: var(--text-2);
}

.toggle-track {
  width: 42px;
  height: 23px;
  background: var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.toggle-track.on {
  background: var(--grad-primary);
}

.toggle-thumb {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.toggle-track.on .toggle-thumb {
  left: 22px;
}

.save-badge {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--radius-full);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  align-items: start;
}

.price-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  background: #1C3B51;
  border-color: transparent;
  box-shadow: var(--shadow-xl);
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.featured-ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: .4px;
  box-shadow: 0 4px 14px rgba(212, 164, 70, .4);
}

.plan-badge {
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.price-card.featured .plan-badge {
  color: #818CF8;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-card.featured .price-amount {
  color: #fff;
}

.price-period {
  font-size: 15px;
  color: var(--text-3);
}

.price-card.featured .price-period {
  color: rgba(255, 255, 255, .4);
}

.price-tagline {
  font-size: 13.5px;
  color: var(--text-2);
  margin-bottom: 26px;
}

.price-card.featured .price-tagline {
  color: rgba(255, 255, 255, .45);
}

.price-sep {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}

.price-card.featured .price-sep {
  background: rgba(255, 255, 255, .1);
}

.price-feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 28px;
}

.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.price-card.featured .pf-item {
  color: rgba(255, 255, 255, .75);
}

.pf-check {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: #DCFCE7;
  border: 1.5px solid #BBF7D0;
  color: #15803D;
}

.price-card.featured .pf-check {
  background: rgba(212, 164, 70, .3);
  border-color: rgba(129, 140, 248, .3);
  color: #A5B4FC;
}

.btn-plan {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-plan-default {
  background: var(--bg);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-plan-default:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-plan-featured {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(212, 164, 70, .4);
}

.btn-plan-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 164, 70, .5);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  background: var(--bg);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.test-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 164, 70, .2);
}

.test-stars {
  color: #FBBF24;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.test-quote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.78;
  font-style: italic;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
  padding-left: 18px;
}

.test-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 40px;
  color: var(--primary);
  opacity: .2;
  font-family: Georgia, serif;
  line-height: 1;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.test-name {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}

.test-role {
  font-size: 12.5px;
  color: var(--text-3);
}

/* ============================================================
   FINAL CTA
============================================================ */
#cta {
  background: linear-gradient(135deg, #1C3B51 0%, #0D2535 50%, #1C3B51 100%);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, .25) 0%, transparent 65%);
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 155, 143, .2) 0%, transparent 65%);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner .section-label {
  background: rgba(99, 102, 241, .2);
  border-color: rgba(129, 140, 248, .3);
  color: #A5B4FC;
  margin-bottom: 24px;
}

#cta .section-heading {
  color: #fff;
}

#cta .section-sub {
  color: rgba(255, 255, 255, .55);
  margin: 14px auto 38px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, .3);
}

.cta-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.cta-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cta-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-top: 4px;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #020617;
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  color: #fff;
  margin-bottom: 14px;
}

.footer-logo .logo-mark {
  box-shadow: none;
}

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.soc {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--transition);
}

.soc:hover {
  background: rgba(212, 164, 70, .3);
  border-color: rgba(212, 164, 70, .4);
  color: #A5B4FC;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .35);
  transition: var(--transition);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, .85);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
  transition: var(--transition);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .6);
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-visual .dash-frame {
  animation: floatY 5s ease-in-out infinite;
}

/* Reveal animations - only hidden when JS is confirmed active (html.js class).
   Without JS, all content is visible immediately (no flash of invisible content). */
html.js .reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

html.js .reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

html.js .reveal-up:nth-child(2) {
  transition-delay: .08s;
}

html.js .reveal-up:nth-child(3) {
  transition-delay: .16s;
}

html.js .reveal-up:nth-child(4) {
  transition-delay: .24s;
}

html.js .reveal-up:nth-child(5) {
  transition-delay: .32s;
}

html.js .reveal-up:nth-child(6) {
  transition-delay: .40s;
}

html.js .stagger-1 {
  transition-delay: .05s !important;
}

html.js .stagger-2 {
  transition-delay: .12s !important;
}

html.js .stagger-3 {
  transition-delay: .19s !important;
}

html.js .stagger-4 {
  transition-delay: .26s !important;
}

html.js .stagger-5 {
  transition-delay: .33s !important;
}

/* ============================================================
   RESPONSIVE - TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .dash-frame {
    max-width: 640px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-body {
    grid-template-columns: 160px 1fr;
  }

  .prev-right {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }

  .footer-top .footer-col:nth-child(5) {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  .nav-links,
  .nav-actions {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-actions .btn-lg {
    padding: 13px 24px;
    font-size: 15px;
  }

  .logo-strip {
    gap: 8px;
  }

  .logo-chip {
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feat-card {
    padding: 24px;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .prev-sidebar {
    display: none;
  }

  .preview-highlights {
    grid-template-columns: 1fr;
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .steps-connector {
    display: none;
  }

  .step {
    max-width: 320px;
  }

  .int-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 52px auto 0;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-4px);
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .cta-stats {
    flex-direction: column;
    gap: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top>div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .int-grid {
    grid-template-columns: 1fr;
  }

  .dash-layout {
    grid-template-columns: 120px 1fr;
  }

  .dash-right {
    display: none;
  }
}

/* ============================================================
   FINBOOKS360 - Brand Overrides & Enhancements
============================================================ */

/* Logo image in nav */
.logo img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform .22s ease;
  box-shadow: 0 2px 10px rgba(212, 164, 70, .25);
}

.logo:hover img {
  transform: scale(1.06);
}

/* Logo text - tighter, more refined sizing */
.logo span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--text);
  line-height: 1;
}

/* Section label - use gold/teal brand */
.section-label {
  color: #B8892E;
  background: #FDF6E7;
  border-color: rgba(212, 164, 70, .25);
}

/* Hero gradient updated to navy-teal feel */
#hero {
  background: linear-gradient(160deg, #F0EBE0 0%, #E8F4F1 55%, #F9F7F2 100%);
}

/* text gradient - gold to teal */
.text-gradient {
  background: linear-gradient(135deg, #D4A446 0%, #609B8F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA section override */
#cta {
  background: linear-gradient(135deg, #1C3B51 0%, #0D2535 100%);
}

/* Trusted by section */
#trusted {
  background: #F0EBE0;
}

.logo-chip-dot {
  background: #D4A446;
}

/* Feature icon wrap */
.feat-icon-wrap {
  background: linear-gradient(135deg, rgba(212, 164, 70, .15), rgba(96, 155, 143, .1));
  border-color: rgba(212, 164, 70, .2);
  color: #D4A446;
}

.feat-card:hover .feat-icon-wrap {
  background: linear-gradient(135deg, rgba(212, 164, 70, .25), rgba(96, 155, 143, .15));
  border-color: #D4A446;
}

/* Steps */
.step-bubble {
  background: linear-gradient(135deg, #1C3B51, #0D2535);
}

.step-num {
  background: #D4A446;
}

/* Integrations */
.int-card:hover {
  border-color: #D4A446;
}

/* Pricing featured card */
.price-card.featured {
  border-color: #D4A446;
  box-shadow: 0 12px 48px rgba(212, 164, 70, .2);
}

.featured-ribbon {
  background: linear-gradient(135deg, #D4A446, #B8892E);
}

.btn-plan-featured {
  background: linear-gradient(135deg, #D4A446, #609B8F);
  color: #fff;
}

.btn-plan-featured:hover {
  box-shadow: 0 12px 32px rgba(212, 164, 70, .35);
  transform: translateY(-2px);
}

/* Testimonials */
.test-stars {
  color: #D4A446;
}

/* Footer */
#footer {
  background: linear-gradient(135deg, #1C3B51 0%, #0D2535 100%);
}

/* Scrollbar theming */
::-webkit-scrollbar-thumb {
  background: #D4A446;
}

::-webkit-scrollbar-thumb:hover {
  background: #B8892E;
}

/* Mini bars in dashboard mockup */
.mini-bar {
  background: rgba(212, 164, 70, .3);
}

.mini-bar.hi {
  background: #D4A446;
}

/* Revenue badge */
.rev-badge {
  background: rgba(96, 155, 143, .2);
  color: #609B8F;
}

/* Calendar today dot */
.cal-cell.today {
  background: #D4A446;
  color: #fff;
}

/* Appointment chips */
.apt-chip.indigo {
  background: rgba(28, 59, 81, .12);
  border-left-color: #1C3B51;
}

.apt-chip.violet {
  background: rgba(96, 155, 143, .1);
  border-left-color: #609B8F;
}

.apt-chip.emerald {
  background: rgba(212, 164, 70, .1);
  border-left-color: #D4A446;
}

/* Preview bars */
.pr-bar {
  background: rgba(212, 164, 70, .3);
}

.pr-bar.hi {
  background: #D4A446;
}

/* Week view appointments */
.wg-apt.ind {
  background: rgba(28, 59, 81, .85);
  border-left-color: #D4A446;
}

.wg-apt.vio {
  background: rgba(96, 155, 143, .85);
  border-left-color: #609B8F;
}

.wg-apt.em {
  background: rgba(212, 164, 70, .85);
  border-left-color: #fff;
  color: #1C3B51;
}

.wg-apt.ora {
  background: rgba(73, 87, 89, .85);
  border-left-color: #D4A446;
}

/* ================================================================
   FINBOOKS360 - COMPREHENSIVE VISUAL POLISH FIX v2
   Fixes: hover visibility, button arrows, text contrast, icon quality
================================================================ */

/* ── 1. PURGE ALL REMAINING PURPLE REMNANTS ── */
.prev-item.active {
  background: rgba(212, 164, 70, .18) !important;
  color: #D4A446 !important;
}

.ph-card:hover {
  border-color: rgba(212, 164, 70, .35) !important;
  background: rgba(255, 255, 255, .08) !important;
}

#preview .section-label {
  color: #D4A446 !important;
  background: rgba(212, 164, 70, .15) !important;
  border-color: rgba(212, 164, 70, .3) !important;
}

.price-card.featured .plan-badge {
  color: #D4A446 !important;
}

.price-card.featured .pf-check {
  background: rgba(212, 164, 70, .2) !important;
  border-color: rgba(212, 164, 70, .3) !important;
  color: #F5C97A !important;
}

.pr-bar.hi {
  background: #D4A446 !important;
}

.pr-bar:hover {
  background: #B8892E !important;
}

/* ── 2. FIX INVISIBLE TEXT ON DARK SECTIONS ── */
/* ph-desc is on dark navy #1C3B51 bg - needs to be light */
.ph-desc {
  color: rgba(255, 255, 255, .58) !important;
}

.ph-title {
  color: #F5EDD8 !important;
}

#preview .section-sub {
  color: rgba(255, 255, 255, .55) !important;
}

/* Soc hover color fix */
.soc:hover {
  color: #D4A446 !important;
}

/* ── 3. BUTTON PREMIUM REDESIGN ── */
/* Primary CTA - rich gold with depth */
.btn-primary {
  background: linear-gradient(135deg, #D4A446 0%, #C09030 40%, #609B8F 100%) !important;
  box-shadow: 0 4px 24px rgba(212, 164, 70, .4), inset 0 1px 0 rgba(255, 255, 255, .2) !important;
  border: none !important;
  font-weight: 700 !important;
  letter-spacing: .25px !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E2B455 0%, #D4A446 40%, #72ADA1 100%) !important;
  box-shadow: 0 8px 36px rgba(212, 164, 70, .5), inset 0 1px 0 rgba(255, 255, 255, .25) !important;
  transform: translateY(-2px) !important;
}

/* Outline button - clean with navy border, no white-on-white */
.btn-outline {
  background: transparent !important;
  color: #1C3B51 !important;
  border: 2px solid rgba(28, 59, 81, .3) !important;
  box-shadow: none !important;
}

.btn-outline:hover {
  background: #1C3B51 !important;
  color: #fff !important;
  border-color: #1C3B51 !important;
  transform: translateY(-1px) !important;
}

.btn-outline svg {
  color: inherit !important;
}

/* Ghost white - already on dark bg, keep but enhance */
.btn-ghost-white {
  background: rgba(255, 255, 255, .1) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, .3) !important;
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .2) !important;
  border-color: rgba(255, 255, 255, .55) !important;
}

/* Button arrow - make it pop with proper size */
.btn {
  font-size: 15px !important;
}

.btn-sm {
  font-size: 13px !important;
  padding: 9px 20px !important;
}

.btn-lg {
  font-size: 16.5px !important;
  padding: 15px 36px !important;
  letter-spacing: .2px !important;
}

/* Nav primary btn */
.nav-actions .btn-primary {
  font-size: 14px !important;
  padding: 10px 22px !important;
}

/* ── 4. FEAT-CARD HOVER - NAVY FILL, WHITE TEXT ── */
.feat-card:hover {
  background: #1C3B51 !important;
  border-color: #D4A446 !important;
  box-shadow: 0 16px 48px rgba(28, 59, 81, .25) !important;
}

.feat-card:hover .feat-title {
  color: #fff !important;
}

.feat-card:hover .feat-desc {
  color: rgba(255, 255, 255, .65) !important;
}

.feat-card:hover .feat-icon-wrap {
  background: rgba(212, 164, 70, .25) !important;
  border-color: rgba(212, 164, 70, .5) !important;
}

.feat-card:hover .feat-icon-wrap svg {
  color: #D4A446 !important;
}

/* ── 5. FEATURE ICONS - PROFESSIONAL WEIGHT ── */
.feat-icon-wrap {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: linear-gradient(145deg, rgba(212, 164, 70, .12) 0%, rgba(96, 155, 143, .1) 100%) !important;
  border: 1.5px solid rgba(212, 164, 70, .25) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 2px 8px rgba(212, 164, 70, .08) !important;
}

.feat-icon-wrap svg {
  width: 24px !important;
  height: 24px !important;
  color: #B8892E !important;
  stroke-width: 2.5 !important;
}

/* ── 6. INTEGRATION CARD HOVER - MAINTAIN TEXT CONTRAST ── */
.int-card:hover {
  background: #1C3B51 !important;
  border-color: #D4A446 !important;
  box-shadow: 0 12px 36px rgba(28, 59, 81, .2) !important;
}

.int-card:hover .int-name {
  color: #fff !important;
}

.int-card:hover .int-tag {
  color: rgba(255, 255, 255, .55) !important;
}

.int-card:hover .int-icon {
  background: rgba(212, 164, 70, .2) !important;
  border-color: rgba(212, 164, 70, .3) !important;
}

/* ── 7. STEP BUBBLE & CONNECTOR ── */
.step-bubble {
  background: white !important;
  border: 2px solid rgba(212, 164, 70, .3) !important;
  box-shadow: 0 0 0 6px rgba(212, 164, 70, .08), 0 4px 12px rgba(0, 0, 0, .08) !important;
}

.step:nth-child(odd) .step-bubble {
  background: rgba(212, 164, 70, .08) !important;
}

.step:hover .step-bubble {
  background: linear-gradient(135deg, #1C3B51, #0D2535) !important;
  border-color: #D4A446 !important;
  box-shadow: 0 0 0 6px rgba(212, 164, 70, .12), 0 8px 24px rgba(28, 59, 81, .25) !important;
}

/* ── 8. PRICING BUTTON DEFAULTS - ENSURE VISIBILITY ── */
.btn-plan-default {
  background: #F0EBE0 !important;
  color: #1C3B51 !important;
  border: 1.5px solid rgba(212, 164, 70, .3) !important;
  font-weight: 700 !important;
}

.btn-plan-default:hover {
  background: #1C3B51 !important;
  color: #fff !important;
  border-color: #1C3B51 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(28, 59, 81, .2) !important;
}

.btn-plan-featured {
  background: linear-gradient(135deg, #D4A446 0%, #B8892E 50%, #609B8F 100%) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(212, 164, 70, .4), inset 0 1px 0 rgba(255, 255, 255, .2) !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
}

.btn-plan-featured:hover {
  background: linear-gradient(135deg, #E2B455 0%, #D4A446 50%, #72ADA1 100%) !important;
  box-shadow: 0 10px 32px rgba(212, 164, 70, .5) !important;
  transform: translateY(-2px) !important;
}

/* ── 9. TESTIMONIAL CARDS ── */
.test-card {
  border-color: rgba(212, 164, 70, .15) !important;
  background: #fff !important;
}

.test-card:hover {
  border-color: rgba(212, 164, 70, .35) !important;
  box-shadow: 0 16px 48px rgba(28, 59, 81, .1) !important;
  transform: translateY(-4px) !important;
}

/* ── 10. CTA FORM INPUTS - VISIBLE ON DARK BG ── */
#cta input {
  background: rgba(255, 255, 255, .12) !important;
  border: 1.5px solid rgba(255, 255, 255, .2) !important;
  color: #fff !important;
}

#cta input::placeholder {
  color: rgba(255, 255, 255, .45) !important;
}

#cta input:focus {
  background: rgba(255, 255, 255, .18) !important;
  border-color: #D4A446 !important;
  outline: none !important;
}

/* CTA button needs to POP on dark background */
#cta .btn-primary {
  background: linear-gradient(135deg, #D4A446, #B8892E) !important;
  color: #fff !important;
  box-shadow: 0 6px 28px rgba(212, 164, 70, .5) !important;
}

#cta .btn-primary:hover {
  background: linear-gradient(135deg, #E2B455, #D4A446) !important;
  box-shadow: 0 12px 40px rgba(212, 164, 70, .6) !important;
}

/* ── 11. NAV LINK HOVER - GOLD NOT WHITE BG ── */
.nav-links a:hover {
  color: #B8892E !important;
  background: rgba(212, 164, 70, .08) !important;
}

/* ── 12. OVERALL CARD DEPTH & SHADOWS ── */
.feat-card,
.test-card,
.int-card,
.ph-card {
  box-shadow: 0 2px 12px rgba(28, 59, 81, .06), 0 1px 3px rgba(0, 0, 0, .04) !important;
}

/* ── 13. REVENUE CARD IN DASHBOARD MOCKUP ── */
.rev-card {
  background: linear-gradient(135deg, #1C3B51, #0D2535) !important;
}

.rev-label {
  color: rgba(255, 255, 255, .6) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
}

.rev-amount {
  color: #D4A446 !important;
  font-family: var(--font-head) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
}

/* ── 14. PREVIEW SECTION TOPBAR BADGE COLORS ── */
.pb-green {
  color: #609B8F !important;
  background: rgba(96, 155, 143, .15) !important;
  border-color: rgba(96, 155, 143, .2) !important;
}

/* ── 15. HERO OUTLINE BUTTON (Watch Demo) - visible on cream bg ── */
#hero .btn-outline {
  background: rgba(28, 59, 81, .06) !important;
  color: #1C3B51 !important;
  border: 2px solid rgba(28, 59, 81, .2) !important;
}

#hero .btn-outline:hover {
  background: #1C3B51 !important;
  color: #fff !important;
  border-color: #1C3B51 !important;
}

#hero .btn-outline svg {
  stroke: currentColor !important;
}


/* ── INTEGRATION ICON SVG SIZING & COLOR ── */
.int-icon svg {
  color: #B8892E;
  transition: color .22s;
}

.int-icon {
  background: linear-gradient(145deg, rgba(212, 164, 70, .1), rgba(96, 155, 143, .08)) !important;
  border: 1.5px solid rgba(212, 164, 70, .2) !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 2px 8px rgba(212, 164, 70, .06) !important;
}

.int-card:hover .int-icon svg {
  color: #D4A446 !important;
}

.int-card.more .int-icon svg {
  color: var(--text-3) !important;
}

.int-card.more:hover .int-icon svg {
  color: rgba(255, 255, 255, .6) !important;
}

/* ── STEP ICONS - SVG BASED ── */
.step-bubble {
  font-size: 20px !important;
}

/* ── HERO TRUST AVATAR CIRCLES ── */
.hero-trust-avatars span {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  color: #fff !important;
  border: 2.5px solid #F9F7F2 !important;
  margin-left: -8px !important;
}

.hero-trust-avatars span:first-child {
  margin-left: 0 !important;
}

.hero-trust {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: 24px !important;
}

.hero-trust>span {
  font-size: 13.5px !important;
  color: #F1F5F9 !important;
}

/* ── PREVIEW SECTION ph-icon override ── */
.ph-icon svg {
  width: 22px !important;
  height: 22px !important;
  color: #D4A446 !important;
}

.ph-icon {
  font-size: 0 !important;
}

/* ── HERO BUTTON FONT SIZE ── */
#hero .btn-lg {
  font-size: 16.5px !important;
  padding: 15px 36px !important;
}

#hero .hero-actions {
  gap: 14px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}

/* ── UPGRADE BTN IN PREVIEW PANEL ── */
.upgrade-btn {
  background: linear-gradient(135deg, #D4A446, #B8892E) !important;
  color: #1C3B51 !important;
  font-weight: 700 !important;
  border-radius: 7px !important;
  padding: 7px 14px !important;
  font-size: 12px !important;
  display: inline-block !important;
  margin-top: 8px !important;
}

.upgrade-btn:hover {
  background: linear-gradient(135deg, #E2B455, #D4A446) !important;
}

/* ── SECTION HEADINGS ON DARK BG ── */
#preview .section-heading {
  color: #F5EDD8 !important;
}

#cta .section-heading {
  color: #fff !important;
}

#cta .section-sub {
  color: rgba(255, 255, 255, .65) !important;
}

/* ── PREV-ITEM ACTIVE fix ── */
.prev-item.active {
  color: #D4A446 !important;
  background: rgba(212, 164, 70, .15) !important;
  font-weight: 600 !important;
}

/* ── TODAY CALENDAR CELL ── */
.cal-cell.today {
  background: #D4A446 !important;
  color: #fff !important;
  font-weight: 800 !important;
}

.wg-day-num.today {
  background: linear-gradient(135deg, #D4A446, #B8892E) !important;
  color: #fff !important;
}

/* ── PRICE PLAN CHECK MARKS ── */
.pf-check {
  background: rgba(96, 155, 143, .15) !important;
  border-color: rgba(96, 155, 143, .3) !important;
  color: #609B8F !important;
}

.price-card.featured .pf-check {
  background: rgba(212, 164, 70, .2) !important;
  border-color: rgba(212, 164, 70, .3) !important;
  color: #F5C97A !important;
}

/* ── FOOTER SOC ICON HOVER ── */
.soc {
  cursor: pointer;
  transition: var(--transition) !important;
}

.soc:hover {
  background: rgba(212, 164, 70, .25) !important;
  color: #D4A446 !important;
  border-color: rgba(212, 164, 70, .4) !important;
}

/* ── STEP BUBBLE SVG SIZING ── */
.step-bubble svg {
  color: #B8892E;
  transition: color .22s;
}

.step-bubble {
  font-size: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.step:hover .step-bubble svg {
  color: #D4A446 !important;
}

.step:nth-child(odd) .step-bubble svg {
  color: #609B8F;
}

/* ── PH-ICON SVG SIZING ── */
.ph-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 13px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(212, 164, 70, .18) !important;
  border: 1.5px solid rgba(212, 164, 70, .3) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15) !important;
}

.ph-icon svg {
  color: #D4A446 !important;
}

/* ── STEP SVG SIZES ── */
.step-bubble svg {
  width: 26px !important;
  height: 26px !important;
}

/* ── STEP TITLE & DESC ── */
.step-title {
  font-size: 14.5px !important;
  font-weight: 700 !important;
}

.step-desc {
  font-size: 13px !important;
  color: #495759 !important;
}

/* ── MAKE ARROWS IN BUTTONS BOLD ── */
.btn::before {
  font-size: inherit;
}

/* ── HERO EYEBROW BADGE ── */
.hero-eyebrow .section-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 6px 16px !important;
}

/* ── BETTER CARD RADIUS ── */
.feat-card,
.int-card,
.test-card,
.price-card {
  border-radius: 18px !important;
}

.ph-card {
  border-radius: 16px !important;
}

/* ── PRICING TOGGLE SAVE BADGE ── */
.save-badge {
  background: rgba(96, 155, 143, .15) !important;
  color: #609B8F !important;
  border-color: rgba(96, 155, 143, .25) !important;
  font-weight: 700 !important;
}

/* ── SECTION LABEL ON DARK ── */
#how .section-label,
#testimonials .section-label,
#pricing .section-label,
#integrations .section-label,
#features .section-label {
  font-size: 11.5px !important;
  font-weight: 700 !important;
}

/* ── FOOTER LINKS ── */
.footer-col h5 {
  color: #D4A446 !important;
  letter-spacing: 1px !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  margin-bottom: 16px !important;
}

.footer-links a {
  color: rgba(255, 255, 255, .55) !important;
  font-size: 14px !important;
  transition: color .2s !important;
}

.footer-links a:hover {
  color: #D4A446 !important;
}

/* ── CTA STAT NUMBERS ── */
.cta-stat-num {
  color: #D4A446 !important;
  font-family: var(--font-head) !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.cta-stat-label {
  color: rgba(255, 255, 255, .55) !important;
  font-size: 14px !important;
  margin-top: 5px !important;
}

/* ================================================================
   FINBOOKS360 - v3 POLISH: Login button, no arrows, revenue hidden
================================================================ */

/* ── NAV LOGIN BUTTON - Premium pill with icon ── */
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: #1C3B51;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1.5px solid rgba(28, 59, 81, .2);
  background: rgba(28, 59, 81, .04);
  transition: all .22s cubic-bezier(.4, 0, .2, 1);
  letter-spacing: .1px;
}

.nav-login-btn svg {
  color: #B8892E;
  flex-shrink: 0;
  transition: transform .22s;
}

.nav-login-btn:hover {
  background: #1C3B51;
  color: #fff;
  border-color: #1C3B51;
  box-shadow: 0 4px 16px rgba(28, 59, 81, .2);
}

.nav-login-btn:hover svg {
  color: #D4A446;
  transform: translateX(2px);
}

/* ── REMOVE ALL → ARROWS from buttons via CSS too ── */
/* (belt-and-suspenders - already removed in HTML) */

/* ── HIDE REVENUE CARD - show booking count instead ── */
.rev-amount {
  color: #D4A446 !important;
}

.rev-label {
  color: rgba(255, 255, 255, .55) !important;
  letter-spacing: .8px !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
}

.rev-badge {
  background: rgba(96, 155, 143, .25) !important;
  color: #7DC4B8 !important;
  border: 1px solid rgba(96, 155, 143, .3) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 3px 9px !important;
  border-radius: 99px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

/* pr-rev-card (preview section) - style consistently */
.pr-rev-card {
  background: linear-gradient(135deg, #1C3B51 0%, #0D2535 100%) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  border: 1px solid rgba(212, 164, 70, .15) !important;
}

.pr-rev-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: rgba(255, 255, 255, .5) !important;
  margin-bottom: 6px !important;
}

.pr-rev-amount {
  font-family: var(--font-head) !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #D4A446 !important;
  line-height: 1.1 !important;
  margin-bottom: 6px !important;
}

.pr-rev-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #7DC4B8 !important;
  background: rgba(96, 155, 143, .2) !important;
  padding: 3px 10px !important;
  border-radius: 99px !important;
  border: 1px solid rgba(96, 155, 143, .25) !important;
}

/* ── GET STARTED button - no arrow, refined sizing ── */
.nav-actions .btn-primary {
  border-radius: 99px !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  letter-spacing: .2px !important;
  box-shadow: 0 3px 14px rgba(212, 164, 70, .35) !important;
}

.nav-actions .btn-primary:hover {
  box-shadow: 0 6px 22px rgba(212, 164, 70, .5) !important;
  transform: translateY(-1px) !important;
}

/* ── BTN-SM gets pill shape too in nav ── */
.btn-sm {
  border-radius: 99px !important;
}

/* ── CTA stat - remove revenue, show $value generically ── */
.cta-stat-num {
  font-size: 34px !important;
  font-weight: 800 !important;
  color: #D4A446 !important;
  line-height: 1 !important;
  font-family: var(--font-head) !important;
}

/* ── WATCH DEMO btn - refined play icon style ── */
#hero .btn-outline {
  gap: 10px !important;
  font-weight: 600 !important;
}

#hero .btn-outline svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}

/* ── MOBILE MENU login ── */
.mobile-menu .nav-login-btn {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #1C3B51 !important;
  font-weight: 600 !important;
  padding: 10px 0 !important;
  border: none !important;
  background: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-radius: 0 !important;
}