/* ===========================================
 * EZIDASH LANDING PAGE — MAIN STYLESHEET
 * Brand Colors:
 *   Primary:   #258585 (Teal)
 *   Secondary: #43A047 (Green)
 *   Tertiary:  #00BCE4 (Cyan)
 *   Neutral:   #373D3F (Dark)
 * Font: Manrope (Google Fonts)
 * =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800;900&display=swap');

/* ─── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Manrope', sans-serif; color: #373D3F; background: #fff; overflow-x: hidden; line-height: 1.65; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ─── CSS CUSTOM PROPERTIES ─────────────────── */
:root {
  --clr-primary:      #258585;
  --clr-primary-dk:   #1b6464;
  --clr-primary-lt:   #3aa8a8;
  --clr-secondary:    #006C47;
  --clr-secondary-dk: #2e7031;
  --clr-tertiary:     #00BCE4;
  --clr-tertiary-dk:  #008fb0;
  --clr-neutral:      #373D3F;
  --clr-neutral-lt:   #5a6468;
  --clr-bg-light:     #edf6f6;
  --clr-bg-dark:      #1c2f2f;
  --clr-white:        #ffffff;
  --clr-gray-50:      #f8fafb;
  --clr-gray-100:     #f3f4f6;
  /* --clr-gray-200:     #e5e7eb; */
  --clr-gray-200:     #E5E9EB;
  --clr-gray-300:     #d1d5db;
  --clr-text:         #374151;
  --clr-text-lt:      #6b7280;
  --shadow-sm:   0 1px 4px rgba(37,133,133,.08);
  --shadow-md:   0 4px 18px rgba(37,133,133,.13);
  --shadow-lg:   0 12px 40px rgba(37,133,133,.16);
  --shadow-xl:   0 24px 64px rgba(0,0,0,.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,.07), 0 8px 32px rgba(0,0,0,.05);
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-full: 9999px;
  --radius-btn:  5px;
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
  --nav-h:       72px;
  --max-w:       1200px;
  --section-py:  96px;
}

/* ─── TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--clr-neutral); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }
p  { color: var(--clr-text-lt); font-size: 1rem; }
.text-primary    { color: var(--clr-primary)   !important; }
.text-secondary  { color: var(--clr-secondary) !important; }
.text-white      { color: var(--clr-white)     !important; }
.text-center     { text-align: center; }
.text-neutral    { color: var(--clr-neutral)   !important; }

/* ─── LAYOUT UTILITIES ──────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; }
.section-alt { background: var(--clr-gray-50); }
.section-dark { background: var(--clr-bg-dark); }
.section-primary { background: var(--clr-primary); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header .tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-bg-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(37,133,133,.18);
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex   { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0 !important; }

/* ─── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all .3s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
  pointer-events: none;
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.btn-primary:hover {
  background: var(--clr-primary-dk);
  border-color: var(--clr-primary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,133,133,.38);
}
.btn-secondary {
  background: var(--clr-secondary);
  color: var(--clr-white);
  border-color: var(--clr-secondary);
}
.btn-secondary:hover {
  background: var(--clr-secondary-dk);
  border-color: var(--clr-secondary-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67,160,71,.38);
}
.btn-outline-primary {
  background: var(--clr-gray-200);
  color: var(--clr-primary);
  /* border-color: var(--clr-primary); */
}
.btn-outline-primary:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
}
.btn-white:hover {
  background: var(--clr-bg-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; white-space: nowrap; }
.btn-sm { padding: 9px 20px; font-size: .875rem; }
.btn-red {
  background: #e53e3e;
  color: var(--clr-white);
  border-color: #e53e3e;
}
.btn-red:hover { background: #c53030; border-color: #c53030; transform: translateY(-2px); }

/* ─── NAVBAR ────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all .4s ease;
  padding: 0 24px;
  border-bottom: 1px solid #E5E9EB;
}
.navbar.transparent { background: transparent; border-bottom-color: transparent; }
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.navbar.dark-nav {
  background: var(--clr-bg-dark);
}
.navbar.dark-nav.scrolled {
  background: rgba(28,47,47,.97);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 74px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--clr-neutral);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--clr-primary);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
  transform-origin: center;
}
.nav-links a:hover { color: var(--clr-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--clr-primary); }
.navbar.dark-nav .nav-links a { color: rgba(255,255,255,.85); }
.navbar.dark-nav .nav-links a:hover { color: var(--clr-white); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login {
  font-weight: 600; font-size: .9rem;
  color: var(--clr-neutral);
  padding: 8px 14px;
  border-radius: var(--radius-btn);
  transition: all .2s;
}
.nav-login:hover { color: var(--clr-primary); background: var(--clr-bg-light); }

/* Free CRM nav link with icon */
.nav-crm-link {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
  line-height: 1;
}
.nav-crm-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.navbar.dark-nav .nav-login { color: rgba(255,255,255,.85); }
.navbar.dark-nav .nav-login:hover { background: rgba(255,255,255,.1); color: white; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: background .2s;
  position: relative;
  z-index: 1001; /* always above mobile-nav */
}
.hamburger:hover { background: rgba(37,133,133,.08); }
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--clr-neutral);
  border-radius: 2px;
  transition: all .3s;
}
.navbar.dark-nav .hamburger span { background: white; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 24px 40px;
}
.mobile-nav.active { display: flex; }
.mobile-nav > a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-neutral);
  transition: color .2s, border-color .2s;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.mobile-nav > a:hover { color: var(--clr-primary); border-bottom-color: var(--clr-primary); }
.mobile-nav .mobile-btns {
  display: flex; flex-direction: column;
  gap: 12px; margin-top: 12px;
  width: 100%; max-width: 260px;
}
.mobile-nav .mobile-btns .btn { width: 100%; justify-content: center; }
.mobile-nav .mobile-btns .btn-primary,
.mobile-nav .mobile-btns .btn-primary:hover { color: var(--clr-white) !important; }
.mobile-nav .mobile-btns .btn-outline-primary:hover { color: var(--clr-white) !important; }

/* ─── HERO — HOME PAGE ──────────────────────── */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #F6FAFA;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-home::before,
.hero-home::after { display: none; }
.hero-home .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,133,133,.1);
  color: var(--clr-primary);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(37,133,133,.2);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--clr-secondary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}
