/*
TemplateMo 622 Clearwave
https://templatemo.com/tm-622-clearwave
Free for personal and commercial use
*/

/* ── TOKENS ── */


:root {
  /* Backgrounds */
  --bg: #FFFFFF;
  --bg-alt: #F7F7F7;

  /* Surfaces */
  --surface: #FAFAFA;
  --surface-2: #FFFFFF;

  /* Accent */
  --accent: #111111;
  --accent-mid: #222222;
  --accent-light: #555555;

  /* Accent transparent */
  --accent-ghost: rgba(17, 17, 17, 0.06);
  --accent-border: rgba(17, 17, 17, 0.12);

  /* Text */
  --text-1: #111111;
  --text-2: #444444;
  --text-3: #777777;

  /* Borders */
  --border: rgba(17, 17, 17, 0.08);

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);

  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.07);

  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.10);

  /* Animation */
  --silk: cubic-bezier(0.16, 1, 0.3, 1);
  --silk-dur: 0.8s;

  /* Radius */
  --radius: 16px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

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

/* ── SUBTLE NOISE TEXTURE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── UTILITY ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-1);
}

.section-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
}

.section-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 520px;
  margin-top: 16px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--silk), transform 0.7s var(--silk);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
   1. NAV — MINIMAL BLACK & WHITE
══════════════════════════════════════════ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;

  padding: 22px 0;

  transition:
    padding 0.45s var(--silk),
    background 0.45s var(--silk),
    border-color 0.45s var(--silk),
    box-shadow 0.45s var(--silk),
    backdrop-filter 0.45s var(--silk);
}

/* Scrolled */
.nav.scrolled {
  padding: 14px 0;

  background: rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.04);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;

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

/* ══════════════════════════════════════════
   Logo
══════════════════════════════════════════ */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;

  color: #000;
}

.nav-logo span {
  opacity: 0.45;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   Desktop Links
══════════════════════════════════════════ */

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  position: relative;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;

  color: #555;

  transition:
    color 0.35s var(--silk),
    background 0.35s var(--silk),
    transform 0.35s var(--silk);
}

/* Elegant Hover */
.nav-links a:hover {
  color: #000;

  background: rgba(0, 0, 0, 0.05);

  transform: translateY(-1px);
}

/* Active */
.nav-links a.active {
  background: #000;
  color: #fff;

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Subtle underline effect */
.nav-links a::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 4px;

  width: 0;
  height: 1.5px;

  background: #000;

  transition:
    width 0.35s var(--silk),
    left 0.35s var(--silk);

  opacity: 0.15;
}

.nav-links a:hover::after {
  width: 40%;
  left: 30%;
}

.nav-links a.active::after {
  display: none;
}

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Ghost Button */
.btn-ghost {
  padding: 10px 18px;
  border-radius: 999px;

  font-size: 0.88rem;
  font-weight: 600;

  color: #555;

  transition:
    background 0.35s var(--silk),
    color 0.35s var(--silk),
    transform 0.35s var(--silk);
}

.btn-ghost:hover {
  color: #000;

  background: rgba(0, 0, 0, 0.05);

  transform: translateY(-1px);
}

/* Primary Button */
.btn-primary {
  position: relative;

  overflow: hidden;

  padding: 11px 22px;
  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: #000;
  color: #fff;

  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.4s var(--silk),
    box-shadow 0.4s var(--silk),
    background 0.4s var(--silk);
}

/* glossy effect */
.btn-primary::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(120deg,
      rgba(255, 255, 255, 0.16),
      transparent 45%);

  opacity: 0.6;
}

.btn-primary:hover {
  background: #111;

  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.20);
}

/* ══════════════════════════════════════════
   Hamburger
══════════════════════════════════════════ */

.nav-hamburger {
  display: none;

  width: 30px;
  padding: 4px;

  flex-direction: column;
  gap: 6px;

  cursor: pointer;
}

.nav-hamburger span {
  width: 100%;
  height: 2px;

  background: #000;
  border-radius: 999px;

  transition: all 0.4s var(--silk);
}

/* Animation */
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ══════════════════════════════════════════
   Mobile Menu
══════════════════════════════════════════ */

.mobile-menu {
  position: fixed;
  inset: 0;

  z-index: 999;

  background: rgba(255, 255, 255, 0.94);

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding: 110px 32px 70px;

  overflow-y: auto;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity 0.45s var(--silk);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Links */
.mobile-menu a {
  width: 100%;
  max-width: 420px;

  padding: 18px 0;

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  text-align: center;

  font-size: 1.05rem;
  font-weight: 600;

  color: #000;

  opacity: 0;
  transform: translateY(14px);

  transition:
    opacity 0.45s var(--silk),
    transform 0.45s var(--silk),
    color 0.3s;
}

.mobile-menu a:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a:hover {
  color: #666;
}

/* Stagger */
.mobile-menu a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu a:nth-child(2) {
  transition-delay: 0.10s;
}

.mobile-menu a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu a:nth-child(4) {
  transition-delay: 0.20s;
}

.mobile-menu a:nth-child(5) {
  transition-delay: 0.25s;
}

/* Mobile CTA */
.mobile-menu .mobile-cta {
  margin-top: 32px;

  padding: 14px 38px;
  border-radius: 999px;

  background: #000;
  color: #fff;

  font-size: 0.95rem;
  font-weight: 700;

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.14);

  opacity: 0;
  transform: translateY(14px);

  transition:
    opacity 0.45s var(--silk) 0.3s,
    transform 0.45s var(--silk) 0.3s,
    background 0.3s;
}

.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu .mobile-cta:hover {
  background: #111;
}

/* ══════════════════════════════════════════
   Responsive
══════════════════════════════════════════ */

@media (max-width: 960px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    padding: 0 20px;
  }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;

  color: #000;

  transition:
    transform 0.35s var(--silk),
    opacity 0.35s var(--silk);
}

