:root {
  --blue: #0055FF;
  --blue-bright: #2979FF;
  --blue-light: #E8F0FF;
  --blue-dark: #0030BB;
  --cyan: #00D4FF;
  --yellow: #FFD500;
  --white: #FFFFFF;
  --ink: #0A0E1A;
  --gray: #5A6380;
  --gray-light: #F4F6FC;
  --border: rgba(0, 85, 255, 0.1);
  --card-shadow: 0 4px 32px rgba(0, 85, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── GRID BG PATTERN ─── */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 85, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 85, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(0, 85, 255, 0.1);
}

/* LOGO SVG */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.logo-text span {
  color: var(--blue);
}

.nav-center {
  display: flex;
  gap: 2px;
  list-style: none;
}

.nav-center a {
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray);
  text-decoration: none;
  transition: all .2s;
}

.nav-center a:hover {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-right {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-login {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: transparent;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}

.btn-login:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-nav-cta {
  padding: 0.5rem 1.4rem;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 85, 255, 0.3);
}

/* ─── HERO ─── */
#home {
  color: white;
  min-height: 100vh;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 85, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float-orb 10s ease-in-out infinite alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 85, 255, 0.12);
  top: -100px;
  right: 5%;
  animation-duration: 12s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.1);
  bottom: 10%;
  left: 0%;
  animation-duration: 9s;
  animation-delay: -4s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(255, 213, 0, 0.12);
  top: 30%;
  left: 10%;
  animation-duration: 14s;
  animation-delay: -7s;
}

@keyframes float-orb {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(20px, -30px) scale(1.08);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-light);
  border: 1px solid rgba(0, 85, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 2rem;
}

.chip-dot {
  width: 24px;
  height: 24px;
  background: var(--blue);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}

h1 .blue-word {
  color: var(--blue);
  position: relative;
}

h1 .blue-word::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--cyan);
  opacity: 0.25;
  border-radius: 3px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn-blue-lg {
  padding: 1rem 2.25rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-blue-lg:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 85, 255, 0.35);
}

.btn-outline-lg {
  padding: 1rem 2.25rem;
  background: white;
  color: var(--ink);
  border: 2px solid var(--border);
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-lg:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Stats bar */
.hero-stats-bar {
  display: inline-flex;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.hero-stat {
  padding: 1.25rem 2.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

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

.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ─── APP MOCKUP HERO ─── */
.hero-mockup-wrap {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.mockup-browser {
  background: white;
  border: 1px solid rgba(0, 85, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 85, 255, 0.14), 0 0 0 1px rgba(0, 85, 255, 0.05);
  overflow: hidden;
}

.browser-bar {
  background: var(--gray-light);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

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

.b-dot.r {
  background: #FF5F57;
}

.b-dot.y {
  background: #FFBD2E;
}

.b-dot.g {
  background: #28CA41;
}

.browser-url {
  flex: 1;
  margin: 0 12px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--gray);
  font-family: monospace;
}

.browser-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 380px;
}

.sidebar {
  background: var(--ink);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  margin-bottom: 1rem;
}

.sidebar-logo-icon {
  font-size: 1.2rem;
}

.sidebar-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all .2s;
}

.sidebar-item.active {
  background: var(--blue);
  color: white;
}

.sidebar-item:hover:not(.active) {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
}

.sidebar-item span {
  font-size: 1rem;
}

.main-content {
  background: #F8FAFF;
  padding: 1.5rem;
}

.room-header-mock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.room-title-mock {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.room-code {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}

.avatars-row {
  display: flex;
}

.av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -7px;
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.av:first-child {
  margin-left: 0;
}

.av.a1 {
  background: #0055FF;
}

.av.a2 {
  background: #00B4D8;
}

.av.a3 {
  background: #FFD500;
  color: #333;
}

.av.a4 {
  background: #7C3AED;
}

.av.a5 {
  background: #059669;
}

.mock-tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mock-tool {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: all .2s;
}

.mock-tool.on {
  border-color: var(--blue);
  background: var(--blue-light);
}

.mock-tool-icon {
  font-size: 1.3rem;
}

.mock-tool-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--gray);
}

.mock-tool.on .mock-tool-label {
  color: var(--blue);
}

.mock-wb {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  height: 80px;
  position: relative;
  overflow: hidden;
  padding: 8px;
}

.wb-stroke {
  position: absolute;
  height: 3px;
  border-radius: 2px;
}

/* ─── SCROLLING STRIP ─── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--blue-light);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 2.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
}

.marquee-sep {
  color: var(--cyan);
  font-size: 1rem;
}

/* ─── SECTIONS ─── */
section {
  padding: 6rem 5%;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
}

.eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 3.5rem;
}