.hero-home h1 {
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--clr-neutral);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-home h1 .gradient-text {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #006768;
  color: #006768;
}
.hero-home .hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-lt);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Dashboard Mockup */
.hero-visual { position: relative; z-index: 2; }
.dashboard-mockup-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.dashboard-mockup-wrap::before {
  content: '';
  position: absolute;
  bottom: -30px; left: 5%; right: 5%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(37,133,133,.2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  animation: shadow-float 6s ease-in-out infinite;
}
@keyframes shadow-float {
  0%, 100% { transform: scaleX(1); opacity: .6; }
  50% { transform: scaleX(.85); opacity: .35; }
}
.app-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.05);
  overflow: hidden;
  font-size: .72rem;
}
.app-topbar {
  background: var(--clr-primary);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-topbar-logo {
  font-weight: 800;
  color: white;
  font-size: .85rem;
  letter-spacing: -.01em;
}
.app-search-bar {
  background: rgba(255,255,255,.18);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  color: rgba(255,255,255,.75);
  font-size: .7rem;
  flex: 1; max-width: 200px; margin: 0 16px;
}
.app-topbar-right { display: flex; align-items: center; gap: 8px; }
.app-avatar {
  width: 26px; height: 26px;
  background: var(--clr-secondary);
  border-radius: 50%;
}
.app-body { display: flex; min-height: 260px; }
.app-sidebar {
  width: 110px;
  background: #f8fafb;
  border-right: 1px solid var(--clr-gray-200);
  padding: 8px 0;
}
.sidebar-menu-item {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px;
  font-size: .7rem; font-weight: 500;
  color: var(--clr-text-lt);
  cursor: pointer;
  transition: all .2s;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1px 0 1px 4px;
}
.sidebar-menu-item.active {
  background: var(--clr-bg-light);
  color: var(--clr-primary);
  font-weight: 600;
}
.sidebar-menu-item:hover { background: var(--clr-bg-light); color: var(--clr-primary); }
.sidebar-icon { font-size: .8rem; }
.app-main { flex: 1; padding: 14px; }
.app-stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.app-stat {
  background: var(--clr-bg-light);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  border: 1px solid rgba(37,133,133,.12);
}
.app-stat-label { font-size: .62rem; color: var(--clr-text-lt); font-weight: 500; }
.app-stat-val { font-size: .95rem; font-weight: 800; color: var(--clr-primary); margin-top: 2px; }
.app-stat-delta { font-size: .6rem; color: var(--clr-secondary); font-weight: 600; }
.app-chart-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; margin-bottom: 12px; }
.app-chart-box {
  background: white;
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-sm);
  padding: 10px;
}
.app-chart-box-title { font-size: .65rem; font-weight: 700; color: var(--clr-neutral); margin-bottom: 8px; }
.mini-bar-chart { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.bar { background: var(--clr-primary); border-radius: 3px 3px 0 0; flex: 1; min-width: 0; opacity: .7; transition: opacity .2s; }
.bar:hover { opacity: 1; }
.bar.b1 { height: 55%; background: var(--clr-tertiary); }
.bar.b2 { height: 80%; }
.bar.b3 { height: 65%; }
.bar.b4 { height: 90%; background: var(--clr-secondary); }
.bar.b5 { height: 50%; background: var(--clr-tertiary); }
.bar.b6 { height: 75%; }
.mini-donut { position: relative; display: flex; align-items: center; justify-content: center; }
.donut-svg { width: 54px; height: 54px; }
.donut-val {
  position: absolute;
  font-size: .65rem; font-weight: 800;
  color: var(--clr-primary);
  text-align: center;
  line-height: 1;
}
.app-table-wrap { overflow-x: auto; }
.app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .67rem;
}
.app-table th {
  text-align: left;
  padding: 4px 6px;
  font-weight: 700;
  color: var(--clr-neutral-lt);
  border-bottom: 1px solid var(--clr-gray-200);
  white-space: nowrap;
}
.app-table td {
  padding: 5px 6px;
  border-bottom: 1px solid var(--clr-gray-100);
  white-space: nowrap;
  color: var(--clr-text);
}
.app-table tr:last-child td { border-bottom: none; }
.app-table tr:hover td { background: var(--clr-gray-50); }
.status-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-size: .6rem;
  font-weight: 600;
}
.status-active  { background: #d1fae5; color: #065f46; }
.status-pending { background: #fef3c7; color: #92400e; }
.status-new     { background: #dbeafe; color: #1e40af; }

/* ─── HEART SECTION ─────────────────────────── */
.heart-section {
  background: #F0F4F4;
  overflow: hidden;
  position: relative;
}
/* Overflow only inside the hub wrapper cell, not the whole container */
.heart-section .section-header { display: none; }

/* Hub wrap — SVG + absolute cards */
.hub-wrap {
  position: relative;
  width: 500px;
  height: 460px;
  flex-shrink: 0;
}
.hub-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.hub-center-circle {
  position: absolute;
  top: 175px; left: 195px;
  width: 110px; height: 110px;
  background: #006768;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  text-align: center;
  line-height: 1.35;
  letter-spacing: .02em;
  z-index: 2;
  animation: pulse-ring 3s ease-out infinite;
}
@keyframes pulse-ring {
  0%  { box-shadow: 0 0 0 0 rgba(0,103,104,.35); }
  70% { box-shadow: 0 0 0 18px rgba(0,103,104,0); }
  100%{ box-shadow: 0 0 0 0 rgba(0,103,104,0); }
}
.hub-card {
  position: absolute;
  width: 152px;
  background: #fff;
  border: 1px solid #dde8e8;
  border-radius: 14px;
  padding: 14px 12px 12px;
  box-shadow: 0 2px 14px rgba(0,103,104,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--clr-neutral);
  line-height: 1.4;
  z-index: 2;
  transition: box-shadow .3s, transform .3s;
}
.hub-card:hover {
  box-shadow: 0 6px 24px rgba(0,103,104,.14);
  transform: translateY(-3px);
}
.hub-card-icon {
  width: 38px; height: 38px;
  background: rgba(0,103,104,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006768;
  font-size: .95rem;
  flex-shrink: 0;
}
/* Card positions — container 500×460, SVG center at (250,230) */
.hub-card--tl { top: 20px;  left: 12px;   }
.hub-card--tr { top: 20px;  right: 12px;  }
.hub-card--ml { top: 188px; left: 0;      }
.hub-card--mr { top: 188px; right: 0;     }
.hub-card--bm { bottom: 14px; left: 174px; }

/* Right column — content */
.heart-content { color: var(--clr-neutral); }
.heart-content .heart-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-secondary);
  margin-bottom: 14px;
}
.heart-content h2 { color: var(--clr-neutral); margin-bottom: 18px; }
.heart-content .desc {
  color: var(--clr-text-lt);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.75;
}
.heart-features { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.heart-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-neutral);
}
.heart-feature i {
  color: var(--clr-primary);
  font-size: 1.1rem;
  width: 22px;
  flex-shrink: 0;
  text-align: center;
}

/* ─── SERVICES SECTION (CAROUSEL) ───────────── */
.services-section { background: #F6FAFA; }
.services-section .swiper { padding-bottom: 52px !important; }

/* Outer wrapper: full-bleed (breaks out of container) with absolute buttons */
.services-carousel-outer {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 24px 120px; /* vertical padding so card/button shadows breathe */
  overflow: visible; /* never clip shadows or nav buttons */
}
.services-carousel-outer .swiper-button-prev,
.services-carousel-outer .swiper-button-next {
  position: absolute !important;
  top: calc(50% - 26px) !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
}
.services-carousel-outer .swiper-button-prev { left: 36px !important; }
.services-carousel-outer .swiper-button-next { right: 36px !important; }
.services-carousel-outer .swiper-button-prev:hover,
.services-carousel-outer .swiper-button-next:hover {
  transform: translateY(-50%) scale(1.04) !important;
}

/* Equal-height slides */
.swiper-services .swiper-wrapper { align-items: stretch; }
.swiper-services .swiper-slide { height: auto !important; display: flex; }
/* Give the swiper internal shadow room so first/last card shadows aren't
   clipped by Swiper's own overflow:hidden. Negative margin compensates. */
.swiper-services {
  padding: 12px 10px !important;
  margin: -12px -10px !important;
  width: calc(100% + 20px) !important;
  box-sizing: border-box;
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1.5px solid var(--clr-gray-200);
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  width: 100%;
  display: flex; flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
/* Alternating background for even cards */
.service-card--alt { background: #F0F4F4; }

/* Card icon — teal tint for all service cards */
.service-card .card-icon {
  width: 52px; height: 52px;
  background: #eef4f4;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--clr-primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-card .card-icon img { width: 28px; height: 28px; object-fit: contain; display: block; }
/* CRM card: slightly stronger teal icon bg */
.service-card.crm-card .card-icon {
  /* background: #daeef0; */
  color: #fff;
}
/* Alt (gray bg) cards: white icon box for contrast */
.service-card--alt .card-icon { background: white; }

.service-card .card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-neutral);
  margin-bottom: 6px;
}
.service-card .card-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-neutral);
  margin-bottom: 20px;
  line-height: 1.1;
}
.service-card .card-price span {
  font-size: .95rem;
  font-weight: 500;
  color: var(--clr-text-lt);
}
.service-card .card-price .price-amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.service-card .card-tagline {
  font-size: .85rem;
  color: #006768;
  font-weight: 700;
  margin-bottom: 20px;
}
.service-card .card-features {
  flex: 1;
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  list-style: none;
  padding: 0;
}
.service-card .card-feature {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .875rem;
  color: var(--clr-text);
  line-height: 1.4;
}
.service-card .card-feature i {
  color: #006768;
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-card .card-cta { margin-top: auto; }

/* CRM "Activate Free" button — solid teal */
.btn-crm-free {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  background: #006768;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-btn);
  border: none;
  transition: background .3s;
  text-decoration: none;
  cursor: pointer;
}
.btn-crm-free:hover { background: #004f50; color: #fff; }

/* "Add to Plan" button — muted grey */
.btn-add-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  background: transparent;
  color: var(--clr-neutral);
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius-btn);
  border: 2px solid #BDC9C9;
  transition: background .3s;
  text-decoration: none;
  cursor: pointer;
}
.btn-add-plan:hover { background: #a4b2b2; color: var(--clr-neutral); }

/* Swiper custom styles */
.swiper-pagination-bullet { background: var(--clr-gray-300); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--clr-primary); width: 20px; border-radius: 4px; }
.swiper-button-next, .swiper-button-prev {
  color: #fff !important;
  background: #006768;
  width: 52px !important; height: 52px !important;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,103,104,.35);
  top: 40% !important;
  transition: background .2s, transform .2s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: #004f50;
  transform: scale(1.04);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 1rem !important; font-weight: 900 !important; }