.nav-logo:hover {
  transform: translateY(-1px);
}

/* Logo Image */
.nav-logo-img {
  width: 60px;
  height: 60px;

  object-fit: contain;

  border-radius: 12px;

  filter:
    contrast(1.05) grayscale(1);

  transition:
    transform 0.4s var(--silk),
    filter 0.4s var(--silk);
}

.nav-logo:hover .nav-logo-img {
  transform: rotate(-4deg) scale(1.04);

  filter:
    contrast(1.1) grayscale(0);
}

/* Logo Text */
.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;

  letter-spacing: -0.04em;

  color: #000;
}

.nav-logo-text strong {
  font-weight: 800;

  opacity: 0.55;
}

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

/* Decorative background circles */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(ellipse at center, rgba(91, 191, 181, 0.18) 0%, rgba(42, 157, 143, 0.06) 50%, transparent 75%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 40vw;
  height: 40vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(ellipse at center, rgba(26, 122, 110, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-badge span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
}

.hero-badge strong {
  color: var(--accent);
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-lg {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
  box-shadow: 0 6px 24px rgba(26, 122, 110, 0.30);
}

.btn-primary-lg:hover {
  background: var(--accent-mid);
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(26, 122, 110, 0.40);
}

.btn-primary-lg .btn-arrow {
  transition: transform 0.4s var(--silk);
}

.btn-primary-lg:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline-lg {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  border: 1.5px solid var(--accent-border);
  padding: 13px 28px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.4s var(--silk), border-color 0.4s var(--silk), transform var(--silk-dur) var(--silk);
}

.btn-outline-lg:hover {
  background: var(--accent-ghost);
  border-color: var(--accent);
  transform: scale(1.02);
}

/* Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-3);
  font-weight: 500;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-dashboard {
  width: 100%;
  max-width: 520px;
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--silk-dur) var(--silk);
}

.hero-dashboard:hover {
  transform: scale(1.01);
}

.dashboard-bar {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.db-dot:nth-child(1) {
  background: #FF5F57;
}

.db-dot:nth-child(2) {
  background: #FFBD2E;
}

.db-dot:nth-child(3) {
  background: #28CA41;
}

.dashboard-body {
  padding: 24px;
}

.db-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.db-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}

.db-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  padding: 3px 10px;
  border-radius: 100px;
}

.db-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 20px;
}

.db-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  transition: height 1s var(--silk);
}

.db-bar.active {
  background: var(--accent);
  border-color: var(--accent);
}

.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.db-stat {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px;
  border: 1px solid var(--border);
}

.db-stat-val {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.03em;
}

.db-stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 2px;
}

.db-stat-change {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 4px;
}

/* Floating badge on hero visual */
.hero-float-badge {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.float-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.float-badge-text {
  font-size: 0.75rem;
}

.float-badge-text strong {
  display: block;
  font-weight: 700;
  color: var(--text-1);
}

.float-badge-text span {
  color: var(--text-3);
}

.hero-float-badge-2 {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--accent);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(26, 122, 110, 0.35);
  animation: floatBadge2 4s ease-in-out 2s infinite;
}

@keyframes floatBadge2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.float-badge-2-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.float-badge-2-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* ══════════════════════════════════════════
       3. LOGO TICKER
    ══════════════════════════════════════════ */


/* ══════════════════════════════════════════
       4. FEATURES
    ══════════════════════════════════════════ */
.features-section {
  padding: 120px 0;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-header .section-sub {
  margin: 16px auto 0;
  text-align: center;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-content {}

.feature-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}

.feature-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.feature-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 28px;
}

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

.feature-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.feature-visual {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
}

.feature-visual:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
}

.feature-visual-inner {
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fv-row {
  display: flex;
  gap: 12px;
}

.fv-card {
  flex: 1;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.fv-card-label {
  font-size: 0.72rem;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 6px;
}

.fv-card-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.03em;
}

.fv-card-bar {
  height: 4px;
  border-radius: 2px;
  margin-top: 10px;
  background: var(--bg);
  overflow: hidden;
}

.fv-card-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
}

.fv-wide {
  flex: 2;
}

.fv-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fv-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
  font-size: 0.8rem;
}

.fv-list-name {
  color: var(--text-2);
  font-weight: 500;
}

.fv-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.fv-pill.green {
  background: rgba(26, 122, 110, 0.12);
  color: var(--accent);
}

.fv-pill.blue {
  background: rgba(42, 157, 143, 0.12);
  color: var(--accent-mid);
}

.fv-pill.dim {
  background: var(--border);
  color: var(--text-3);
}

/* ═══════════════════════════════════════
   SHOWCASE
═══════════════════════════════════════ */

.showcase-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.showcase-tab {
  height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: .35s ease;
  font-weight: 700;
}

.showcase-tab:hover {
  transform: translateY(-2px);
}

.showcase-tab.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.showcase-panel {
  display: none;
}

.showcase-panel.active {
  display: block;
}

/* ═══════════════════════════════════════
   STAGE
═══════════════════════════════════════ */

.carousel-stage {
  position: relative;
  height: 760px;
  perspective: 1800px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* ═══════════════════════════════════════
   PHONE
═══════════════════════════════════════ */

.phone-card,
.desktop-card,
.web-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transition:
    transform .7s cubic-bezier(.22, 1, .36, 1),
    opacity .7s cubic-bezier(.22, 1, .36, 1);
}

.phone-shell {
  width: 280px;
  background: #d8e0df;
  padding: 5px;
  border-radius: 34px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, .18);
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
}

.phone-screen img,
.desktop-shell img,
.web-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════
   DESKTOP
═══════════════════════════════════════ */

.desktop-shell {
  width: 720px;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, .18);
}

/* ═══════════════════════════════════════
   WEB
═══════════════════════════════════════ */

.web-shell {
  width: 1100px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, .18);
}

/* ═══════════════════════════════════════
   CONTROLS
═══════════════════════════════════════ */

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-1);
  cursor: pointer;
  transition: .35s ease;
}