/* ─── TOOLS SECTION ─── */
#outils {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#outils .grid-bg {
  opacity: 0.4;
}

#outils h2 {
  color: white;
}

#outils .section-lead {
  color: rgba(255, 255, 255, 0.5);
}

#outils .section-eyebrow {
  color: var(--cyan);
}

#outils .eyebrow-line {
  background: var(--cyan);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.tool-card {
  background: rgba(255, 255, 255, 0.02);
  padding: 2rem 1.75rem;
  transition: all .3s;
  position: relative;
}

.tool-card:hover {
  background: rgba(0, 85, 255, 0.15);
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.tc-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.tc-tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.rt {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
}

.async {
  background: rgba(255, 213, 0, 0.15);
  color: var(--yellow);
}

.adm {
  background: rgba(0, 85, 255, 0.2);
  color: #6FA3FF;
}

/* ─── PROFILES ─── */
.profile-tabs-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.tabs-inner {
  display: inline-flex;
  background: var(--gray-light);
  border-radius: 14px;
  padding: 5px;
  gap: 4px;
}

.ptab {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--gray);
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.ptab.active {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 85, 255, 0.3);
}

.ptab:hover:not(.active) {
  color: var(--blue);
  background: rgba(0, 85, 255, 0.08);
}

.profile-page {
  display: none;
  animation: fadeUp .35s ease-out;
}

.profile-page.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.profile-content h2 {
  margin-bottom: 1rem;
}

.profile-content p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.bcheck {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: white;
  margin-top: 1px;
}

/* Profile Visual Cards */
.profile-visual-box {
  background: linear-gradient(135deg, var(--blue-light) 0%, #EAF4FF 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.profile-visual-box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 85, 255, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.mini-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0, 85, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  transform: translateX(0);
  animation: slide-in .5s ease-out both;
}

.mini-card:nth-child(2) {
  animation-delay: .1s;
  transform: translateX(20px);
}

.mini-card:nth-child(3) {
  animation-delay: .2s;
}

.mini-card .mc-icon {
  font-size: 1.3rem;
}

.mini-card .mc-bar {
  flex: 1;
  height: 6px;
  background: var(--blue-light);
  border-radius: 3px;
  overflow: hidden;
}

.mini-card .mc-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── PRICING ─── */
.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pcard {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  transition: all .3s;
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 85, 255, 0.12);
}

.pcard.popular {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.pop-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.pcard.popular .plan-name {
  color: rgba(255, 255, 255, 0.6);
}

.plan-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 3px;
}

.pcard.popular .plan-price {
  color: white;
}

.plan-period {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pcard.popular .plan-period {
  color: rgba(255, 255, 255, 0.55);
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

.pcard.popular .plan-divider {
  background: rgba(255, 255, 255, 0.15);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-features li .fc {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}

.pcard.popular .plan-features li .fc {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.plan-features li.off {
  opacity: 0.3;
  text-decoration: line-through;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 0.85rem;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.btn-plan-border {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--ink);
}

.btn-plan-border:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-plan-fill {
  background: var(--yellow);
  color: var(--ink);
}

.btn-plan-fill:hover {
  background: #FFDF33;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 213, 0, 0.4);
}

/* ─── BILLING TOGGLE ─── */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 2.5rem;
}

.pricing-toggle-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray);
  transition: color .25s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing-toggle-label.active {
  color: var(--ink);
}

.pricing-save-badge {
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.pricing-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-toggle-slider {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 100px;
  transition: background .3s;
}

.pricing-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform .3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.pricing-toggle-switch input:checked+.pricing-toggle-slider {
  background: var(--blue);
}

.pricing-toggle-switch input:checked+.pricing-toggle-slider::before {
  transform: translateX(22px);
}

.plan-price {
  transition: transform .15s ease, opacity .15s ease;
}

/* ─── CTA ─── */
#cta {
  background: var(--blue);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta .grid-bg {
  opacity: 0.15;
}

#cta::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  bottom: -300px;
  right: -100px;
  pointer-events: none;
}

#cta h2 {
  color: white;
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

#cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.btn-cta-w {
  padding: 1rem 2.5rem;
  background: white;
  color: var(--blue);
  border: none;
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.btn-cta-w:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta-ghost {
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
}

.btn-cta-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.2);
}