/* ─── BUNDLE SECTION ────────────────────────── */
.bundle-section {
  background: #F0F4F4;
  position: relative;
  overflow: hidden;
}
.bundle-features-col h2 { margin-bottom: 12px; }
.bundle-features-col h2 span { color: var(--clr-secondary); }
.bundle-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}
.bundle-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 500;
  color: var(--clr-text);
}
.bundle-item .bundle-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  object-fit: contain;
}
.bundle-screenshot {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 2px solid var(--clr-gray-200);
  display: flex;
  align-items: center;
}
.bundle-dashboard-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.reservation-mockup {
  background: white;
  font-size: .7rem;
}
.res-header {
  background: var(--clr-primary);
  padding: 10px 14px;
  color: white;
  font-weight: 700;
  display: flex; align-items: center; justify-content: space-between;
}
.res-tabs {
  display: flex;
  padding: 8px 14px 0;
  border-bottom: 1px solid var(--clr-gray-200);
  background: #f8fafb;
  gap: 2px;
}
.res-tab {
  padding: 6px 12px;
  font-size: .68rem; font-weight: 600;
  color: var(--clr-text-lt);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: pointer;
}
.res-tab.active {
  background: white;
  color: var(--clr-primary);
  border: 1px solid var(--clr-gray-200);
  border-bottom: 1px solid white;
  margin-bottom: -1px;
}
.res-table { width: 100%; border-collapse: collapse; }
.res-table th {
  background: #f8fafb;
  padding: 6px 10px;
  text-align: left;
  font-size: .65rem; font-weight: 700;
  color: var(--clr-text-lt);
  border-bottom: 1px solid var(--clr-gray-200);
  white-space: nowrap;
}
.res-table td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--clr-gray-100);
  font-size: .67rem;
  color: var(--clr-text);
  white-space: nowrap;
}
.res-table tr:hover td { background: var(--clr-gray-50); }
.res-status {
  display: inline-block;
  padding: 2px 7px; border-radius: var(--radius-full);
  font-size: .6rem; font-weight: 600;
}
.res-confirmed { background: #d1fae5; color: #065f46; }
.res-pending   { background: #fef3c7; color: #92400e; }
.res-new       { background: #dbeafe; color: #1e40af; }
.res-cancelled { background: #fee2e2; color: #991b1b; }

/* ─── TESTIMONIALS ──────────────────────────── */
.testimonials-section { background: transparent; }

/* Full-bleed outer wrapper — same pattern as services carousel */
.testimonials-carousel-outer {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 120px 24px;
  margin-top: 48px;
  overflow: visible; /* allow shadows to breathe */
}
/* Buttons removed — hide any Swiper default arrows */
.testimonials-carousel-outer .swiper-button-prev,
.testimonials-carousel-outer .swiper-button-next {
  display: none !important;
}
/* Equal-height slides */
.swiper-testimonials .swiper-wrapper { align-items: stretch; }
.swiper-testimonials .swiper-slide  { height: auto !important; display: flex; }
.swiper-testimonials .testimonial-card { height: 100%; }
/* Remove Swiper's own background/shadow that bleeds through slide corners */
.swiper-testimonials {
  background: transparent !important;
  box-shadow: none !important;
  padding: 10px 8px 52px !important;
  margin: -10px -8px !important;
  width: calc(100% + 16px) !important;
}
.swiper-testimonials .swiper-wrapper {
  overflow: visible;
}

.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--clr-gray-200);
  transition: all .35s var(--ease-out);
  height: 100%;
  display: flex; flex-direction: column;
}
.testimonial-card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex; gap: 4px;
  margin-bottom: 16px;
  align-items: center;
}
.testimonial-star {
  width: 18px; height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.testimonial-text {
  font-size: .93rem;
  color: var(--clr-text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
/* Real photo — square with rounded corners */
.author-photo {
  width: 52px; height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
/* Fallback initials when no photo */
.author-photo--initials {
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  color: white;
}
.author-info .name { font-weight: 700; font-size: .9rem; color: var(--clr-neutral); }
.author-info .role { font-size: .78rem; color: var(--clr-text-lt); }

/* ─── NEWSLETTER / STAY INFORMED ─────────────── */
.newsletter-section {
  background: #F0F4F4;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}
.newsletter-section::before,
.newsletter-section::after { display: none; }
.newsletter-inner {
  text-align: center;
  position: relative; z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 48px;
  background: #006768;
  border-radius: 32px;
}
.newsletter-inner h2 { color: white; margin-bottom: 16px; }
.newsletter-inner p  { color: rgba(255,255,255,.85); margin-bottom: 36px; font-size: 1.05rem; }
.newsletter-form {
  display: flex; gap: 12px;
  max-width: 540px; margin: 0 auto 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-btn);
  border: none;
  background: #ffffff;
  color: #374151;
  font-size: .95rem;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  transition: all .3s;
}
.newsletter-form input::placeholder { color: #9ca3af; }
.newsletter-form input:focus {
  outline: 2px solid rgba(255,255,255,.5);
  outline-offset: 2px;
}
.newsletter-privacy {
  font-size: .68rem !important;
  color: rgba(255,255,255,.6);
  margin: 0;
}
.newsletter-privacy a { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ─── COMMUNITY SECTION ─────────────────────── */
.community-section {
  background: var(--clr-gray-50);
  text-align: center;
}
.community-section .section-header { margin-bottom: 16px; }
.community-text { font-size: 1.05rem; color: var(--clr-text-lt); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }
.community-icons {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}

/* Float loop: each icon bobs at a staggered offset */
@keyframes community-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.community-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 14px;
  background: #E8EEEE;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  text-decoration: none;
  animation: community-float 3.6s ease-in-out infinite;
  transition: background .25s, box-shadow .25s;
}
/* Stagger float timing per icon */
.community-icon-wrap:nth-child(1) { animation-delay: 0s; }
.community-icon-wrap:nth-child(2) { animation-delay: .4s; }
.community-icon-wrap:nth-child(3) { animation-delay: .8s; }
.community-icon-wrap:nth-child(4) { animation-delay: 1.2s; }

.community-icon-wrap:hover {
  animation-play-state: paused;
  background: #d5e0e0;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px) scale(1.12);
}
.social-icon-img {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
  transition: transform .25s var(--ease-bounce);
}
.community-icon-wrap:hover .social-icon-img { transform: scale(1.15); }

/* ─── FOOTER ────────────────────────────────── */
.site-footer {
  background: rgba(223, 227, 227, 1);
  color: #374151;
  padding: 72px 0 0;
  border-top: 1px solid rgba(223, 227, 227, 1);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 0.85fr 0.85fr 0.85fr;
  gap: 48px 56px;
  padding: 0 clamp(32px, 6vw, 96px) 52px;
  border-bottom: 1px solid rgba(189,201,201,.4);
}
.footer-brand .logo { color: inherit; margin-bottom: 14px; display: inline-block; }
.footer-brand .logo .logo-text { color: inherit; }
.footer-brand p {
  font-size: .88rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-newsletter-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #171C1C;
  margin-bottom: 10px;
}
.footer-newsletter-form {
  display: flex; gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer-newsletter-form input {
  flex: 1; padding: 10px 14px;
  border-radius: var(--radius-btn);
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #374151; font-size: .85rem;
  transition: all .3s;
}
.footer-newsletter-form input::placeholder { color: #9ca3af; }
.footer-newsletter-form input:focus { border-color: var(--clr-primary); outline: none; box-shadow: 0 0 0 3px rgba(37,133,133,.1); }
.footer-newsletter-form .btn { padding: 10px 18px; font-size: .82rem; white-space: nowrap; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(189,201,201,.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
  border: 1px solid rgba(189,201,201,.4);
}
.footer-social-img { width: 18px; height: 18px; object-fit: contain; }
.footer-social a:hover { background: var(--clr-primary); transform: translateY(-3px); }
.footer-social a:hover .footer-social-img { filter: brightness(0) invert(1); }
.footer-col h5 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .87rem;
  color: #6b7280;
  transition: color .2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--clr-primary); }
.footer-bottom {
  padding: 20px clamp(32px, 6vw, 96px);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(189,201,201,.4);
}
.footer-bottom-right { display: flex; align-items: center; gap: 20px; }
.footer-copyright { font-size: .82rem; color: #9ca3af; }
.footer-locale    { font-size: .82rem; color: #9ca3af; }
.footer-status    { font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--clr-primary); text-transform: uppercase; }

/* ─── FREE CRM PAGE — wider layout ─────────────────────────── */
.page-crm .container {
  max-width: 1400px;
  padding: 0 clamp(16px, 4vw, 64px);
}
.page-crm .hero-crm .container {
  max-width: 1400px;
}
.page-crm .what-you-get-screenshot { margin-left: 0; margin-right: 0; }
.page-crm .how-works-list { max-width: 720px; }
.page-crm .crm-pillars { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px)  { .page-crm .crm-pillars { grid-template-columns: 1fr; } }
@media (max-width: 768px)  {
  .page-crm .container { padding: 0 16px; }
  .page-crm .crm-pillars { grid-template-columns: 1fr; }
}

/* ─── FREE CRM PAGE ─────────────────────────── */
.hero-crm {
  min-height: auto;
  background: #F6FAFA;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 72px;
}
.hero-crm::before { display: none; }
.hero-crm .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 24px 48px;
}
.hero-crm .badge-wrap {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.badge-unlimited {
  display: inline-block;
  background: #86F9BE;
  color: #00734B;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}
/* Demo / secondary CTA button */
.btn-demo {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  background: #E5E9E8;
  color: #006768;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn-demo:hover { background: #cdd4d3; color: #004f50; }
/* CRM hero image — rotated background frame */
.crm-img-wrap {
  position: relative;
  padding: 20px 20px 8px;
}
.crm-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 103, 104, 0.05);
  border-radius: 20px;
  transform: rotate(2.5deg);
  z-index: 0;
}
.crm-img-wrap img {
  position: relative; z-index: 1;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,103,104,.18);
  display: block;
}
.hero-crm h1 { font-weight: 900; letter-spacing: -.03em; margin-bottom: 8px; line-height: 1.05; }
.hero-crm h1 .teal { color: var(--clr-primary); }
.hero-crm h1 .green { color: var(--clr-secondary); }
.hero-crm .hero-subtitle { font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; line-height: 1.75; }

.crm-page-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden;
  font-size: .72rem;
  animation: float 6s ease-in-out infinite;
}
.crm-top-bar {
  background: var(--clr-primary);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
}
.crm-breadcrumb {
  font-size: .67rem;
  color: rgba(255,255,255,.7);
}
.crm-breadcrumb span { color: white; font-weight: 600; }
.crm-quick-menu-label {
  font-weight: 700; font-size: .65rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.crm-body { display: flex; }
.crm-sidebar-nav {
  width: 100px;
  background: #f8fafb;
  border-right: 1px solid var(--clr-gray-200);
  padding: 10px 0;
}
.crm-nav-item {
  padding: 6px 12px;
  font-size: .67rem;
  font-weight: 500;
  color: var(--clr-text-lt);
  cursor: pointer;
  transition: all .2s;
  border-left: 3px solid transparent;
}
.crm-nav-item.active {
  color: var(--clr-primary);
  font-weight: 700;
  background: var(--clr-bg-light);
  border-left-color: var(--clr-primary);
}
.crm-nav-item:hover { color: var(--clr-primary); background: var(--clr-bg-light); }
.crm-content { flex: 1; padding: 14px; }
.crm-page-title { font-size: .82rem; font-weight: 800; color: var(--clr-neutral); margin-bottom: 12px; }
.crm-form-section-title { font-size: .68rem; font-weight: 700; color: var(--clr-primary); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.crm-form-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }
.crm-field label { display: block; font-size: .6rem; color: var(--clr-text-lt); margin-bottom: 2px; font-weight: 600; }
.crm-field input,
.crm-field select {
  width: 100%;
  padding: 4px 7px;
  border: 1px solid var(--clr-gray-300);
  border-radius: var(--radius-xs);
  font-size: .67rem;
  color: var(--clr-neutral);
  background: white;
  transition: border .2s;
}
.crm-field input:focus,
.crm-field select:focus { border-color: var(--clr-primary); }
.crm-form-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 10px; }
.crm-save-btn {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  background: var(--clr-tertiary);
  color: white; border-radius: var(--radius-sm);
  font-size: .67rem; font-weight: 600;
  border: none; cursor: pointer;
}
.crm-quick-menu {
  width: 110px;
  padding: 10px;
  border-left: 1px solid var(--clr-gray-200);
  background: #f8fafb;
}
.crm-qm-btn {
  display: block; width: 100%;
  padding: 5px 8px;
  background: white;
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-xs);
  font-size: .6rem; font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 4px;
  cursor: pointer;
  transition: all .2s;
  text-align: left;
}
.crm-qm-btn:hover { background: var(--clr-bg-light); border-color: var(--clr-primary); }

/* Why CRM — carousel layout */
.why-crm-section { background: #F0F4F4; }
/* Remove old grid — replaced by Swiper */
.why-grid { display: none; }

/* Carousel outer wrapper */
.why-crm-carousel-outer {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 16px 120px 24px;
  margin-top: 48px;
  overflow: visible;
}
.why-crm-carousel-outer .swiper-button-prev,
.why-crm-carousel-outer .swiper-button-next { display: none !important; }
.swiper-why-crm .swiper-wrapper { align-items: stretch; }
.swiper-why-crm .swiper-slide  { height: auto !important; display: flex; }
.swiper-why-crm {
  background: transparent !important;
  box-shadow: none !important;
  padding: 10px 8px 52px !important;
  margin: -10px -8px !important;
  width: calc(100% + 16px) !important;
}
.swiper-why-crm .swiper-wrapper { overflow: visible; }
.why-crm-pagination {
  text-align: center;
  margin-top: 28px;
  position: static !important;
}
.why-card-icon {
  width: 40px; height: 40px;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #006768;
  margin-bottom: 18px;
  transition: transform .3s;
}
.why-card-icon img { width: 32px; height: 32px; object-fit: contain; }
.why-card:hover .why-card-icon { transform: rotate(-5deg); }
.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--clr-gray-200);
  height: 100%;
  display: flex; flex-direction: column;
  transition: border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  overflow: visible;
}
.why-card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-lg);
}
.why-card .card-num {
  width: 40px; height: 40px;
  background: var(--clr-primary);
  color: white;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.why-card .card-icon-lg {
  width: 56px; height: 56px;
  background: var(--clr-bg-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: all .3s;
}
.why-card:hover .card-icon-lg { background: var(--clr-primary); color: white; transform: rotate(-5deg); }
.why-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.why-card p  { font-size: .92rem; line-height: 1.7; flex: 1; }

/* What You Get screenshot box */
.what-you-get-screenshot {
  margin: 40px 0 52px;
  border: 2px solid var(--clr-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.what-you-get-screenshot img { width: 100%; display: block; }

/* How it works — numbered list */
.how-works-list {
  display: flex; flex-direction: column; gap: 18px;
  max-width: 660px; margin: 40px auto 0;
  list-style: none; padding: 0 24px;
}
.how-step {
  display: flex; align-items: flex-start; gap: 18px;
  font-size: 1rem; line-height: 1.65; color: var(--clr-text);
}
.how-step-num {
  min-width: 36px; height: 36px;
  background: #00797B; color: white;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .9rem; flex-shrink: 0;
}
/* Pillar cards */
.crm-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.crm-pillar {
  background: #00797B;
  border-radius: 18px;
  padding: 28px 24px;
  color: white;
}
.crm-pillar h4 {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: white; margin-bottom: 16px;
  text-align: center;
}
.crm-pillar ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.crm-pillar li {
  font-size: .85rem; color: rgba(255,255,255,.85);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.crm-pillar li::before {
  content: '–';
  position: absolute;
  left: 0;
  opacity: .7;
}
/* Ready CTA section */
.ready-cta-section {
  padding: 88px 0;
  text-align: center;
  background: #fff;
}
.ready-cta-section h2 { margin-bottom: 14px; }
.ready-cta-section p { margin-bottom: 36px; font-size: 1.05rem; color: var(--clr-text-lt); }
.ready-cta-section .btn-primary {
  background: linear-gradient(90deg, #006768 0%, #008284 100%);
  border-color: transparent;
  border-radius: var(--radius-md);
}
.ready-cta-section .btn-primary:hover {
  background: linear-gradient(90deg, #004f50 0%, #006768 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(0,103,104,.4);
}
/* What You Get feature cards */
.wyg-card {
  background: #F0F4F4;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wyg-card-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.wyg-card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wyg-card-icon img { width: 32px; height: 32px; object-fit: contain; }
.wyg-card h3 { margin: 0; font-size: 1.1rem; }
.wyg-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wyg-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .93rem; color: var(--clr-text); line-height: 1.55;
}
.wyg-card li i { color: var(--clr-primary); flex-shrink: 0; font-size: .75rem; margin-top: 3px; }
/* Responsive: why-grid, crm-pillars */
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .why-grid { grid-template-columns: 1fr; } .crm-pillars { grid-template-columns: 1fr; } }
@media (max-width: 900px)  { .crm-pillars { grid-template-columns: 1fr; } }

/* ─── PRICING PAGE ──────────────────────────── */
.pricing-hero
{
    position: relative;
    margin-top: var(--nav-h);
    padding: 0px 0 0%;
    min-height: min(665px, 65vw);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.pricing-hero::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: url('../images/headers/pricing-hero-banner.jpg') center 40% / cover no-repeat;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  z-index: 0;
}
.pricing-hero .container { position: relative; z-index: 1; width: 100%; }
.pricing-hero-content {
  text-align: left;
  /* background: rgba(255,255,255,0.82); */
  /* backdrop-filter: blur(12px); */
  /* -webkit-backdrop-filter: blur(12px); */
  padding: 52px 48px;
  border-radius: 24px;
  /* border: 1px solid rgba(255,255,255,0.6); */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-hero-tag {
  display: inline-block;
  font-size: .88rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.pricing-hero-heading {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 900; color: var(--clr-neutral);
  line-height: 1.08; margin-bottom: 22px;
  letter-spacing: -.02em;
}
.pricing-hero-sub {
  font-size: 1.2rem; color: var(--clr-text-lt);
  line-height: 1.7; max-width: 520px;
  margin: 0 0 28px;
}
.pricing-hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--clr-text);
  line-height: 1.55;
}
.pricing-hero-bullet i {
  color: var(--clr-primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.btn-hero-register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #86F9BE;
  color: #006768;
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 28px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-hero-register:hover { background: #86F9BE; transform: translateY(-1px); }
.pricing-hero-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
.pricing-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 32px 24px;
  /* background: rgba(255,255,255,0.82); */
  /* backdrop-filter: blur(10px); */
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  /* border: 1px solid rgba(255,255,255,0.6); */
}

/* ── Pricing Hero Hub ─────────────── */
.ph-hub-wrap {
  position: relative;
  width: 580px;
  height: 420px;
  flex-shrink: 0;
}
.ph-hub-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.ph-hub-center {
  position: absolute;
  left: 224px;
  top: 162px;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 10px rgba(134,249,190,.22),
    0 0 0 22px rgba(134,249,190,.10),
    0 6px 28px rgba(0,103,104,.32);
  animation: ph-pulse 2.6s ease-out infinite;
  z-index: 3;
}
@keyframes ph-pulse {
  0%  { box-shadow: 0 0 0 0   rgba(134,249,190,.55),  0 0 0 0   rgba(134,249,190,.25),  0 6px 28px rgba(0,103,104,.32); }
  50% { box-shadow: 0 0 0 12px rgba(134,249,190,.12),  0 0 0 26px rgba(134,249,190,.04),  0 6px 28px rgba(0,103,104,.32); }
  100%{ box-shadow: 0 0 0 12px rgba(134,249,190,.0),   0 0 0 26px rgba(134,249,190,.0),   0 6px 28px rgba(0,103,104,.32); }
}
.ph-hub-center img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.ph-hub-card {
  position: absolute;
  width: 158px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 11px 10px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  box-shadow: 0 4px 18px rgba(0,0,0,.11), 0 1px 4px rgba(0,0,0,.06);
  border: 1px solid rgba(210,230,230,.9);
  z-index: 2;
  transition: transform .25s, box-shadow .25s;
}
.ph-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,103,104,.22);
}
.ph-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ph-card-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.ph-card-text {
  flex: 1;
  min-width: 0;
}
.ph-card-text span {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: #1a2e2e;
  margin-bottom: 2px;
}
.ph-card-text p {
  font-size: .63rem;
  color: #5a7272;
  margin: 0;
  line-height: 1.35;
}
.ph-card-check {
  color: #258585;
  font-size: .72rem;
  flex-shrink: 0;
  margin-top: 2px;
}
/* Card positions — hub 580×420, SVG center at (262,200) */
/* Row 1 — top: 3 cards aligned at y=10 */
.ph-card--tl { top: 10px;  left: 5px;   }
.ph-card--tc { top: 10px;  left: 185px; }
.ph-card--tr { top: 10px;  right: 57px; }
/* Row 2 — middle: left & right flanking hub */
.ph-card--ml { top: 162px; left: 5px;   }
.ph-card--mr { top: 162px; right: 57px; }
/* Row 3 — bottom: 3 cards aligned at y=330 */
.ph-card--bl { top: 330px; left: 5px;   }
.ph-card--bc { top: 330px; left: 185px; }
.ph-card--br { top: 330px; right: 57px; }
/* Laptop screenshot */
.ph-laptop-wrap {
  width: 480px;
  margin-top: -20px;
  position: relative;
  z-index: 3;
}
.ph-laptop-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.25);
}
@media (max-width: 1200px) {
  .ph-hub-wrap { transform: scale(.82); transform-origin: top center; margin-bottom: -75px; }
}
@media (max-width: 900px) {
  .pricing-hero { min-height: auto; padding: 60px 0; }
  .pricing-hero-container { grid-template-columns: 1fr; gap: 20px; align-items: stretch; }
  .pricing-hero-content { padding: 40px 36px; align-items: center; text-align: center; border-radius: 20px; }
  .pricing-hero-sub { margin: 0 auto 24px; }
  .pricing-hero-bullets { max-width: 480px; margin: 0 auto 28px; text-align: left; }
  .pricing-hero-visual { padding: 28px 16px; overflow: hidden; min-height: 400px; border-radius: 20px; }
  .ph-hub-wrap { transform: scale(.90); transform-origin: top center; margin-bottom: -42px; }
}
@media (max-width: 768px) {
  .pricing-hero-content { padding: 36px 28px; }
  .pricing-hero-heading { font-size: clamp(2.2rem, 7vw, 3rem); }
  .pricing-hero-visual { min-height: 380px; }
  .ph-hub-wrap { transform: scale(.82); transform-origin: top center; margin-bottom: -75px; }
  .ph-laptop-wrap { width: 400px; }
}
@media (max-width: 640px) {
  .pricing-hero { padding: 48px 0; }
  .pricing-hero-content { padding: 32px 24px; border-radius: 16px; }
  .pricing-hero-sub { font-size: 1rem; }
  .pricing-hero-bullet { font-size: .95rem; }
  .pricing-hero-visual { min-height: 340px; padding-left: 0; padding-right: 0; }
  .ph-hub-wrap { transform: scale(.76); transform-origin: top center; margin-bottom: -100px; }
  .ph-laptop-wrap { width: 370px; }
}
@media (max-width: 480px) {
  .pricing-hero { padding: 40px 0; }
  .pricing-hero-content { padding: 28px 20px; }
  .pricing-hero-heading { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .pricing-hero-visual { min-height: 270px; padding-left: 0; padding-right: 0; }
  .ph-hub-wrap { transform: scale(.58); transform-origin: top center; margin-bottom: -176px; }
  .ph-laptop-wrap { width: 280px; }
}
@media (max-width: 360px) {
  .pricing-hero-content { padding: 24px 16px; }
  .pricing-hero-heading { font-size: clamp(1.7rem, 10vw, 2.2rem); }
  .pricing-hero-visual { min-height: 230px; padding-left: 0; padding-right: 0; }
  .ph-hub-wrap { transform: scale(.52); transform-origin: top center; margin-bottom: -202px; }
  .ph-laptop-wrap { width: 250px; }
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 20px;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  border: 1px solid #E0E6E6;
  transition: box-shadow .4s cubic-bezier(.25,.8,.25,1), transform .4s cubic-bezier(.25,.8,.25,1), border-color .4s ease;
  display: flex; flex-direction: column;
}
.pricing-card:hover {
  box-shadow: 0 24px 64px rgba(37,133,133,.22);
  transform: translateY(-10px);
  border-color: #9ec8c8;
}
.pricing-card.popular { position: relative; }
.popular-badge { display: none; }
.pricing-card .plan-name {
  font-size: 1.15rem; font-weight: 800;
  color: var(--clr-neutral);
  margin-bottom: 8px;
}
.pricing-card .plan-price {
  font-size: 2.8rem; font-weight: 900;
  color: var(--clr-primary);
  margin-bottom: 20px;
  line-height: 1;
}
.pricing-card .plan-price.free-price { color: #258585; }
.pricing-card .plan-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-card .plan-price sub { font-size: .9rem; color: var(--clr-text-lt); font-weight: 500; }
.pricing-card .plan-desc {
  font-size: .88rem; color: var(--clr-text-lt);
  margin-bottom: 20px; line-height: 1.6;
}
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--clr-text);
}
.pricing-feature i { color: var(--clr-primary); flex-shrink: 0; margin-top: 2px; }
.pricing-feature img { width: 18px; height: 18px; object-fit: contain; flex-shrink: 0; margin-top: 1px; }
.pricing-card.bundle-plan .plan-price { color: var(--clr-secondary); }
.pricing-card.bundle-plan { border-color: var(--clr-secondary); background: linear-gradient(145deg,#f0fff4,#fff); }
.pricing-card.bundle-plan:hover { border-color: var(--clr-secondary); }
.pricing-card.bundle-plan .pricing-feature i { color: var(--clr-secondary); }

/* ─── PRICING ICON BOX ──────────────────────── */
.pricing-icon-box {
  width: 48px; height: 48px;
  background: #eef4f4;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  border: 1px solid #dde8e8;
}
.pricing-icon-box img { width: 26px; height: 26px; object-fit: contain; }
.pricing-icon-box i { font-size: 1.1rem; color: var(--clr-primary); }
.price-period { font-size: .9rem; color: var(--clr-text-lt); font-weight: 500; margin-left: 3px; }
.btn-select-plan {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 13px 20px;
  margin-top: auto;
  background: white; color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
  border-radius: var(--radius-btn);
  font-weight: 700; font-size: .925rem;
  text-decoration: none; transition: all .25s ease;
}
.btn-select-plan:hover { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
.btn-activate-free {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 13px 20px;
  margin-top: auto;
  background: white; color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
  border-radius: var(--radius-btn);
  font-weight: 700; font-size: .925rem;
  text-decoration: none; transition: all .25s ease;
}
/* Ezi Bundle — full teal card */
/* Shimmer sweep across the bundle card */
@keyframes bundleShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.pricing-card--bundle {
  background: linear-gradient(145deg, #006768, #008284) !important;
  border-color: transparent !important;
  padding: 28px 24px 32px !important;
  position: relative;
  overflow: visible !important;
  margin-top: 0;
  /* Deep shadow makes it feel elevated without shifting layout */
  box-shadow: 0 20px 60px rgba(0,103,104,.5);
  transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s cubic-bezier(.25,.8,.25,1), border-color .4s ease;
}
/* Shimmer overlay via ::before */
.pricing-card--bundle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255,255,255,.09) 40%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.09) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  animation: bundleShimmer 3.5s linear infinite;
  pointer-events: none;
  z-index: 1;
  /* border-radius: var(--radius-lg); */
}
/* RECOMMENDED badge — outlined pill matching image style */
.bundle-recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e8f5f5;
  color: var(--clr-primary-dk);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--clr-primary);
  white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
  box-shadow: 0 2px 8px rgba(0,103,104,.15);
}
/* All content — white on teal */
.pricing-card--bundle .plan-name { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.pricing-card--bundle .plan-desc { color: rgba(255,255,255,.75); font-size: .88rem; margin-bottom: 20px; }
.pricing-card--bundle .pricing-icon-box {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.18);
  margin-bottom: 18px;
}
.pricing-card--bundle .pricing-icon-box img { filter: brightness(0) invert(1); }
.pricing-card--bundle .plan-price { color: #fff; margin-bottom: 16px; }
.pricing-card--bundle .price-period { color: rgba(255,255,255,.7); }
.pricing-card--bundle .pricing-features { margin-bottom: 28px; }
.pricing-card--bundle .pricing-feature { color: rgba(255,255,255,.9); }
.pricing-card--bundle .pricing-feature img { filter: brightness(0) invert(1); }
/* Outline button on teal */
.btn-select-plan--bundle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 13px 20px;
  margin-top: 0;
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.5) !important;
  border-radius: var(--radius-btn);
  font-weight: 700; font-size: .925rem;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease;
}
.btn-select-plan--bundle:hover {
  background: rgba(255,255,255,.25) !important;
  border-color: rgba(255,255,255,.85) !important;
}
/* Bundle card hover — deep lift */
.pricing-card--bundle:hover {
  transform: translateY(-24px) scale(1.035);
  box-shadow: 0 48px 96px rgba(0,103,104,.65), 0 0 0 4px rgba(255,255,255,.35);
  border-color: rgba(255,255,255,.35) !important;
}
.btn-activate-free:hover { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }

/* ─── BUNDLE TODAY SECTION ──────────────────── */
.bundle-today-section { padding: 0 0 80px; }
.bundle-today-inner {
  position: relative;
  background: linear-gradient(to right, #006768, #008284);
  border-radius: 24px;
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.bundle-today-watermark {
  position: absolute; right: 210px; bottom: -50px;
  font-size: 240px; font-weight: 900;
  color: rgba(255,255,255,.06); line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -8px;
}
.bundle-today-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 6px; margin-bottom: 14px;
}
.bundle-today-heading {
  font-size: 2.8rem; font-weight: 900; color: white;
  margin-bottom: 16px; line-height: 1.1; letter-spacing: -.01em;
}
.bundle-today-desc {
  color: rgba(255,255,255,.75); font-size: .975rem;
  max-width: 400px; line-height: 1.7; margin-bottom: 32px;
}
.bundle-today-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.bundle-today-savings { color: rgba(255,255,255,.65); font-size: .875rem; }
.btn-bundle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; background: #0d4040; color: white;
  border: none; border-radius: var(--radius-btn);
  font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: all .25s ease;
}
.btn-bundle:hover { background: #0a3333; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.bundle-today-card {
  background: rgb(246 250 250 / 80%);
  border-radius: 18px; padding: 36px 40px; min-width: 220px;
  text-align: center; border: 1px solid rgba(255,255,255,.5);
}
.bundle-today-card-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--clr-primary-dk); margin-bottom: 8px;
}
.bundle-today-card-price { font-size: 4rem; font-weight: 900; color: var(--clr-primary-dk); line-height: 1; margin-bottom: 4px; }
.bundle-today-card-period { font-size: .85rem; color: #5a7878; margin-bottom: 24px; }
.bundle-today-card-features { list-style: none; padding: 0; margin: 0; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.bundle-today-card-features li { color: #2d4a4a; font-size: .875rem; display: flex; align-items: center; gap: 8px; }
.bundle-today-card-features li i { color: var(--clr-primary); font-size: .85rem; flex-shrink: 0; }
@media (max-width: 768px) {
  .bundle-today-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .bundle-today-heading { font-size: 2rem; }
  .bundle-today-watermark { display: none; }
}

/* ─── COMMUNITY SECTION ─────────────────────── */
.community-section { padding: 80px 0; background: #F0F4F4; text-align: center; }
.community-heading { font-size: 2rem; font-weight: 800; margin-bottom: 14px; color: var(--clr-neutral); }
.community-desc { color: var(--clr-text-lt); max-width: 480px; margin: 0 auto 40px; font-size: 1rem; line-height: 1.6; }
.community-icons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.community-icon-btn {
  width: 56px; height: 56px; background: white;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  border: 1.5px solid var(--clr-gray-200); transition: all .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.community-icon-btn img { width: 26px; height: 26px; object-fit: contain; transition: filter .25s ease; }
.community-icon-btn:hover { background: var(--clr-primary); border-color: var(--clr-primary); transform: translateY(-2px); }
.community-icon-btn:hover img { filter: brightness(0) invert(1); }

/* ─── REGISTER PAGE ─────────────────────────── */
.register-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--clr-bg-light) 0%, #fff 50%, rgba(0,188,228,.07) 100%);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
}
.register-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}
.register-info h1 { margin-bottom: 16px; }
.register-info h1 span { color: var(--clr-primary); }
.register-info p { font-size: 1.05rem; margin-bottom: 28px; }
.register-perks { display: flex; flex-direction: column; gap: 14px; }
.register-perk { display: flex; align-items: center; gap: 12px; font-size: .95rem; color: var(--clr-text); }
.register-perk i { color: var(--clr-secondary); font-size: 1rem; flex-shrink: 0; }
.register-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--clr-gray-200);
}
.register-form-box h2 { margin-bottom: 6px; }
.register-form-box .subtitle { font-size: .92rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-size: .85rem; font-weight: 600;
  color: var(--clr-neutral);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--clr-gray-300);
  border-radius: var(--radius-md);
  font-size: .95rem;
  color: var(--clr-neutral);
  transition: all .3s;
  background: white;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(37,133,133,.1);
}
.form-group input::placeholder { color: var(--clr-gray-300); }
.register-btn { width: 100%; padding: 14px; font-size: 1rem; border-radius: var(--radius-md); margin-top: 8px; }
.register-divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  font-size: .82rem;
  color: var(--clr-text-lt);
}
.register-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--clr-gray-200);
}
.register-divider span {
  position: relative;
  background: white;
  padding: 0 12px;
}
.register-terms {
  font-size: .8rem;
  color: var(--clr-text-lt);
  text-align: center;
  margin-top: 14px;
}
.register-terms a { color: var(--clr-primary); font-weight: 600; }
.register-login {
  text-align: center;
  margin-top: 18px;
  font-size: .88rem;
  color: var(--clr-text-lt);
}
.register-login a { color: var(--clr-primary); font-weight: 700; }