.carousel-btn:hover {
  background: var(--accent);
  color: white;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--border);
  transition: .35s ease;
  cursor: pointer;
}

.carousel-dot.active {
  width: 26px;
  background: var(--accent);
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */

@media (max-width: 768px) {

  .carousel-stage {
    height: 560px;
  }

  .phone-shell {
    width: 210px;
  }

  .desktop-shell {
    width: 92vw;
  }

  .web-shell {
    width: 94vw;
  }

}

/* ══════════════════════════════════════════
       6. STATS
    ══════════════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  transition: background var(--silk-dur) var(--silk);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card:hover {
  background: var(--surface-2);
}

.stat-rule {
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 24px;
  transition: width 0.5s var(--silk);
}

.stat-card:hover .stat-rule {
  width: 56px;
}

.stat-value {
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-suffix {
  font-size: 55%;
  color: var(--accent);
  font-weight: 600;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}

.stat-sublabel {
  font-size: 0.78rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
       7. PRICING
    ══════════════════════════════════════════ */
.pricing-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header .section-sub {
  margin: 16px auto 0;
  text-align: center;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
}

.toggle-label.active {
  color: var(--accent);
  font-weight: 600;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  border-radius: 100px;
  background: var(--accent);
  cursor: pointer;
  position: relative;
  transition: background 0.4s var(--silk);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.4s var(--silk);
}

.toggle-switch.annual::after {
  transform: translateX(24px);
}

.toggle-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  padding: 3px 10px;
  border-radius: 100px;
}

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

.pricing-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
  position: relative;
}

.pricing-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--text-1);
  box-shadow: 0 20px 60px rgba(26, 122, 110, 0.25);
}

.pricing-card.featured:hover {
  transform: scale(1.025);
  box-shadow: 0 28px 80px rgba(26, 122, 110, 0.35);
}

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

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-tier {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}

.price-annual-note {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 16px;
  min-height: 1.2em;
  transition: opacity 0.4s var(--silk);
}

.pricing-card.featured .price-annual-note {
  color: rgba(255, 255, 255, 0.4);
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-2);
  margin-top: 6px;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-1);
  line-height: 1;
}

.pricing-card.featured .price-currency,
.pricing-card.featured .price-amount {
  color: #fff;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-3);
}

.pricing-card.featured .price-period {
  color: rgba(255, 255, 255, 0.5);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-divider {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
}

.pricing-card.featured .pricing-feature {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-ghost);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}

.pricing-card.featured .pricing-check {
  background: rgba(91, 191, 181, 0.2);
  border-color: rgba(91, 191, 181, 0.4);
  color: var(--accent-light);
}

.pricing-cta {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px;
  border-radius: 100px;
  border: 1.5px solid var(--accent-border);
  color: var(--accent);
  transition: all 0.4s var(--silk);
}

.pricing-cta:hover {
  background: var(--accent-ghost);
}

.pricing-card.featured .pricing-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(26, 122, 110, 0.35);
}

.pricing-card.featured .pricing-cta:hover {
  background: var(--accent-mid);
}

/* ══════════════════════════════════════════
       8. TESTIMONIALS
    ══════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-sub {
  margin: 16px auto 0;
  text-align: center;
}

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

.testimonial-card {
  background: var(--surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk);
}

.testimonial-card:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-md);
}

.testimonial-card.tall {
  grid-row: span 2;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--accent);
  font-size: 14px;
}

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

.testimonial-card.tall .testimonial-quote {
  font-size: 1.0625rem;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
  background: var(--accent-ghost);
}

.author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-1);
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 1px;
}

/* ══════════════════════════════════════════
       9. INTEGRATIONS
    ══════════════════════════════════════════ */
.integrations-section {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.integrations-header {
  text-align: center;
  margin-bottom: 56px;
}

.integrations-header .section-sub {
  margin: 16px auto 0;
  text-align: center;
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.integration-tile {
  background: var(--surface-2);
  border-radius: 100px;
  border: 1px solid var(--border);
  padding: 10px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--silk-dur) var(--silk), box-shadow var(--silk-dur) var(--silk),
    border-color 0.4s, color 0.4s, background 0.4s;
  cursor: default;
}

.integration-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-border);
  background: var(--accent-ghost);
}

.integration-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.integration-tile:hover .integration-name {
  color: var(--accent);
}

/* ══════════════════════════════════════════
       10. FAQ
    ══════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq-sidebar .section-sub {
  margin-top: 16px;
  margin-bottom: 32px;
}

.faq-toggle-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s;
}

.faq-toggle-all:hover {
  opacity: 0.75;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  gap: 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.5s var(--silk), background 0.4s, color 0.4s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--silk);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-2);
  padding-bottom: 0;
  transition: padding-bottom 0.5s var(--silk);
}

.faq-item.open .faq-answer-inner {
  padding-bottom: 20px;
}

/* ══════════════════════════════════════════
       11. CTA BANNER
    ══════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
}

.cta-inner {
  background: var(--text-1);
  border-radius: var(--radius-lg);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(91, 191, 181, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  border: 1px solid rgba(91, 191, 181, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.cta-title em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--accent-light);
}

.cta-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 16px 36px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background var(--silk-dur) var(--silk), transform var(--silk-dur) var(--silk);
  box-shadow: 0 8px 32px rgba(26, 122, 110, 0.40);
}

.btn-cta-primary:hover {
  background: var(--accent-mid);
  transform: scale(1.02);
}

.btn-cta-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}

.btn-cta-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════════
       12. FOOTER
    ══════════════════════════════════════════ */
.footer {
  background: var(--text-1);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: block;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 700;
  transition: all 0.4s var(--silk);
}

.social-btn:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.footer-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
}

