/* =============================================
   MaxSaaS Design System — Light Theme, Alliance No.2 / Brand Colors
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #ffffff;
  --bg2:         #f4fbfc;
  --bg3:         #e8f6f8;
  --border:      rgba(0,194,212,0.14);
  --border2:     rgba(0,194,212,0.28);
  --text:        #0b1e27;
  --text-muted:  #3d5a66;
  --text-faint:  #8fadb8;
  --brand:       #0b3549;
  --teal:        #00c2d4;
  --teal-lt:     #e6f9fb;
  --teal-mid:    rgba(0,194,212,0.12);
  --grad:        linear-gradient(135deg, #0b3549 0%, #007b8e 60%, #00c2d4 100%);
  --grad-btn:    linear-gradient(135deg, #0b3549, #0a6278);
  --grad-soft:   linear-gradient(135deg, #e6f9fb, #f0fbfc);
  --font:        "Alliance No. 2", Arial, sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 2px 14px rgba(11,53,73,0.08);
  --shadow:      0 8px 32px rgba(11,53,73,0.12);
  --shadow-lg:   0 20px 60px rgba(11,53,73,0.14);
}

html { scroll-behavior: smooth; }

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

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: rgba(11,53,73,0.1);
  box-shadow: 0 2px 20px rgba(11,53,73,0.07);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 36px;
}
.nav-logo {
  display: flex; align-items: center; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; display: block; }

.nav-links { display: flex; list-style: none; gap: 2px; margin-right: auto; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  display: flex; align-items: center; gap: 5px; transition: all 0.2s;
}
.nav-links a:hover { color: var(--brand); background: var(--teal-lt); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: #fff; border: 1px solid rgba(11,53,73,0.1);
  border-radius: var(--radius-sm); padding: 16px 8px 8px; margin: 0;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: all 0.2s; box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 14px; color: var(--text-muted) !important; font-size: 0.875rem; border-radius: 8px; }
.dropdown-menu a:hover { color: var(--brand) !important; background: var(--teal-lt); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--brand); margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 24px 20px; border-top: 1px solid rgba(11,53,73,0.08); background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-muted); text-decoration: none; padding: 10px 12px; font-size: 0.9rem; border-radius: 8px; }
.mobile-menu a:hover { background: var(--teal-lt); color: var(--brand); }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--grad-btn); color: #fff; text-decoration: none;
  padding: 11px 24px; border-radius: 999px;
  font-weight: 700; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; white-space: nowrap;
  border: none; cursor: pointer; font-family: var(--font);
  box-shadow: 0 4px 16px rgba(11,53,73,0.25);
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: linear-gradient(135deg,#0a2d3e,#0b5570); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(11,53,73,0.32); }
.btn-ghost { color: var(--text-muted); text-decoration: none; padding: 10px 16px; font-size: 0.9rem; font-weight: 500; border-radius: 999px; transition: 0.2s; font-family: var(--font); }
.btn-ghost:hover { color: var(--brand); background: var(--teal-lt); }
.btn-outline {
  background: #fff; border: 1.5px solid rgba(11,53,73,0.2);
  color: var(--brand); text-decoration: none;
  padding: 11px 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s; cursor: pointer; font-family: var(--font);
}
.btn-outline:hover { border-color: var(--teal); color: var(--brand); background: var(--teal-lt); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-white { background: #fff; color: var(--brand); padding: 15px 32px; border-radius: 999px; font-weight: 700; font-size: 1rem; text-decoration: none; display: inline-flex; align-items: center; transition: 0.2s; font-family: var(--font); box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-ghost-white { background: rgba(255,255,255,0.14); border: 1.5px solid rgba(255,255,255,0.4); color: #fff; padding: 15px 32px; border-radius: 999px; font-weight: 500; font-size: 1rem; text-decoration: none; display: inline-flex; align-items: center; transition: 0.2s; font-family: var(--font); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.22); }

/* ---- HERO ---- */
.hero {
  padding: 130px 0 80px; position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, #e8f6f8 0%, #f4fbfc 55%, #ffffff 100%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,194,212,0.06) 1px,transparent 1px), linear-gradient(90deg,rgba(0,194,212,0.06) 1px,transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%,black,transparent);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb1 { width: 520px; height: 520px; background: rgba(0,194,212,0.1); top: -130px; left: 50%; transform: translateX(-50%); }
.orb2 { width: 300px; height: 300px; background: rgba(11,53,73,0.06); bottom: 0; right: 5%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(0,194,212,0.3);
  color: var(--brand); font-size: 0.85rem; font-weight: 600;
  padding: 7px 18px; border-radius: 999px; margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,194,212,0.12);
  animation: fadeUp 0.6s ease both;
}
.badge-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title {
  font-family: var(--font); font-size: clamp(2.4rem,5.5vw,4rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 22px;
  letter-spacing: -0.025em; color: var(--brand);
  animation: fadeUp 0.6s 0.1s ease both;
}
.gradient-text {
  background: linear-gradient(135deg,#0b3549 0%,#007b8e 50%,#00c2d4 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted); font-weight: 400;
  max-width: 580px; margin: 0 auto 36px; line-height: 1.75;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; animation: fadeUp 0.6s 0.3s ease both; }
.hero-trust { color: var(--text-faint); font-size: 0.83rem; display: flex; gap: 10px; justify-content: center; align-items: center; margin-bottom: 60px; animation: fadeUp 0.6s 0.4s ease both; }
.dot { opacity: 0.4; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* Dashboard Mock */
.hero-visual { animation: fadeUp 0.8s 0.5s ease both; }
.dashboard-mock {
  background: #fff; border: 1px solid rgba(11,53,73,0.1);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(11,53,73,0.1), 0 0 0 1px rgba(11,53,73,0.05);
  max-width: 820px; margin: 0 auto;
}
.dash-topbar { background: #f4fbfc; padding: 12px 16px; display: flex; align-items: center; border-bottom: 1px solid rgba(11,53,73,0.08); }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.dash-dot.red{background:#ef4444;} .dash-dot.yellow{background:#f59e0b;} .dash-dot.green{background:#10b981;}
.dash-body { display: flex; }
.dash-sidebar { width: 160px; background: #f9fdfd; padding: 16px 10px; border-right: 1px solid rgba(11,53,73,0.08); }
.dash-nav-item { padding: 9px 12px; font-size: 0.8rem; color: var(--text-muted); border-radius: 8px; margin-bottom: 4px; cursor: pointer; }
.dash-nav-item.active { background: var(--teal-lt); color: var(--brand); font-weight: 700; border-left: 3px solid var(--teal); }
.dash-main { flex: 1; padding: 20px; background: #fff; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.stat-card { background: #f4fbfc; border: 1px solid rgba(0,194,212,0.15); border-radius: 10px; padding: 14px; }
.stat-num { font-family: var(--font); font-size: 1.3rem; font-weight: 800; color: var(--brand); }
.stat-label { font-size: 0.72rem; color: var(--text-faint); margin: 2px 0; }
.stat-up { font-size: 0.72rem; color: #059669; font-weight: 700; }
.dash-chart { background: #f4fbfc; border: 1px solid rgba(0,194,212,0.15); border-radius: 10px; padding: 16px; }
.chart-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.funnel-bars { display: flex; flex-direction: column; gap: 6px; }
.funnel-bar { height: 28px; background: var(--clr); border-radius: 5px; display: flex; align-items: center; justify-content: space-between; padding: 0 10px; font-size: 0.72rem; color: rgba(255,255,255,0.92); font-weight: 600; }

.logo-strip { margin-top: 50px; }
.logo-strip-label { color: var(--text-faint); font-size: 0.8rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.logos-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.logo-pill { background: #fff; border: 1px solid rgba(11,53,73,0.1); padding: 8px 20px; border-radius: 999px; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; transition: 0.2s; box-shadow: 0 1px 4px rgba(11,53,73,0.05); }
.logo-pill:hover { border-color: var(--teal); color: var(--brand); background: var(--teal-lt); }

/* =============================================
   KEKA-STYLE PLATFORM SECTION
   ============================================= */
.platform-section { padding: 100px 0; background: #fff; }
.platform-tabs { display: flex; gap: 40px; align-items: flex-start; margin-top: 60px; }
.platform-tab-list {
  flex-shrink: 0; width: 290px;
  position: sticky; top: 80px; align-self: flex-start;
}
.platform-tab {
  padding: 18px 22px; border-radius: 12px;
  cursor: pointer; margin-bottom: 6px;
  border: 1.5px solid transparent;
  transition: all 0.25s; background: transparent;
  text-align: left; width: 100%;
}
.platform-tab:hover { background: var(--teal-lt); }
.platform-tab.active { background: var(--brand); border-color: var(--brand); box-shadow: var(--shadow-sm); }
.platform-tab-title { font-size: 0.96rem; font-weight: 700; color: var(--text); margin-bottom: 5px; transition: color 0.2s; font-family: var(--font); }
.platform-tab.active .platform-tab-title { color: #fff; }
.platform-tab.active .platform-tab-desc { color: rgba(255,255,255,0.75); }
.platform-tab-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.platform-tab-preview {
  flex: 1; background: #fff;
  border: 1.5px solid rgba(11,53,73,0.1); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-lg); min-height: 400px;
}
.tab-pane { display: none; animation: tabFade 0.3s ease; }
.tab-pane.active { display: block; }
@keyframes tabFade { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.preview-header { background: #f4fbfc; padding: 14px 20px; border-bottom: 1px solid rgba(11,53,73,0.08); display: flex; align-items: center; gap: 10px; }
.preview-dots { display: flex; gap: 6px; }
.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.preview-title { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-left: 6px; }

/* Previews */
.mkt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
.mkt-card { background: #f4fbfc; border: 1px solid rgba(0,194,212,0.15); border-radius: 10px; padding: 16px; }
.mkt-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.mkt-card h5 { font-size: 0.85rem; font-weight: 800; margin-bottom: 4px; color: var(--brand); }
.mkt-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.mkt-stat-num { font-size: 1.4rem; font-weight: 800; color: var(--brand); margin-top: 8px; }
.mkt-stat-label { font-size: 0.68rem; color: var(--text-faint); }

.pipeline-preview { padding: 20px; }
.pp-col-head { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-faint); margin-bottom: 8px; }
.pp-card { background: #fff; border: 1px solid rgba(11,53,73,0.1); border-radius: 8px; padding: 10px 14px; margin-bottom: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
.pp-card-name { font-size: 0.82rem; font-weight: 700; color: var(--brand); margin-bottom: 3px; }
.pp-card-val { font-size: 0.72rem; color: var(--text-muted); }
.pp-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 999px; margin-top: 5px; }
.badge-hot { background: #fee2e2; color: #dc2626; }
.badge-warm { background: #fef3c7; color: #d97706; }
.badge-new { background: var(--teal-lt); color: var(--brand); }

.auto-preview { padding: 24px; }
.auto-step { background: #fff; border: 1.5px solid rgba(11,53,73,0.1); border-radius: 10px; padding: 12px 18px; width: 100%; display: flex; align-items: center; gap: 12px; box-shadow: 0 1px 6px rgba(11,53,73,0.05); }
.auto-step-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.auto-step-text { font-size: 0.85rem; font-weight: 700; color: var(--brand); }
.auto-step-sub { font-size: 0.73rem; color: var(--text-muted); }
.auto-connector { width: 2px; height: 18px; background: rgba(0,194,212,0.3); margin: 0 auto 0 26px; position: relative; }
.auto-connector::after { content:''; position:absolute; bottom:-5px; left:50%; transform:translateX(-50%); border-left:5px solid transparent; border-right:5px solid transparent; border-top:6px solid rgba(0,194,212,0.35); }

.inbox-preview { display: flex; height: 360px; }
.inbox-sidebar-list { width: 190px; border-right: 1px solid rgba(11,53,73,0.08); overflow-y: auto; background: #f9fdfd; }
.inbox-contact { padding: 12px 14px; border-bottom: 1px solid rgba(11,53,73,0.06); cursor: pointer; transition: 0.15s; }
.inbox-contact.active { background: var(--teal-lt); border-left: 3px solid var(--teal); }
.inbox-contact-name { font-size: 0.82rem; font-weight: 700; color: var(--brand); }
.inbox-contact-preview { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
.inbox-contact-ch { font-size: 0.65rem; color: var(--text-faint); margin-top: 3px; }
.inbox-chat-area { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; background: #fff; }
.chat-bubble { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 0.8rem; line-height: 1.5; }
.bubble-in { background: #f4fbfc; color: var(--brand); align-self: flex-start; border-bottom-left-radius: 4px; border: 1px solid rgba(0,194,212,0.15); }
.bubble-out { background: var(--grad-btn); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }

.booking-preview { padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cal-mini { background: #f4fbfc; border: 1px solid rgba(0,194,212,0.2); border-radius: 10px; padding: 16px; }
.cal-mini-head { font-size: 0.82rem; font-weight: 800; color: var(--brand); text-align: center; margin-bottom: 10px; }
.mini-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.mcd { font-size: 0.68rem; text-align: center; padding: 5px 2px; border-radius: 5px; font-weight: 500; }
.mcd.hd { color: var(--text-faint); font-weight: 800; text-transform: uppercase; font-size: 0.6rem; }
.mcd.booked { background: var(--teal-lt); color: var(--brand); }
.mcd.today { background: var(--grad-btn); color: #fff; border-radius: 50%; }
.mcd.normal { color: var(--text-muted); }
.upcoming-list { display: flex; flex-direction: column; gap: 8px; }
.upcoming-item { background: #f4fbfc; border: 1px solid rgba(0,194,212,0.15); border-radius: 8px; padding: 10px 12px; }
.upcoming-name { font-size: 0.82rem; font-weight: 700; color: var(--brand); }
.upcoming-time { font-size: 0.72rem; color: var(--teal); font-weight: 700; margin-top: 2px; }
.upcoming-service { font-size: 0.7rem; color: var(--text-faint); }

.analytics-preview { padding: 20px; }
.an-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.an-stat { background: #f4fbfc; border: 1px solid rgba(0,194,212,0.15); border-radius: 8px; padding: 12px; text-align: center; }
.an-stat-num { font-size: 1.2rem; font-weight: 800; color: var(--brand); }
.an-stat-label { font-size: 0.68rem; color: var(--text-faint); margin-top: 2px; }
.an-stat-trend { font-size: 0.68rem; color: #059669; font-weight: 700; }
.an-bar-chart { background: #f4fbfc; border: 1px solid rgba(0,194,212,0.15); border-radius: 8px; padding: 14px; }
.an-bar-title { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.an-bars { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.an-bar { flex: 1; border-radius: 4px 4px 0 0; }
.an-bar-labels { display: flex; gap: 6px; margin-top: 4px; }
.an-bar-label { flex: 1; text-align: center; font-size: 0.62rem; color: var(--text-faint); }

/* ---- SECTION SYSTEM ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-flex; align-items: center;
  background: var(--teal-lt); border: 1px solid rgba(0,194,212,0.3);
  color: var(--brand); font-size: 0.78rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font); font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 14px;
  letter-spacing: -0.015em; color: var(--brand);
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* ---- FEATURES GRID ---- */
.features-section { padding: 100px 0; background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 1.5px solid rgba(11,53,73,0.08); border-radius: var(--radius); padding: 32px;
  text-decoration: none; color: var(--text); transition: all 0.3s;
  opacity: 0; transform: translateY(24px); position: relative; overflow: hidden;
}
.feature-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; }
.card-indigo::before  { background: linear-gradient(90deg,#0b3549,#007b8e); }
.card-violet::before  { background: linear-gradient(90deg,#007b8e,#00c2d4); }
.card-blue::before    { background: linear-gradient(90deg,#00c2d4,#38bdf8); }
.card-teal::before    { background: linear-gradient(90deg,#0d9488,#059669); }
.card-amber::before   { background: linear-gradient(90deg,#d97706,#ea580c); }
.card-rose::before    { background: linear-gradient(90deg,#e11d48,#db2777); }
.feature-card.visible { opacity:1; transform:translateY(0); }
.feature-card:hover { transform:translateY(-6px); border-color:rgba(0,194,212,0.3); box-shadow:var(--shadow); }
.fc-icon { font-size:2.2rem; margin-bottom:12px; }
.fc-tag { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-faint); margin-bottom:10px; }
.feature-card h3 { font-family:var(--font); font-size:1.05rem; font-weight:800; margin-bottom:10px; line-height:1.3; color:var(--brand); }
.feature-card p { font-size:0.88rem; color:var(--text-muted); margin-bottom:16px; line-height:1.65; }
.fc-list { list-style:none; margin-bottom:20px; }
.fc-list li { font-size:0.82rem; color:var(--text-muted); padding:4px 0; padding-left:16px; position:relative; }
.fc-list li::before { content:'→'; position:absolute; left:0; color:var(--teal); font-size:0.75rem; }
.fc-cta { font-size:0.85rem; font-weight:700; color:var(--brand); }

/* ---- STATS BAND ---- */
.stats-band { background: var(--grad); padding: 64px 0; }
.stats-row { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; }
.stat-item { text-align:center; flex:1; min-width:140px; opacity:0; transform:translateY(16px); transition:all 0.6s; }
.stat-item.visible { opacity:1; transform:none; }
.stat-big { font-family:var(--font); font-size:2.6rem; font-weight:800; color:#fff; }
.stat-desc { font-size:0.9rem; color:rgba(255,255,255,0.7); margin-top:6px; }
.stat-divider { width:1px; height:60px; background:rgba(255,255,255,0.2); }

/* ---- HOW IT WORKS ---- */
.how-section { padding:100px 0; background:var(--bg2); }
.steps-row { display:flex; align-items:flex-start; gap:20px; flex-wrap:wrap; justify-content:center; }
.step-item { flex:1; min-width:160px; max-width:220px; text-align:center; opacity:0; transform:translateY(20px); transition:all 0.5s; }
.step-item.visible { opacity:1; transform:none; }
.step-num { font-family:var(--font); font-size:0.75rem; font-weight:700; color:var(--brand); letter-spacing:0.12em; margin-bottom:12px; background:var(--teal-lt); display:inline-block; padding:3px 10px; border-radius:999px; }
.step-icon { font-size:2.5rem; margin-bottom:12px; }
.step-item h4 { font-family:var(--font); font-size:1rem; font-weight:800; margin-bottom:8px; color:var(--brand); }
.step-item p { font-size:0.85rem; color:var(--text-muted); }
.step-arrow { font-size:1.4rem; color:var(--teal); margin-top:50px; flex-shrink:0; opacity:0.5; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding:100px 0; background:var(--bg); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card { background:#fff; border:1.5px solid rgba(11,53,73,0.08); border-radius:var(--radius); padding:28px; opacity:0; transform:translateY(20px); transition:all 0.5s; box-shadow:var(--shadow-sm); }
.testi-card.visible { opacity:1; transform:none; }
.testi-featured { border-color:var(--teal); box-shadow:0 12px 40px rgba(0,194,212,0.15); transform:translateY(-8px) !important; }
.testi-stars { color:#f59e0b; font-size:0.9rem; margin-bottom:14px; }
.testi-card p { font-size:0.95rem; color:var(--text-muted); line-height:1.7; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.82rem; font-weight:700; color:#fff; flex-shrink:0; }
.testi-author strong { display:block; font-size:0.9rem; color:var(--brand); font-weight:700; }
.testi-author span { font-size:0.78rem; color:var(--text-faint); }

/* ---- PRICING ---- */
.pricing-section { padding:100px 0; background:var(--bg2); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.price-card { background:#fff; border:1.5px solid rgba(11,53,73,0.08); border-radius:var(--radius); padding:36px; position:relative; opacity:0; transform:translateY(20px); transition:all 0.5s; }
.price-card.visible { opacity:1; transform:none; }
.price-popular { border-color:var(--teal); box-shadow:0 12px 40px rgba(0,194,212,0.15); }
.price-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--grad-btn); color:#fff; font-size:0.72rem; font-weight:700; padding:4px 16px; border-radius:999px; white-space:nowrap; }
.price-plan { font-family:var(--font); font-size:0.9rem; font-weight:800; text-transform:uppercase; letter-spacing:0.08em; color:var(--text-muted); margin-bottom:12px; }
.price-amount { font-family:var(--font); font-size:3rem; font-weight:800; margin-bottom:12px; color:var(--brand); letter-spacing:-0.02em; }
.price-amount sup { font-size:1.2rem; margin-right:2px; color:var(--text-muted); }
.price-amount sub { font-size:0.9rem; color:var(--text-muted); }
.price-desc { font-size:0.88rem; color:var(--text-muted); margin-bottom:24px; }
.price-features { list-style:none; margin-bottom:28px; }
.price-features li { font-size:0.88rem; color:var(--text-muted); padding:8px 0; border-bottom:1px solid rgba(11,53,73,0.06); display:flex; gap:8px; }
.price-features li::before { content:'✓'; color:var(--teal); font-weight:800; }
.price-features li:last-child { border:none; }

/* ---- CTA ---- */
.cta-section { padding:100px 0; background:var(--bg); }
.cta-inner { background:var(--grad); border-radius:24px; padding:80px 40px; text-align:center; position:relative; overflow:hidden; }
.cta-orb { position:absolute; width:400px; height:400px; background:rgba(255,255,255,0.07); border-radius:50%; top:-150px; right:-100px; filter:blur(60px); }
.cta-inner h2 { font-family:var(--font); font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:800; margin-bottom:16px; color:#fff; letter-spacing:-0.02em; }
.cta-inner p { font-size:1rem; color:rgba(255,255,255,0.85); max-width:520px; margin:0 auto 36px; line-height:1.7; }
.cta-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:20px; }
.cta-note { font-size:0.82rem; color:rgba(255,255,255,0.6); }

/* ---- FOOTER ---- */
.footer { background: #071824; padding:64px 0 32px; }
.footer-top { display:flex; gap:60px; flex-wrap:wrap; margin-bottom:48px; }
.footer-brand { flex:1; min-width:220px; }
.footer-brand img { height:30px; width:auto; display:block; margin-bottom:14px; filter:brightness(0) invert(1); }
.footer-brand p { font-size:0.88rem; color:#5a7a88; margin-bottom:20px; max-width:260px; line-height:1.6; }
.footer-socials { display:flex; gap:10px; }
.footer-socials a { width:36px; height:36px; background:#0d2535; border:1px solid #1a3a4d; border-radius:8px; display:flex; align-items:center; justify-content:center; color:#5a7a88; text-decoration:none; font-size:0.85rem; transition:0.2s; }
.footer-socials a:hover { border-color:var(--teal); color:#fff; }
.footer-links { display:flex; gap:60px; flex-wrap:wrap; }
.footer-col { display:flex; flex-direction:column; gap:10px; }
.footer-col h5 { font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:#e2edf2; margin-bottom:6px; }
.footer-col a { color:#5a7a88; text-decoration:none; font-size:0.88rem; transition:0.2s; }
.footer-col a:hover { color:#b0ccd8; }
.footer-bottom { border-top:1px solid #0d2535; padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:0.82rem; color:#3d5a66; }
.footer-legal { display:flex; gap:20px; }
.footer-legal a { font-size:0.82rem; color:#3d5a66; text-decoration:none; }
.footer-legal a:hover { color:#5a7a88; }

/* ---- FEATURE PAGES ---- */
.page-hero { padding:130px 0 80px; text-align:center; position:relative; overflow:hidden; background:linear-gradient(180deg,#e8f6f8,#ffffff); }
.page-hero-content { position:relative; z-index:1; }
.page-hero h1 { font-family:var(--font); font-size:clamp(2rem,4.5vw,3.4rem); font-weight:800; line-height:1.12; margin-bottom:20px; letter-spacing:-0.02em; color:var(--brand); }
.page-hero p { font-size:1.1rem; color:var(--text-muted); max-width:560px; margin:0 auto 36px; }
.feature-detail-section { padding:100px 0; }
.feature-bento { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:60px; }
.bento-card { background:#fff; border:1.5px solid rgba(11,53,73,0.08); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow-sm); }
.bento-card.bento-full { grid-column:1/-1; }
.bento-card h3 { font-family:var(--font); font-size:1.2rem; font-weight:800; margin-bottom:10px; color:var(--brand); }
.bento-card p { font-size:0.9rem; color:var(--text-muted); line-height:1.7; }
.bento-icon { font-size:2.4rem; margin-bottom:14px; }
.bento-highlight { background:linear-gradient(135deg,var(--teal-lt),#f0fbfc); border-color:rgba(0,194,212,0.25); }
.bento-chip-row { display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; }
.bento-chip { background:var(--teal-lt); border:1px solid rgba(0,194,212,0.25); color:var(--brand); font-size:0.78rem; padding:4px 12px; border-radius:999px; font-weight:600; }
.sub-features { padding:80px 0; background:var(--bg2); }
.sub-feat-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.sub-feat-item { display:flex; gap:18px; align-items:flex-start; opacity:0; transform:translateY(16px); transition:0.5s; }
.sub-feat-item.visible { opacity:1; transform:none; }
.sub-feat-icon { width:46px; height:46px; flex-shrink:0; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; background:var(--teal-lt); }
.sub-feat-item h4 { font-family:var(--font); font-size:0.95rem; font-weight:800; margin-bottom:6px; color:var(--brand); }
.sub-feat-item p { font-size:0.85rem; color:var(--text-muted); line-height:1.6; }

/* ---- RESPONSIVE ---- */
@media(max-width:900px){
  .features-grid{grid-template-columns:1fr 1fr;}
  .testimonials-grid,.pricing-grid{grid-template-columns:1fr;}
  .feature-bento{grid-template-columns:1fr;}
  .bento-card.bento-full{grid-column:auto;}
  .testi-featured{transform:none !important;}
  .sub-feat-grid{grid-template-columns:1fr;}
  .stat-divider{display:none;}
  .steps-row{flex-direction:column;align-items:center;}
  .step-arrow{transform:rotate(90deg);margin:0;}
  .platform-tabs{flex-direction:column;}
  .platform-tab-list{width:100%;position:static;}
  .platform-tab-preview{min-height:300px;}
}
@media(max-width:680px){
  .features-grid{grid-template-columns:1fr;}
  .nav-links,.nav-actions .btn-ghost{display:none;}
  .nav-burger{display:block;}
  .footer-top{flex-direction:column;}
  .footer-links{gap:32px;}
  .dash-sidebar{display:none;}
  .dash-stats{grid-template-columns:1fr 1fr;}
  .booking-preview{grid-template-columns:1fr;}
  .mkt-grid{grid-template-columns:1fr;}
}

/* =============================================
   CONNECTLY-INSPIRED SECTIONS
   ============================================= */

/* ---- DARK TAG (for dark sections) ---- */
.dark-tag {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px; display: inline-block;
}

/* ---- DARK FEATURE SECTION ---- */
.dark-feature-section {
  background: #071824;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.dark-feature-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,194,212,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.dark-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dark-feature-inner--reverse {
  grid-template-columns: 1fr 1fr;
}
.dark-feature-text h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #e8f4f8;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.dark-feature-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 440px;
}
.dark-feat-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dark-feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.dark-feat-icon {
  width: 38px; height: 38px;
  background: rgba(0,194,212,0.1);
  border: 1px solid rgba(0,194,212,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.dark-feat-item strong {
  display: block;
  font-size: 0.88rem; font-weight: 700;
  color: #d0e8f0;
  margin-bottom: 2px;
}
.dark-feat-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.dark-feat-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-teal {
  background: var(--teal);
  color: #071824;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  font-family: var(--font);
  white-space: nowrap;
}
.btn-teal:hover { background: #00d8ec; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,194,212,0.35); }
.btn-ghost-dark {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  font-family: var(--font);
}
.btn-ghost-dark:hover { color: rgba(255,255,255,0.85); }

/* Dark UI Mock */
.dark-ui-mock {
  background: #0b2535;
  border: 1px solid rgba(0,194,212,0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,194,212,0.08);
}
.dum-header {
  background: #071824;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.dum-dot {
  width: 10px; height: 10px;
  border-radius: 50%; margin-right: 2px;
}
.dum-header span { margin-left: 8px; }
.dum-body { padding: 18px; }
.dum-campaign {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.dum-camp-left { display: flex; gap: 12px; align-items: center; }
.dum-camp-icon {
  width: 36px; height: 36px;
  background: rgba(0,194,212,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.dum-camp-name { font-size: 0.82rem; font-weight: 700; color: #c8e4ee; }
.dum-camp-sub { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.dum-camp-stats { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.dum-stat-pill {
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
}
.dum-stat-pill.green { background: rgba(16,185,129,0.15); color: #34d399; }
.dum-stat-pill.teal { background: rgba(0,194,212,0.15); color: #00c2d4; }
.dum-mini-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
  margin-top: 4px;
}
.dum-chart-label { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-bottom: 10px; }
.dum-bars { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.dum-bar {
  flex: 1;
  background: rgba(0,194,212,0.25);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}
.dum-bar.active { background: #00c2d4; }

/* ---- STAT CALLOUT SECTION ---- */
.stat-callout-section {
  background: #0b3549;
  padding: 64px 0;
}
.scb-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.scb-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
}
.scb-num {
  font-family: var(--font);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
  margin-bottom: 10px;
}
.scb-num span {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: #00c2d4;
  line-height: 1;
}
.scb-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 160px;
  margin: 0 auto;
}
.scb-divider {
  width: 1px; height: 80px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ---- DARK AUTOMATION SECTION ---- */
.dark-alt-section {
  background: #071824;
  padding: 100px 0;
}
.das-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.das-text h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #e8f4f8;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.das-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.das-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.das-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s;
}
.das-card:hover {
  background: rgba(0,194,212,0.07);
  border-color: rgba(0,194,212,0.2);
  transform: translateY(-3px);
}
.das-card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.das-card h4 {
  font-family: var(--font);
  font-size: 0.9rem; font-weight: 800;
  color: #d0e8f0;
  margin-bottom: 8px;
}
.das-card p { font-size: 0.8rem; color: rgba(255,255,255,0.38); line-height: 1.6; }

/* ---- EDITORIAL QUOTE SECTION ---- */
.editorial-section {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}
.editorial-quote {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand);
  letter-spacing: -0.025em;
  margin-bottom: 44px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.editorial-quote em {
  font-style: normal;
  background: linear-gradient(135deg, #0b3549, #007b8e, #00c2d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- DARK GRID SECTION ---- */
.dark-grid-section {
  background: #071824;
  padding: 100px 0;
}
.dgs-header {
  text-align: center;
  margin-bottom: 60px;
}
.dgs-header h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #e8f4f8;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.dgs-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.dgs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.dgs-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
}
.dgs-card:hover {
  background: rgba(0,194,212,0.07);
  border-color: rgba(0,194,212,0.18);
  transform: translateY(-4px);
}
.dgs-icon { font-size: 2rem; margin-bottom: 14px; }
.dgs-card h4 {
  font-family: var(--font);
  font-size: 0.95rem; font-weight: 800;
  color: #d0e8f0; margin-bottom: 8px;
}
.dgs-card p { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.65; }

/* ---- DISRUPTOR SECTION ---- */
.disruptor-section {
  padding: 100px 0;
  background: #f4fbfc;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.disruptor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,194,212,0.06) 0%, transparent 70%);
}
.disruptor-text {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--brand);
  letter-spacing: -0.025em;
  margin-bottom: 44px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.disruptor-text em {
  font-style: normal;
  background: linear-gradient(135deg, #007b8e, #00c2d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- RESPONSIVE FOR NEW SECTIONS ---- */
@media (max-width: 900px) {
  .dark-feature-inner,
  .dark-feature-inner--reverse { grid-template-columns: 1fr; gap: 40px; }
  .dark-feature-inner--reverse .dark-feature-visual { order: -1; }
  .das-inner { grid-template-columns: 1fr; }
  .das-grid { grid-template-columns: 1fr 1fr; }
  .dgs-grid { grid-template-columns: 1fr 1fr; }
  .scb-grid { justify-content: center; }
  .scb-divider { display: none; }
}
@media (max-width: 680px) {
  .das-grid,
  .dgs-grid { grid-template-columns: 1fr; }
  .editorial-quote,
  .disruptor-text { font-size: 1.8rem; }
  .scb-num span { font-size: 2rem; }
}