/* ─── SCROLL ANIMATIONS ─────────────────────── */
[data-aos] {
  opacity: 0;
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  will-change: opacity, transform;
}
[data-aos="fade-up"]    { transform: translateY(28px); }
[data-aos="fade-down"]  { transform: translateY(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px); }
[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="zoom-in"]    { transform: scale(.94); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* Stagger delays — applied only when animated, reset instantly on exit */
[data-aos-delay="100"]              { transition-delay: 0s; }
[data-aos-delay="100"].aos-animate  { transition-delay: .08s; }
[data-aos-delay="150"]              { transition-delay: 0s; }
[data-aos-delay="150"].aos-animate  { transition-delay: .12s; }
[data-aos-delay="200"]              { transition-delay: 0s; }
[data-aos-delay="200"].aos-animate  { transition-delay: .16s; }
[data-aos-delay="250"]              { transition-delay: 0s; }
[data-aos-delay="250"].aos-animate  { transition-delay: .2s; }
[data-aos-delay="300"]              { transition-delay: 0s; }
[data-aos-delay="300"].aos-animate  { transition-delay: .24s; }
[data-aos-delay="350"]              { transition-delay: 0s; }
[data-aos-delay="350"].aos-animate  { transition-delay: .28s; }
[data-aos-delay="400"]              { transition-delay: 0s; }
[data-aos-delay="400"].aos-animate  { transition-delay: .32s; }
[data-aos-delay="450"]              { transition-delay: 0s; }
[data-aos-delay="450"].aos-animate  { transition-delay: .36s; }
[data-aos-delay="500"]              { transition-delay: 0s; }
[data-aos-delay="500"].aos-animate  { transition-delay: .4s; }
[data-aos-delay="600"]              { transition-delay: 0s; }
[data-aos-delay="600"].aos-animate  { transition-delay: .48s; }

/* Misc keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.animate-fadeInUp    { animation: fadeInUp .7s var(--ease-out) forwards; }
.animate-fadeIn      { animation: fadeIn .6s ease forwards; }
.animate-slideLeft   { animation: slideInLeft .7s var(--ease-out) forwards; }
.animate-slideRight  { animation: slideInRight .7s var(--ease-out) forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* ─── MISC COMPONENTS ───────────────────────── */
.divider-wave {
  overflow: hidden;
  line-height: 0;
}
.divider-wave svg { display: block; }
.page-hero-simple {
  background: linear-gradient(135deg, var(--clr-bg-light), white);
  padding: calc(var(--nav-h) + 48px) 0 48px;
  text-align: center;
}
.page-hero-simple h1 { margin-bottom: 12px; }
.page-hero-simple p  { max-width: 540px; margin: 0 auto; font-size: 1.05rem; }
.how-works-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.step-card {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--clr-gray-200);
  transition: all .35s var(--ease-out);
  position: relative;
}
.step-card:hover {
  border-color: var(--clr-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-tertiary));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
  margin: 0 auto 16px;
}
.step-arrow {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--clr-gray-300);
  z-index: 2;
}
.step-card:last-child .step-arrow { display: none; }