.footer-copy a:hover {
  color: var(--accent-light);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

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

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

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

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

  .cta-inner {
    flex-direction: column;
    padding: 56px 40px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .carousel-zoom {
    padding: 30px 0 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .testimonial-card.tall {
    grid-row: auto;
  }

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

  .cta-inner {
    padding: 40px 24px;
  }

  .pricing-grid {
    max-width: 100%;
  }

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

  .hero-float-badge-2 {
    right: 0;
  }

  /* Carousel mobile */
  .carousel-stage {
    height: 400px;
  }

  :root {
    --pw: 150px;
    --gap1: 168px;
    --gap2: 300px;
    --gap-hide: 430px;
  }

  .phone-card[data-pos="left2"],
  .phone-card[data-pos="right2"] {
    opacity: 0.35;
  }
}

@media (max-width: 480px) {

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

  .hero-trust {
    gap: 12px;
  }

  .trust-divider {
    display: none;
  }
}



.footer {
  position: relative;
  background: #0f172a;
  color: #cbd5e1;
  padding: 5rem 0 2rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(59, 130, 246, 0.15),
      transparent 30%);
  pointer-events: none;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo span {
  color: #61a5fa;
}

.footer-brand-desc {
  line-height: 1.9;
  color: #94a3b8;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  text-decoration: none;
  transition: .3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-btn:hover {
  transform: translateY(-4px);
  background: #61a5fa;
  border-color: #61a5fa;
}

.footer-title {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.footer-links a,
.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  transition: .25s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
  transform: translateX(-3px);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  color: #64748b;
  font-size: .95rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer {
    padding-top: 4rem;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.cta-section {
  padding: 7rem 0;
  position: relative;
}

.cta-inner {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(135deg,
      #0f172a 0%,
      #111827 50%,
      #1e293b 100%);

  border-radius: 36px;

  padding: 4rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 30px 80px rgba(15, 23, 42, .35),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
  pointer-events: none;
}

.glow-1 {
  width: 260px;
  height: 260px;
  background: #3b82f6;
  top: -100px;
  right: -80px;
}

.glow-2 {
  width: 220px;
  height: 220px;
  background: #8b5cf6;
  bottom: -100px;
  left: -50px;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;

  background: rgba(255, 255, 255, .08);

  border: 1px solid rgba(255, 255, 255, .08);

  color: #dbeafe;

  padding: .75rem 1rem;

  border-radius: 999px;

  font-size: .95rem;

  margin-bottom: 1.5rem;

  backdrop-filter: blur(10px);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  position: relative;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid #22c55e;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(.8);
  }

  to {
    opacity: 0;
    transform: scale(2);
  }
}

.cta-title {
  color: white;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.cta-title span {
  color: #61a5fa;
}

.cta-title em {
  font-style: normal;
  color: #c4b5fd;
}

.cta-sub {
  color: #94a3b8;
  line-height: 2;
  font-size: 1.08rem;
  margin-bottom: 2rem;
  max-width: 580px;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: .7rem;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .06);

  color: #e2e8f0;

  padding: .9rem 1rem;

  border-radius: 16px;

  font-size: .95rem;
}

.cta-feature i {
  color: #60a5fa;
}

.cta-actions {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  min-width: 320px;
}

.btn-cta-primary,
.btn-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 1.1rem 1.3rem;

  border-radius: 22px;

  text-decoration: none;

  transition: .3s ease;

  border: 1px solid transparent;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #25d366, #16a34a);
  color: white;
  box-shadow: 0 20px 40px rgba(34, 197, 94, .25);
}

.btn-cta-primary:hover {
  transform: translateY(-5px);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .08);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .09);
}

.btn-cta-primary i,
.btn-cta-secondary i {
  font-size: 1.4rem;
}

.btn-small {
  display: block;
  font-size: .8rem;
  opacity: .75;
  margin-bottom: .2rem;
}

.btn-arrow {
  width: 42px;
  height: 42px;

  border-radius: 14px;

  background: rgba(255, 255, 255, .15);

  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
  }

  .cta-actions {
    width: 100%;
    min-width: unset;
  }

}

@media (max-width: 640px) {

  .cta-section {
    padding: 5rem 0;
  }

  .cta-inner {
    border-radius: 28px;
    padding: 2rem 1.4rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-features {
    flex-direction: column;
  }

}

.hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 7rem;
  background:
    linear-gradient(180deg,
      #f8fafc 0%,
      #eef4ff 100%);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(59, 130, 246, .15),
      transparent 35%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .03) 1px, transparent 1px);

  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-badge {
  width: fit-content;

  display: flex;
  align-items: center;
  gap: .8rem;

  background: white;

  padding: .9rem 1.2rem;

  border-radius: 999px;

  border: 1px solid rgba(15, 23, 42, .06);

  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);

  margin-bottom: 1.8rem;

  font-weight: 600;
  color: #334155;
}

.badge-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #61a5fa;
  position: relative;
}

.badge-pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: inherit;
  border: 1px solid #61a5fa;
  animation: pulse 1.8s infinite;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.05;
  color: #0f172a;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: #61a5fa;
}

.hero-sub {
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 2;
  color: #475569;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-primary-lg,
.btn-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 1rem;

  padding: 1rem 1.3rem;

  border-radius: 22px;

  text-decoration: none;

  transition: .3s ease;

  font-weight: 700;
}

.btn-primary-lg {
  background: linear-gradient(135deg, #61a5fa, #61a5fa);
  color: white;

  box-shadow: 0 20px 40px rgba(37, 99, 235, .25);
}

.btn-primary-lg:hover {
  transform: translateY(-4px);
}

.btn-outline-lg {
  background: white;
  color: #0f172a;

  border: 1px solid rgba(15, 23, 42, .08);

  box-shadow: 0 10px 25px rgba(15, 23, 42, .05);
}

.btn-outline-lg:hover {
  transform: translateY(-4px);
}

.btn-content small {
  display: block;
  opacity: .8;
  margin-bottom: .2rem;
}

.btn-arrow {
  width: 42px;
  height: 42px;

  border-radius: 14px;

  background: rgba(255, 255, 255, .18);

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;

  color: #334155;
  font-weight: 600;
}

.trust-item i {
  color: #61a5fa;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(15, 23, 42, .1);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.hero-dashboard {
  position: relative;
  z-index: 2;

  background: rgba(255, 255, 255, .75);

  backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, .6);

  border-radius: 30px;

  overflow: hidden;

  box-shadow:
    0 40px 80px rgba(15, 23, 42, .12);
}