/* ─── FOOTER ─── */
footer {
  background: #080C18;
  color: white;
  padding: 4rem 5% 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  line-height: 1.65;
}

.fcol h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.fcol a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color .2s;
}

.fcol a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav {
    padding: 0 4%;
  }

  .nav-center {
    display: none;
  }

  #home {
    color: white;
    padding: 100px 4% 60px;
  }

  .hero-stats-bar {
    flex-wrap: wrap;
  }

  .hero-stat {
    padding: 1rem 1.5rem;
  }

  .browser-body {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

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

  section {
    padding: 4rem 4%;
  }

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

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

  .profile-visual-box {
    display: none;
  }

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

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

  .tabs-inner {
    flex-wrap: wrap;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #F0F4FF;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 85, 255, 0.2);
  border-radius: 3px;
}

/* ═══ HERO REDESIGN ═══ */
#home {
  min-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background: center center / cover no-repeat;
  z-index: 0;
}

/* gradient: left dark for text, right lighter to reveal photo */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(2, 15, 55, 0.96) 0%,
      rgba(2, 15, 55, 0.88) 42%,
      rgba(2, 15, 55, 0.45) 65%,
      rgba(2, 15, 55, 0.08) 100%);
}

/* bottom gradient to blend with next section */
.hero-photo-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(2, 15, 55, 0.5) 0%, transparent 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 100vh;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 4rem 5rem 6%;
}

.hero-right-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8rem 5% 3rem 2rem;
}

/* Chip */
.hero-chip-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 7px 16px 7px 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  width: fit-content;
  letter-spacing: 0.02em;
}

.chip-pulse {
  width: 8px;
  height: 8px;
  background: #00D4FF;
  border-radius: 50%;
  animation: cpulse 2s infinite;
  flex-shrink: 0;
}

@keyframes cpulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.5);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 212, 255, 0);
  }
}

/* Big heading */
.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.hero-h1 .hl {
  color: #00D4FF;
  position: relative;
}

.hero-p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-hero-main {
  padding: 0.95rem 2rem;
  background: #0055FF;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 85, 255, 0.4);
}

.btn-hero-main:hover {
  background: #0044DD;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 85, 255, 0.5);
}

.btn-hero-sec {
  padding: 0.95rem 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.btn-hero-sec:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Stats row */
.hero-stats-row {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.07);
  width: fit-content;
}

.hstat {
  padding: 1.1rem 1.75rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hstat:last-child {
  border-right: none;
}

.hstat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 3px;
}

.hstat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

/* Mockup right col */
.hero-mockup-new {
  width: 100%;
  max-width: 540px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.mock-topbar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mbd {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mbd.r {
  background: rgba(255, 95, 87, 0.8);
}

.mbd.y {
  background: rgba(255, 189, 46, 0.8);
}

.mbd.g {
  background: rgba(40, 202, 65, 0.8);
}

.mock-url {
  flex: 1;
  margin: 0 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
}

.mock-body-new {
  padding: 1.25rem;
}

.mock-room-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mock-room-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 7px;
}

.mock-badge {
  background: rgba(0, 85, 255, 0.5);
  border: 1px solid rgba(0, 85, 255, 0.6);
  color: #90B8FF;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: 0.05em;
}

.mock-avs {
  display: flex;
}

.mav {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  margin-left: -6px;
  font-size: 0.55rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mav:first-child {
  margin-left: 0;
}

.mock-tools-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.mtool {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 0.65rem 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}

.mtool.on {
  background: rgba(0, 85, 255, 0.35);
  border-color: rgba(0, 85, 255, 0.6);
}

.mtool-icon {
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.mtool-lbl {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.mtool.on .mtool-lbl {
  color: #90B8FF;
}

.mock-wb-new {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  height: 70px;
  position: relative;
  overflow: hidden;
}

.ws {
  position: absolute;
  height: 3px;
  border-radius: 2px;
  opacity: 0.6;
}

.mock-online {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  color: #00D4FF;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 3px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.online-dot {
  width: 5px;
  height: 5px;
  background: #00D4FF;
  border-radius: 50%;
  animation: cpulse 2s infinite;
}

/* Responsive hero */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-left-col {
    padding: 8rem 6% 3rem;
  }

  .hero-right-col {
    display: none;
  }

  .hero-photo-overlay {
    background: linear-gradient(180deg, rgba(2, 15, 55, 0.92) 0%, rgba(2, 15, 55, 0.85) 60%, rgba(2, 15, 55, 0.75) 100%);
  }
}