/* Security/Integration/Scale cards */
.feature-highlight-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-highlight {
  padding: 28px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--clr-gray-200);
  box-shadow: var(--shadow-sm);
  transition: all .35s;
}
.feature-highlight:hover { border-color: var(--clr-primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.fh-icon { font-size: 2rem; margin-bottom: 14px; }
.fh-title { font-weight: 700; margin-bottom: 8px; }
.fh-list { display: flex; flex-direction: column; gap: 6px; }
.fh-item { display: flex; align-items: center; gap: 8px; font-size: .87rem; color: var(--clr-text); }
.fh-item i { color: var(--clr-primary); font-size: .85rem; flex-shrink: 0; }

/* ─── RESPONSIVE ────────────────────────────── */

/* ── iPad Air / iPad Pro: 769px – 1024px ── */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Hero: home page */
  .hero-home .container { grid-template-columns: 1fr; text-align: center; padding: 60px 24px; }
  .hero-home .hero-subtitle { margin: 0 auto 32px; }
  .hero-home .hero-actions { justify-content: center; }
  .hero-home .hero-visual { order: 1; }
  .hero-home .hero-content { order: 0; }
  /* Hero: free CRM page */
  .hero-crm .container { grid-template-columns: 1fr; text-align: center; padding: 64px 24px 40px; }
  .hero-crm .hero-subtitle { margin: 0 auto 32px; }
  .hero-crm .hero-actions { justify-content: center; }
  .hero-crm .hero-content { order: 1; }
  .hero-crm .crm-visual { order: 2; }
  .hero-crm .badge-wrap { justify-content: center; }
  /* Other 2-column grids that become single column on iPad */
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .bundle-section .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .heart-section .grid-2 { grid-template-columns: 1fr; gap: 0; }
  .heart-content { order: 1; text-align: center; }
  .heart-features { justify-content: center; }
  .register-container { grid-template-columns: 1fr; }
  .register-info { text-align: center; }
}

@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .how-works-steps { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .hub-diagram { width: 300px; height: 300px; }
  .hub-node { width: 58px; height: 58px; font-size: .54rem; }
  .hub-center { width: 86px; height: 86px; }
  .hub-orbit { width: 260px; height: 260px; }
  .hub-node:nth-child(1) { top: calc(50% - 130px - 29px); left: calc(50% - 29px); }
  .hub-node:nth-child(2) { top: calc(50% - 65px - 29px); left: calc(50% + 91px - 29px); }
  .hub-node:nth-child(3) { top: calc(50% + 65px - 29px); left: calc(50% + 91px - 29px); }
  .hub-node:nth-child(4) { top: calc(50% + 130px - 29px); left: calc(50% - 29px); }
  .hub-node:nth-child(5) { top: calc(50% + 65px - 29px); left: calc(50% - 91px - 29px); }
  .hub-node:nth-child(6) { top: calc(50% - 65px - 29px); left: calc(50% - 91px - 29px); }
  .register-container { gap: 40px; }
  .testimonials-carousel-outer { padding: 0 60px; }
  .why-crm-carousel-outer { padding: 0 60px; }
  /* Hide service arrows at 2-slide breakpoint */
  .services-carousel-outer .swiper-button-prev,
  .services-carousel-outer .swiper-button-next { display: none !important; }
}

/* ── Tablet: 900px ── */
@media (max-width: 900px) {
  /* Heart section: content first, hub diagram below */
  .heart-section .grid-2 { grid-template-columns: 1fr; gap: 0; }
  .heart-section .grid-2 > div:first-child { order: 2; }
  .heart-content { order: 1; text-align: center; }
  .heart-features { justify-content: center; }
  .heart-feature { justify-content: center; }
  /* Hub wrapper: clip overflow without affecting text above */
  .heart-section .grid-2 > div:first-child {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hub-wrap { transform: scale(0.85); transform-origin: top center; margin-bottom: -69px; }
  /* Bundle */
  .bundle-section .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .bundle-list { grid-template-columns: 1fr 1fr; }
  .bundle-screenshot { max-width: 520px; margin: 0 auto; }
  /* Testimonials */
  .testimonials-carousel-outer { padding: 0 32px; }
  .why-crm-carousel-outer { padding: 0 32px; }
  /* Footer cols: 2-column at 900px, centered */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }
  body { overflow-x: hidden; }
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  /* Hero */
  .hero-home .container { grid-template-columns: 1fr; text-align: center; padding: 60px 24px; }
  .hero-home .hero-subtitle { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: 1; }
  .dashboard-mockup-wrap { max-width: 420px; margin: 0 auto; }
  /* Grids */
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  /* Heart: content first, hub below.
     NO overflow:hidden on direct parent — .heart-section handles clipping. */
  .heart-section .grid-2 { grid-template-columns: 1fr; gap: 0; }
  .heart-section .container { padding-left: 0; padding-right: 0; }
  .heart-content { order: 1; text-align: center; padding: 0 24px; max-width: 100%; }
  .heart-section .grid-2 > div:first-child { order: 2; width: 100%; display: flex; justify-content: center; }
  .heart-features { justify-content: center; align-items: center; }
  .heart-feature { justify-content: flex-start; text-align: left; }
  .hub-wrap { transform: scale(0.72); transform-origin: top center; margin-bottom: -129px; }
  /* Services at 640-768px: 2 slides visible — hide arrows */
  .services-carousel-outer { left: 0; width: 100%; transform: none; padding: 24px 16px; overflow: visible; }
  .services-carousel-outer .swiper-button-prev,
  .services-carousel-outer .swiper-button-next { display: none !important; }
  /* Fonts */
  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  h2 { font-size: clamp(1.35rem, 5vw, 1.9rem); }
  h3 { font-size: clamp(1.05rem, 4vw, 1.3rem); }
  p, .desc, .hero-subtitle { font-size: .9rem; }
  .service-card { font-size: .83rem; }
  .bundle-item { font-size: .83rem; }
  .testimonial-text { font-size: .85rem; }
  /* Bundle */
  .bundle-section .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .bundle-features-col { text-align: center; }
  .bundle-list { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .bundle-item { justify-content: flex-start; text-align: left; }
  .bundle-screenshot { max-width: 480px; margin: 0 auto; }
  .bundle-dashboard-img { max-height: 320px; object-fit: contain; }
  /* Testimonials */
  .testimonials-carousel-outer { padding: 0 16px; left: 0; width: 100%; transform: none; }
  .why-crm-carousel-outer { padding: 0 16px; left: 0; width: 100%; transform: none; }
  /* Footer */
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom-right { justify-content: center; }
  .footer-newsletter-form input { min-width: 0; flex: 1 1 160px; }
  /* Other */
  /* pricing-grid: 2 cols kept from 1024px breakpoint down to 601px */
  .hero-crm .container { grid-template-columns: 1fr; text-align: center; padding: 56px 24px 40px; }
  .hero-crm .hero-subtitle { margin: 0 auto 32px; }
  .hero-crm .hero-actions { justify-content: center; flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-crm .hero-actions .btn,
  .hero-crm .hero-actions .btn-demo { width: 100%; justify-content: center; }
  .hero-crm .hero-content { order: 1; }
  .hero-crm .crm-visual { order: 2; }
  .hero-crm .badge-wrap { justify-content: center; }
  .register-container { grid-template-columns: 1fr; }
  .register-info { text-align: center; }
  .register-perks { align-items: flex-start; }
  .register-form-box { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .how-works-steps { grid-template-columns: 1fr; }
  .feature-highlight-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
}

/* ── 1-slide breakpoint: arrows move below card ── */
@media (max-width: 640px) {
  .services-carousel-outer { padding: 12px 16px 72px; overflow: visible; }
  .services-carousel-outer .swiper-button-prev,
  .services-carousel-outer .swiper-button-next {
    top: auto !important;
    bottom: 0 !important;
    transform: none !important;
    width: 36px !important; height: 36px !important;
  }
  .services-carousel-outer .swiper-button-prev { left: calc(50% - 46px) !important; }
  .services-carousel-outer .swiper-button-next { right: calc(50% - 46px) !important; }
  .services-carousel-outer .swiper-button-prev:hover,
  .services-carousel-outer .swiper-button-next:hover { transform: scale(1.04) !important; }
}

@media (max-width: 770px) {
  /* Footer cols: 2-column centered, text left */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    justify-items: center;
  }
  .footer-top .footer-brand { grid-column: 1 / -1; justify-self: start; }
  .footer-col { text-align: left; }
  .footer-col ul { align-items: flex-start; }
}

/* ≤500px: Resources col pinned to right */
@media (max-width: 500px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
    justify-items: start;
  }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .footer-top .footer-col:nth-child(3) { justify-self: end; }
  .footer-col { text-align: left; }
  .footer-col ul { align-items: flex-start; }
}

/* ≤300px: 1 single column, centered */
@media (max-width: 300px) {
  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer-top .footer-brand { grid-column: 1; justify-self: center; text-align: center; }
  .footer-top .footer-col:nth-child(3) { justify-self: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-newsletter-form { justify-content: center; }
  .footer-social { justify-content: center; }
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-home h1 { font-size: 1.7rem; }
  .hero-crm h1  { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  p, .desc, .hero-subtitle { font-size: .85rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .community-icons { gap: 14px; }
  .grid-4 { grid-template-columns: 1fr; }
  /* scale(0.72): visual half-width = 180px, fits any viewport ≥ 360px */
  .heart-section .container { padding-left: 0; padding-right: 0; }
  .hub-wrap { transform: scale(0.62); transform-origin: top center; margin-bottom: -175px; }
  .testimonials-carousel-outer { padding: 0 8px; }
  .why-crm-carousel-outer { padding: 0 8px; }
  /* Services buttons smaller */
  .services-carousel-outer { padding: 12px 16px 72px; overflow: visible; }
  .services-carousel-outer .swiper-button-prev,
  .services-carousel-outer .swiper-button-next { width: 32px !important; height: 32px !important; }
  .services-carousel-outer .swiper-button-prev::after,
  .services-carousel-outer .swiper-button-next::after { font-size: .6rem !important; }
  .services-carousel-outer .swiper-button-prev { left: calc(50% - 42px) !important; }
  .services-carousel-outer .swiper-button-next { right: calc(50% - 42px) !important; }
  .bundle-list { max-width: 280px; }
  .section-header { padding: 0 16px; }
  .service-card { padding: 18px 14px; font-size: .8rem; }
  .testimonial-card { padding: 20px 16px; }
  .card-price { font-size: 1.5rem; }
}

/* ===========================================
 * BUNDLE FLOAT ANIMATION
 * =========================================== */
.bundle-float-wrap {
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.bundle-float-wrap::after {
  content: '';
  position: absolute;
  bottom: -24px; left: 5%; right: 5%;
  height: 50px;
  background: radial-gradient(ellipse, rgba(37,133,133,.18) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(8px);
  animation: shadow-float 6s ease-in-out infinite;
  pointer-events: none;
}

/* ===========================================
 * LIGHTBOX
 * =========================================== */
.lightbox-trigger {
  cursor: zoom-in;
  transition: transform .3s ease, opacity .3s ease;
  display: block;
}
.lightbox-trigger:hover {
  transform: scale(1.025);
  opacity: .92;
}
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .88);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 24px;
  box-sizing: border-box;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 12px 60px rgba(0, 0, 0, .6);
  animation: lb-in .25s ease forwards;
  cursor: default;
  object-fit: contain;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(.88); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 28px;
  color: #fff;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  opacity: .75;
  transition: opacity .2s, transform .2s;
  z-index: 10001;
  user-select: none;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* ===========================================
 * BILLING TOGGLE
 * =========================================== */
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}
.billing-toggle {
  display: inline-flex;
  background: #fff;
  border-radius: 50px;
  padding: 5px;
  box-shadow: 0 2px 14px rgba(0,0,0,.1);
}
.toggle-opt {
  border: none;
  background: transparent;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  color: #888;
  transition: background .25s, color .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  line-height: 1;
}
.toggle-opt.active {
  background: #258585;
  color: #fff;
}
.save-badge {
  background: #43A047;
  color: #fff;
  font-size: .63rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.toggle-annual.active .save-badge {
  background: rgba(255,255,255,.25);
  color: #fff;
}
.annual-billing {
  display: none;
  font-size: .8rem;
  color: #959595;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: -10px;
  margin-bottom: 20px;
}

/* ===========================================
 * PRICING TIERS (Bundle Squad / Tribe)
 * =========================================== */
.pricing-tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 auto;
  /* Desktop: centered at 2-col width matching the 3-col pricing-grid columns */
  max-width: calc(66.667% - 8px);
}
/* Tablet: expand to full width so cards match the 2-col pricing-grid */
@media (max-width: 1024px) {
  .pricing-tiers-grid { max-width: 100%; }
}
/* Mobile: single column, full width */
@media (max-width: 640px) {
  .pricing-tiers-grid { grid-template-columns: 1fr; max-width: 100%; }
}
.tier-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #258585;
  background: #e8f4f4;
  padding: 3px 10px;
  border-radius: 20px;
}
.tier-badge-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 12px;
}
.btn-coming-soon {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  border: 2px solid #d8e0e0;
  background: transparent;
  color: #bbb;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: not-allowed;
  margin-top: auto;
  pointer-events: none;
}
/* carousel coming-soon variant */
.btn-coming-soon-card {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid #d8e0e0;
  background: transparent;
  color: #bbb;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Very small phones ≤ 360px ── */
@media (max-width: 360px) {
  /* scale(0.52): visual half-width = 260px, fits any viewport ≥ 290px */
  .hub-wrap { transform: scale(0.52); transform-origin: top center; margin-bottom: -221px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .btn-lg { padding: 14px 20px; font-size: .95rem; white-space: normal; text-align: center; }
}

/* ── Restore service carousel arrows at 3+ slides ── */
@media (min-width: 1101px) {
  .services-carousel-outer .swiper-button-prev,
  .services-carousel-outer .swiper-button-next { display: flex !important; }
}


/* ═══════════════════════════════════════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────────── */
.faq-hero {
  background: #F0F4F4;
  padding: 120px 0 64px;
}
.faq-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--clr-neutral);
  margin-bottom: 20px;
  line-height: 1.15;
}
.faq-hero-subtitle {
  color: var(--clr-neutral-lt);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* Search bar */
.faq-search-wrap {
  position: relative;
  max-width: 480px;
}
.faq-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-neutral-lt);
  font-size: 0.9rem;
  pointer-events: none;
}
.faq-search-input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: 1.5px solid #DDE4E4;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--clr-neutral);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.faq-search-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(0,121,123,.12);
}
.faq-search-input::-webkit-search-cancel-button { display: none; }

/* Hero image */
.faq-hero-img {
  display: flex;
  justify-content: flex-end;
}
.faq-hero-photo {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 48px rgba(0,0,0,.13);
}

/* ── Main section ──────────────────────────────────────────────────────── */
.faq-main-section {
  background: #fff;
  padding: 80px 0 100px;
}
.faq-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Sidebar ─────────────────────────────────────────────────────────── */
.faq-sidebar {
  position: sticky;
  top: 100px;
}
.faq-sidebar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-neutral-lt);
  margin-bottom: 14px;
}
.faq-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--clr-neutral);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.faq-cat-btn:hover {
  background: #F0F4F4;
  color: var(--clr-primary);
}
.faq-cat-btn.active {
  background: var(--clr-primary);
  color: #fff;
  font-weight: 600;
}