.dashboard-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1rem 1.4rem;

  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.dashboard-dots {
  display: flex;
  gap: .45rem;
}

.dashboard-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.dashboard-title {
  font-weight: 700;
  color: #61a5fa;
}

.dashboard-body {
  padding: 1.5rem;
}

.dashboard-top-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-card {
  background: white;
  border-radius: 22px;
  padding: 1.2rem;

  display: flex;
  align-items: center;
  gap: 1rem;

  border: 1px solid rgba(15, 23, 42, .06);
}

.dash-card.active {
  background: linear-gradient(135deg, #61a5fa, #61a5fa);
  color: white;
}

.dash-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;

  background: rgba(37, 99, 235, .12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #61a5fa;
}

.dash-card.active .dash-icon {
  background: rgba(255, 255, 255, .18);
  color: white;
}

.purple {
  background: rgba(139, 92, 246, .12);
  color: #8b5cf6;
}

.dash-value {
  font-size: 1.4rem;
  font-weight: 800;
}

.dash-label {
  color: #64748b;
  margin-top: .3rem;
}

.dash-card.active .dash-label {
  color: rgba(255, 255, 255, .8);
}

.invoice-table {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .06);
}

.invoice-row {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;

  padding: 1rem 1.2rem;

  border-bottom: 1px solid rgba(15, 23, 42, .05);

  align-items: center;
}

.invoice-row:last-child {
  border-bottom: none;
}

.invoice-row.head {
  background: #f8fafc;
  font-weight: 700;
  color: #334155;
}

.status {
  width: fit-content;

  padding: .35rem .7rem;

  border-radius: 999px;

  font-size: .82rem;
  font-weight: 700;
}

.status.paid {
  background: rgba(34, 197, 94, .12);
  color: #16a34a;
}

.status.pending {
  background: rgba(245, 158, 11, .12);
  color: #d97706;
}

.dashboard-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.bottom-card {
  background: white;
  border-radius: 20px;
  padding: 1.2rem;

  border: 1px solid rgba(15, 23, 42, .06);
}

.bottom-label {
  color: #64748b;
  margin-bottom: .5rem;
}

.bottom-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0f172a;
}

.hero-float-card {
  position: absolute;
  top: -20px;
  left: -40px;

  display: flex;
  align-items: center;
  gap: 1rem;

  background: white;

  padding: 1rem 1.2rem;

  border-radius: 22px;

  box-shadow: 0 20px 40px rgba(15, 23, 42, .12);

  z-index: 3;
}

.float-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;

  background: rgba(34, 197, 94, .12);
  color: #16a34a;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-card span {
  display: block;
  margin-top: .3rem;
  color: #64748b;
  font-size: .9rem;
}

.mobile-preview {
  position: absolute;
  bottom: -30px;
  left: -60px;

  width: 220px;

  background: #0f172a;

  border-radius: 32px;

  padding: 1rem;

  border: 8px solid #1e293b;

  box-shadow: 0 30px 60px rgba(15, 23, 42, .2);

  z-index: 4;
}

.mobile-notch {
  width: 90px;
  height: 16px;
  border-radius: 999px;
  background: #334155;
  margin: 0 auto 1rem;
}

.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;
  margin-bottom: 1.2rem;
}

.mobile-header span {
  color: #94a3b8;
  font-size: .9rem;
}

.mobile-balance {
  background: linear-gradient(135deg, #2563eb, #3b82f6);

  padding: 1rem;

  border-radius: 22px;

  color: white;

  margin-bottom: 1rem;
}

.mobile-balance small {
  display: block;
  margin-bottom: .4rem;
  opacity: .8;
}

.mobile-balance strong {
  font-size: 1.5rem;
}

.mobile-chart {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 100px;
}

.mobile-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(to top, #3b82f6, #60a5fa);
}

@media (max-width: 1100px) {

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

}

@media (max-width: 768px) {

  .hero {
    padding-top: 7rem;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-dashboard {
    transform: scale(.95);
  }

  .mobile-preview {
    display: none;
  }

  .hero-float-card {
    left: 0;
    top: -40px;
  }

  .dashboard-top-cards,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

}

.trusted-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.trusted-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.trusted-badge {
  display: inline-flex;
  align-items: center;
  gap: .7rem;

  background: rgba(37, 99, 235, .08);

  color: #61a5fa;

  padding: .8rem 1.2rem;

  border-radius: 999px;

  font-weight: 700;

  margin-bottom: 1.5rem;
}

.trusted-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  color: #0f172a;
  font-weight: 900;
  margin-bottom: 1rem;
}

.trusted-title span {
  color: #61a5fa;
}

.trusted-sub {
  color: #64748b;
  line-height: 2;
  font-size: 1.05rem;
}


.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.finance-card {
  position: relative;

  background: white;

  border-radius: 24px;

  padding: 1.25rem;

  border: 1px solid rgba(15, 23, 42, .06);

  overflow: hidden;

  transition: .3s ease;
}

.finance-card:hover {
  transform: translateY(-5px);
}

.finance-card.active {
  background:
    linear-gradient(135deg, #61a5fa, #61a5fa);

  color: white;
}

.finance-card.active .finance-label,
.finance-card.active small,
.finance-card.active .finance-change {
  color: rgba(255, 255, 255, .8);
}

.finance-card.active .finance-icon {
  background: rgba(255, 255, 255, .15);
  color: white;
}

.finance-icon {
  width: 58px;
  height: 58px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(37, 99, 235, .1);

  color: #61a5fa;

  font-size: 1.2rem;

  margin-bottom: 1rem;
}

.expense .finance-icon {
  background: rgba(249, 115, 22, .12);
  color: #ea580c;
}

.debts .finance-icon {
  background: rgba(139, 92, 246, .12);
  color: #8b5cf6;
}

.finance-label {
  display: block;
  color: #64748b;
  margin-bottom: .7rem;
  font-size: .92rem;
}

.finance-value {
  display: flex;
  align-items: flex-end;
  gap: .4rem;

  font-size: 1.7rem;
  font-weight: 900;

  color: #0f172a;

  margin-bottom: .8rem;
}

.finance-value small {
  font-size: .9rem;
  color: #64748b;
}

.finance-change {
  display: flex;
  align-items: center;
  gap: .45rem;

  font-size: .88rem;
  font-weight: 700;
}

.finance-change.positive {
  color: #16a34a;
}

.finance-change.negative {
  color: #dc2626;
}

.debt-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .8rem;
}

.debt-stats div {
  flex: 1;
}

.debt-stats small {
  display: block;
  color: #64748b;
  margin-bottom: .3rem;
}

.debt-stats strong {
  font-size: 1.2rem;
}

.debt-divider {
  width: 1px;
  height: 42px;
  background: rgba(15, 23, 42, .08);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 1.5rem;
}

.chart-card,
.activity-card {
  background: white;

  border-radius: 28px;

  padding: 1.4rem;

  border: 1px solid rgba(15, 23, 42, .06);

  box-shadow: 0 10px 30px rgba(15, 23, 42, .04);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 1.5rem;
}

.section-head strong {
  display: block;
  color: #0f172a;
  margin-bottom: .3rem;
}

.section-head span {
  color: #64748b;
  font-size: .92rem;
}

.chart-badge,
.activity-badge {
  width: 48px;
  height: 48px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(37, 99, 235, .08);

  color: #61a5fa;
}

.chart-area {
  position: relative;
  height: 280px;

  border-radius: 20px;

  background:
    linear-gradient(to top,
      rgba(15, 23, 42, .03) 1px,
      transparent 1px);

  background-size: 100% 56px;

  padding: 1rem;
}

.chart-lines {
  position: relative;
  height: 220px;
}

.line {
  position: absolute;
  inset: 0;

  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.sales-line {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 220'%3E%3Cpath d='M0 180 C80 120 120 140 180 90 C240 40 300 60 360 100 C420 140 470 90 520 60 C560 40 590 50 600 30' fill='none' stroke='%232563eb' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.expense-line {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 220'%3E%3Cpath d='M0 160 C70 170 120 150 180 140 C240 120 300 140 360 130 C420 120 470 140 520 120 C560 110 590 130 600 100' fill='none' stroke='%23f97316' stroke-width='5' stroke-linecap='round' stroke-dasharray='10 8'/%3E%3C/svg%3E");
}

.chart-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);

  margin-top: 1rem;

  color: #64748b;
  font-size: .85rem;
  text-align: center;
}

.chart-legend {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;

  color: #475569;
  font-size: .92rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-dot.sales {
  background: #2563eb;
}

.legend-dot.expenses {
  background: #f97316;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;

  padding: 1rem;

  border-radius: 18px;

  background: #f8fafc;

  transition: .25s ease;
}

.activity-item:hover {
  transform: translateX(-4px);
}

.activity-icon {
  width: 48px;
  height: 48px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.activity-icon.green {
  background: rgba(34, 197, 94, .12);
  color: #16a34a;
}

.activity-icon.orange {
  background: rgba(249, 115, 22, .12);
  color: #ea580c;
}

.activity-icon.blue {
  background: rgba(37, 99, 235, .12);
  color: #2563eb;
}

.activity-icon.purple {
  background: rgba(139, 92, 246, .12);
  color: #8b5cf6;
}

.activity-icon.red {
  background: rgba(239, 68, 68, .12);
  color: #dc2626;
}

.activity-content {
  flex: 1;
}

.activity-content strong {
  display: block;
  color: #0f172a;
  margin-bottom: .35rem;
}

.activity-content span {
  color: #64748b;
  font-size: .9rem;
  line-height: 1.6;
}

.activity-item small {
  color: #94a3b8;
  font-size: .8rem;
}

.dashboard-live {
  display: flex;
  align-items: center;
  gap: .5rem;

  color: #16a34a;
  font-size: .88rem;
  font-weight: 700;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s infinite;
}

@media (max-width: 1200px) {

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

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

}

@media (max-width: 768px) {

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .finance-value {
    font-size: 1.4rem;
  }

  .chart-area {
    height: 220px;
  }

  .chart-lines {
    height: 160px;
  }

  .activity-item {
    align-items: flex-start;
    flex-direction: column;
  }

}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN DASHBOARD */
.hero-dashboard {
  width: 100%;
  max-width: 760px;

  background: rgba(255, 255, 255, .82);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, .65);

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 25px 60px rgba(15, 23, 42, .12);

  transform: scale(.92);
  transform-origin: center;
}

/* TOP BAR */
.dashboard-bar {
  height: 58px;

  padding: 0 1.2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(15, 23, 42, .06);

  background: rgba(248, 250, 252, .85);
}

.dashboard-title {
  font-size: .92rem;
  font-weight: 800;
  color: #0f172a;
}

.dashboard-body {
  padding: 1rem;
}

/* TOP FINANCIAL CARDS */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;

  margin-bottom: 1rem;
}

.finance-card {
  border-radius: 20px;

  padding: .9rem;

  min-height: 120px;

  background: white;

  border: 1px solid rgba(15, 23, 42, .06);

  transition: .25s ease;
}

.finance-card:hover {
  transform: translateY(-3px);
}