/* ── Accordion ───────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid #E4ECEC;
}
.faq-item:first-child {
  border-top: 1px solid #E4ECEC;
}
.faq-item.faq-hidden {
  display: none;
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 4px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--clr-neutral);
  cursor: pointer;
  text-align: left;
  transition: color .2s;
}
.faq-question:hover { color: var(--clr-primary); }
.faq-question span { flex: 1; }
.faq-chevron {
  font-size: 0.85rem;
  color: var(--clr-primary);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.faq-answer p {
  padding: 0 4px 24px;
  color: var(--clr-neutral-lt);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* Scroll-reveal animation */
.faq-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.faq-item.faq-in {
  opacity: 1;
  transform: translateY(0);
}

/* No-results state */
.faq-no-results {
  padding: 60px 20px;
  text-align: center;
  color: var(--clr-neutral-lt);
}
.faq-no-results i {
  display: block;
  font-size: 2.5rem;
  color: #C0D0D0;
  margin-bottom: 16px;
}
.faq-no-results p { font-size: 0.95rem; }

/* ── CTA section ─────────────────────────────────────────────────────── */
.faq-cta-section {
  background: #F0F4F4;
  padding: 100px 40px;
  text-align: center;
}
.faq-cta-inner {
  max-width: 660px;
  margin: 0 auto;
}
.faq-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #86F9BE;
  color: #00734B;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.faq-cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-neutral);
  margin-bottom: 16px;
}
.faq-cta-section > .faq-cta-inner > p {
  color: var(--clr-neutral-lt);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.faq-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: normal;
  text-align: center;
  word-break: break-word;
  min-width: 0;
  max-width: 100%;
}

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .faq-hero-inner { gap: 40px; }
  .faq-layout { grid-template-columns: 190px 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 170px 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .faq-hero { padding: 100px 0 56px; }
  .faq-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 28px;
  }
  .faq-hero-img { order: -1; justify-content: center; }
  .faq-hero-photo { max-width: 100%; aspect-ratio: 16 / 9; }

  .faq-main-section { padding: 56px 0 72px; }
  .faq-layout {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 28px;
  }
  .faq-sidebar { position: static; }
  .faq-category-list {
    flex-direction: column;
    gap: 8px;
  }
  .faq-cat-btn { width: 100%; padding: 10px 16px; text-align: left; }

  .faq-cta-section { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .faq-hero-content h1 { font-size: 1.75rem; }
  .faq-hero-subtitle { font-size: 0.95rem; }
  .faq-cta-section h2 { font-size: 1.5rem; }
  .faq-question { font-size: 0.95rem; padding: 18px 4px; }
}

@media (max-width: 320px) {
  .faq-cta-section { padding: 56px 16px; }
  .faq-support-btn { font-size: .85rem; padding: 12px 16px; gap: 7px; }
  .faq-support-btn img { width: 18px; height: 18px; }
}