.finance-card.active {
  background:
    linear-gradient(135deg, #2563eb, #3b82f6);

  color: white;
}

.finance-icon {
  width: 42px;
  height: 42px;

  border-radius: 14px;

  margin-bottom: .8rem;

  font-size: 1rem;
}

.finance-label {
  font-size: .72rem;
  line-height: 1.5;

  margin-bottom: .45rem;
}

.finance-value {
  font-size: 1.05rem;
  gap: .25rem;
  margin-bottom: .4rem;
}

.finance-value small {
  font-size: .7rem;
}

.finance-change {
  font-size: .7rem;
}

.debt-stats strong {
  font-size: .95rem;
}

.debt-stats small {
  font-size: .68rem;
}

/* CONTENT GRID */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 1rem;
}

/* CHART CARD */
.chart-card,
.activity-card {
  border-radius: 22px;

  padding: 1rem;

  background: white;

  border: 1px solid rgba(15, 23, 42, .06);
}

.section-head {
  margin-bottom: 1rem;
}

.section-head strong {
  font-size: .92rem;
}

.section-head span {
  font-size: .74rem;
}

.chart-badge,
.activity-badge {
  width: 38px;
  height: 38px;

  border-radius: 12px;

  font-size: .9rem;
}

.chart-area {
  height: 190px;
  padding: .8rem;
}

.chart-lines {
  height: 135px;
}

.chart-days {
  margin-top: .6rem;
}

.chart-days span {
  font-size: .68rem;
}

.chart-legend {
  margin-top: .7rem;
  gap: 1rem;
}

.legend-item {
  font-size: .72rem;
}

.legend-dot {
  width: 9px;
  height: 9px;
}

/* ACTIVITIES */
.activity-list {
  gap: .7rem;
}

.activity-item {
  padding: .8rem;
  gap: .8rem;

  border-radius: 16px;
}

.activity-icon {
  width: 40px;
  height: 40px;

  border-radius: 12px;

  font-size: .9rem;
}

.activity-content strong {
  font-size: .82rem;
  margin-bottom: .2rem;
}

.activity-content span {
  font-size: .72rem;
  line-height: 1.5;
}

.activity-item small {
  font-size: .65rem;
}

/* FLOAT CARD */
.hero-float-card {
  top: -12px;
  left: -18px;

  padding: .8rem 1rem;

  border-radius: 18px;

  gap: .8rem;
}

.float-icon {
  width: 40px;
  height: 40px;

  border-radius: 12px;

  font-size: .9rem;
}

.hero-float-card strong {
  font-size: .8rem;
}

.hero-float-card span {
  font-size: .68rem;
}

/* MOBILE PREVIEW */
.mobile-preview {
  width: 170px;

  bottom: -20px;
  left: -40px;

  border-radius: 28px;

  padding: .8rem;

  border-width: 6px;
}

.mobile-notch {
  width: 70px;
  height: 12px;

  margin-bottom: .8rem;
}

.mobile-header {
  margin-bottom: .8rem;
}

.mobile-header strong {
  font-size: .8rem;
}

.mobile-header span {
  font-size: .68rem;
}

.mobile-balance {
  padding: .8rem;

  border-radius: 18px;

  margin-bottom: .8rem;
}

.mobile-balance small {
  font-size: .65rem;
}

.mobile-balance strong {
  font-size: 1rem;
}

.mobile-chart {
  height: 70px;
  gap: .35rem;
}

/* RESPONSIVE */
@media (max-width: 1100px) {

  .hero-dashboard {
    transform: scale(.86);
  }

}

@media (max-width: 768px) {

  .hero-dashboard {
    transform: none;
    max-width: 100%;
  }

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

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

  .mobile-preview {
    display: none;
  }

  .hero-float-card {
    display: none;
  }

}

@media (max-width: 768px) {

  .hero-dashboard {
    width: 100%;
    max-width: 100%;

    margin-inline: 0;

    border-radius: 0;

    transform: none;

    overflow: hidden;
  }

}

@media (max-width: 540px) {

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .dashboard-body {
    padding: .8rem;
  }

  .finance-card {
    min-height: auto;
  }

}

/* MOBILE FULL WIDTH DASHBOARD */
@media (max-width: 768px) {

  .hero-visual {
    width: 100%;
    display: block;
  }

  .hero-dashboard {
    width: 100vw;
    max-width: 100vw;

    margin-inline: calc(50% - 50vw);

    border-radius: 0;

    transform: none;

    box-shadow:
      0 10px 40px rgba(15, 23, 42, .08);

    border-left: 0;
    border-right: 0;
  }

  .dashboard-bar {
    padding-inline: 1rem;
    height: 54px;
  }

  .dashboard-title {
    font-size: .82rem;
  }

  .dashboard-body {
    padding: .85rem;
  }

  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: .7rem;
  }

  .finance-card {
    padding: .8rem;
    border-radius: 18px;
    min-height: auto;
  }

  .finance-icon {
    width: 38px;
    height: 38px;

    border-radius: 12px;

    font-size: .9rem;

    margin-bottom: .65rem;
  }

  .finance-label {
    font-size: .66rem;
    margin-bottom: .35rem;
  }

  .finance-value {
    font-size: .92rem;
  }

  .finance-value small {
    font-size: .62rem;
  }

  .finance-change {
    font-size: .62rem;
  }

  .debt-stats {
    gap: .6rem;
  }

  .debt-stats strong {
    font-size: .82rem;
  }

  .debt-stats small {
    font-size: .6rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .chart-card,
  .activity-card {
    border-radius: 18px;
    padding: .85rem;
  }

  .section-head {
    margin-bottom: .8rem;
  }

  .section-head strong {
    font-size: .82rem;
  }

  .section-head span {
    font-size: .66rem;
  }

  .chart-badge,
  .activity-badge {
    width: 34px;
    height: 34px;

    border-radius: 10px;

    font-size: .8rem;
  }

  .chart-area {
    height: 160px;
    padding: .6rem;
  }

  .chart-lines {
    height: 110px;
  }

  .chart-days span {
    font-size: .58rem;
  }

  .chart-legend {
    gap: .8rem;
    margin-top: .55rem;
  }

  .legend-item {
    font-size: .64rem;
  }

  .legend-dot {
    width: 8px;
    height: 8px;
  }

  .activity-list {
    gap: .55rem;
  }

  .activity-item {
    padding: .7rem;
    gap: .65rem;

    border-radius: 14px;

    flex-direction: row;
    align-items: center;
  }

  .activity-icon {
    width: 36px;
    height: 36px;

    border-radius: 10px;

    font-size: .8rem;
  }

  .activity-content strong {
    font-size: .74rem;
  }

  .activity-content span {
    font-size: .64rem;
    line-height: 1.45;
  }

  .activity-item small {
    display: none;
  }

  .hero-float-card,
  .mobile-preview {
    display: none;
  }

}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .finance-card {
    display: flex;
    align-items: center;
    gap: .8rem;
  }

  .finance-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }

}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.ticker-track {
  display: flex;
  gap: 16px;
}

/* Cards */

.ticker-card {
  flex: 0 0 auto;

  width: 240px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 16px;

  border-radius: 22px;

  background: #fff;
  border: 1px solid #eee;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

  transition: 0.4s;
}

.ticker-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.ticker-card span {
  font-size: 13px;
  color: #666;
}

.ticker-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 18px;
}

/* Colors */

.blue {
  background: #3b82f6;
}

.green {
  background: #10b981;
}

.purple {
  background: #8b5cf6;
}

.orange {
  background: #f59e0b;
}

.cyan {
  background: #06b6d4;
}

.red {
  background: #ef4444;
}

/* Desktop */

@media (min-width: 769px) {

  .ticker-track {
    width: max-content;
    animation: tickerMove 35s linear infinite;
  }

  @keyframes tickerMove {

    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }

  }

}

/* Mobile Gallery Slider */

@media (max-width: 768px) {

  .ticker-wrap {
    overflow: hidden;
  }

  .ticker-track {
    width: 100%;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    padding-inline: calc(50vw - 110px);

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .ticker-track::-webkit-scrollbar {
    display: none;
  }

  .ticker-card {
    width: 220px;
    min-width: 220px;

    scroll-snap-align: center;
  }

}

/* =========================================
   Pricing Section
========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 70px;
}

/* =========================================
   Card
========================================= */

.pricing-card {
  position: relative;
  overflow: hidden;

  border-radius: 32px;
  padding: 40px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);

  border-color: #dbeafe;

  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.08);
}

/* soft top glow */

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(59, 130, 246, 0.05),
      transparent 35%);

  pointer-events: none;
}

/* =========================================
   Featured
========================================= */

.featured {
  border-color: #bfdbfe;
  background:
    linear-gradient(to bottom,
      #f8fbff,
      #ffffff);
}

.featured:hover {
  border-color: #93c5fd;
}

.featured-glow {
  display: none;
}

/* =========================================
   Badge
========================================= */

.pricing-badge {
  position: absolute;
  top: 22px;
  left: 50px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;

  border-radius: 999px;

  background: #eff6ff;
  color: #2563eb;

  font-size: 0.8rem;
  font-weight: 800;

  border: 1px solid #dbeafe;
}

/* =========================================
   Tier
========================================= */

.pricing-tier {
  font-size: 1.8rem;
  font-weight: 900;

  color: #111827;

  margin-bottom: 26px;
}

/* =========================================
   Price
========================================= */

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;

  margin-bottom: 18px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 700;

  color: #2563eb;

  margin-bottom: 10px;
}

.price-amount {
  font-size: 4.2rem;
  line-height: 1;

  font-weight: 900;

  color: #111827;
}

.price-period {
  margin-bottom: 10px;

  color: #6b7280;
}

/* =========================================
   Description
========================================= */

.pricing-desc {
  color: #4b5563;

  line-height: 1.9;

  margin-bottom: 26px;
}

/* =========================================
   Trial
========================================= */

.pricing-trial {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px;

  border-radius: 22px;

  background: #f8fafc;

  border: 1px solid #e5e7eb;

  margin-bottom: 30px;

  transition:
    transform .3s ease,
    background .3s ease;
}

.pricing-card:hover .pricing-trial {
  transform: translateY(-2px);

  background: #f1f5f9;
}

.trial-icon {
  width: 54px;
  height: 54px;

  border-radius: 18px;

  background: #eff6ff;

  color: #2563eb;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.2rem;

  flex-shrink: 0;
}

.trial-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trial-content strong {
  color: #111827;

  font-size: 1rem;
  font-weight: 800;
}

.trial-content span {
  color: #6b7280;

  font-size: 0.88rem;
  line-height: 1.7;
}

/* =========================================
   Divider
========================================= */

.pricing-divider {
  height: 1px;

  background: #e5e7eb;

  margin: 30px 0;
}

/* =========================================
   Features
========================================= */

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 14px;

  color: #374151;
}

.pricing-check {
  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: #ecfdf5;

  border: 1px solid #d1fae5;

  color: #16a34a;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.9rem;

  flex-shrink: 0;
}

/* =========================================
   CTA
========================================= */

.pricing-cta {
  width: 100%;
  height: 58px;

  margin-top: 36px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #2563eb;

  color: white;

  font-weight: 800;
  text-decoration: none;

  transition:
    transform .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.pricing-cta:hover {
  transform: translateY(-2px);

  background: #1d4ed8;

  box-shadow:
    0 18px 35px rgba(37, 99, 235, 0.18);
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 768px) {

  .pricing-grid {
    gap: 24px;
    margin-top: 50px;
  }

  .pricing-card {
    padding: 28px;
    border-radius: 26px;
  }

  .pricing-tier {
    font-size: 1.55rem;
  }

  .price-amount {
    font-size: 3.5rem;
  }

  .pricing-cta {
    height: 54px;
  }

}