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

:root {
  --purple:        #5503AB;
  --purple-light:  #7B2FDB;
  --purple-dark:   #3D0278;
  --purple-glow:   rgba(85, 3, 171, 0.35);
  --purple-subtle: rgba(85, 3, 171, 0.12);
  --black:         #0D001B;
  --black-mid:     #130022;
  --black-light:   #1C0035;
  --white:         #F7F7F7;
  --gray:          #7C7B7B;
  --gray-light:    #B0B0B0;
  --gray-border:   rgba(124, 123, 123, 0.2);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px var(--purple-glow);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--purple); color: var(--white); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   TYPOGRAPHY HELPERS
============================== */
.text-gradient {
  background: linear-gradient(135deg, var(--purple-light) 0%, #C77DFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
  background: var(--purple-subtle);
  border: 1px solid rgba(85,3,171,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc { margin: 0 auto; }

/* ==============================
   BUTTONS
============================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  border: 2px solid var(--purple);
}
.btn--primary:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--purple-glow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gray-border);
}
.btn--outline:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid transparent;
  opacity: 0.85;
}
.btn--ghost:hover { opacity: 1; color: var(--purple-light); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
  margin-top: 20px;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--white);
}
.btn--white:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg { padding: 18px 36px; font-size: 15px; border-radius: var(--radius-md); }
.btn--full { width: 100%; justify-content: center; }

/* ==============================
   SCROLL REVEAL ANIMATIONS
============================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay   { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }

/* ==============================
   NAVBAR
============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 0, 27, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-border);
  padding: 14px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--white);
}
.logo-icon { display: flex; align-items: center; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.navbar__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar__link:hover { color: var(--white); background: var(--purple-subtle); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 16px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85,3,171,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85,3,171,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(85,3,171,0.45) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123,47,219,0.3) 0%, transparent 70%);
  bottom: -100px; left: 5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.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;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  background: var(--black-light);
  border: 1px solid var(--gray-border);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge__dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px #22c55e; }
  50% { box-shadow: 0 0 12px #22c55e; }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
  border-top: 1px solid var(--gray-border);
  padding-top: 24px;
}
.hero__trust strong { color: var(--white); }

/* MOCKUP */
.mockup {
  position: relative;
  background: var(--black-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-card), 0 0 60px rgba(85,3,171,0.2);
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--gray-border);
  background: rgba(255,255,255,0.02);
}
.mockup__bar span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.mockup__bar span:nth-child(1) { background: #ff5f57; }
.mockup__bar span:nth-child(2) { background: #febc2e; }
.mockup__bar span:nth-child(3) { background: #28c840; }

.mockup__body {
  display: flex;
  height: 340px;
}

.mockup__sidebar {
  width: 64px;
  background: var(--black-mid);
  border-right: 1px solid var(--gray-border);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.mock-logo {
  width: 36px; height: 36px;
  background: var(--purple);
  border-radius: 8px;
  margin-bottom: 8px;
}
.mock-nav-item {
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}
.mock-nav-item--active {
  background: var(--purple-subtle);
  border: 1px solid rgba(85,3,171,0.4);
}

.mockup__main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mock-title {
  height: 16px; width: 120px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.mock-badge {
  font-size: 10px;
  font-weight: 700;
  background: var(--purple);
  color: white;
  padding: 3px 8px;
  border-radius: 100px;
}

.mock-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.mock-msg { display: flex; align-items: flex-end; gap: 8px; }
.mock-msg--out { flex-direction: row-reverse; }

.mock-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  flex-shrink: 0;
}
.mock-bubble {
  max-width: 75%;
  padding: 10px 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-bubble--in  { background: rgba(255,255,255,0.06); border-radius: 12px 12px 12px 2px; }
.mock-bubble--out { background: var(--purple); border-radius: 12px 12px 2px 12px; }

.mock-line {
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  width: 100%;
}
.mock-line--short  { width: 55%; }
.mock-line--medium { width: 75%; }

.mock-input {
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  margin-top: 12px;
}

/* ==============================
   MOCKUP — SCREENSHOTS REAIS
============================== */
.mockup--shots {
  overflow: visible;
}

.mockup__url-bar {
  flex: 1;
  font-size: 11px;
  color: var(--gray);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  padding: 3px 10px;
  margin-left: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* screenshot principal */
.shot-main {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.shot-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

/* blur sobre dados sensíveis */
.shot-blur {
  position: absolute;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(13, 0, 27, 0.08);
  border-radius: 4px;
  pointer-events: none;
}

/* cobre a coluna de nomes em Conversas (avatar + nome + labels) */
.shot-blur--conv-names {
  top: 0; bottom: 0;
  left: 13%;
  width: 38%;
}

/* fade na borda inferior da shot principal */
.shot-fade {
  position: absolute;
  left: 0; right: 0;
  pointer-events: none;
}
.shot-fade--bottom {
  bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--black-light));
}

/* painel kanban flutuante */
.shot-kanban {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 62%;
  background: var(--black-mid);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(85,3,171,0.15);
  animation: float-badge 6s ease-in-out infinite;
  animation-delay: -1s;
}

.shot-kanban__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--gray-border);
}
.shot-kanban__bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.shot-kanban__bar span:nth-child(1) { background: #ff5f57; }
.shot-kanban__bar span:nth-child(2) { background: #febc2e; }
.shot-kanban__bar span:nth-child(3) { background: #28c840; }
.shot-kanban__label {
  font-size: 10px;
  color: var(--gray);
  margin-left: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shot-kanban__img {
  position: relative;
  overflow: hidden;
  max-height: 160px;
}
.shot-kanban__img img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}

/* blur sobre nomes dos cards no kanban */
.shot-blur--kanban-row {
  left: 2%;
  width: 96%;
  height: 9%;
}

/* FLOATING BADGES */
.mockup__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black-mid);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  animation: float-badge 5s ease-in-out infinite;
}
.mockup__float--1 {
  bottom: -20px; left: -20px;
  color: var(--white);
  animation-delay: -1s;
}
.mockup__float--2 {
  top: 30px; right: -30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  animation-delay: -2.5s;
}
.mockup__float--2 strong { font-size: 20px; color: var(--purple-light); }
.mockup__float--2 span { font-size: 11px; color: var(--gray); font-weight: 400; }
.float-icon { font-size: 18px; }

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  opacity: 0.5;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--purple-light));
  animation: scroll-pulse 2s ease-in-out infinite;
}
.hero__scroll-hint span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
@keyframes scroll-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ==============================
   STATS
============================== */
.stats {
  background: var(--black-mid);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 56px 0;
}
.stats__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-item strong {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}
.stat-item span {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--purple-light);
}
.stat-item p {
  font-size: 14px;
  color: var(--gray);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--gray-border);
}

/* ==============================
   FEATURES
============================== */
.features {
  padding: 120px 0;
  position: relative;
}

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

.feature-card {
  background: var(--black-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-subtle) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(85,3,171,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 56px; height: 56px;
  background: var(--purple-subtle);
  border: 1px solid rgba(85,3,171,0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--purple-light);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.feature-card:hover .feature-card__icon {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ==============================
   HOW IT WORKS
============================== */
.how-it-works {
  padding: 120px 0;
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}
.how-it-works__bg { position: absolute; inset: 0; }
.how-bg__orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(85,3,171,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(60px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.step {
  position: relative;
  padding: 40px 32px;
  text-align: center;
}
.step__line {
  position: absolute;
  top: 72px;
  right: -1px;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  display: none;
}

.step__number {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(85,3,171,0.4);
  line-height: 1;
  margin-bottom: 24px;
  transition: var(--transition);
}
.step:hover .step__number {
  -webkit-text-stroke-color: var(--purple);
  color: var(--purple-subtle);
}

.step__content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step__content p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ==============================
   PRICING
============================== */
.pricing {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(85,3,171,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(85,3,171,0.08) 0%, transparent 60%);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--black-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(85,3,171,0.4);
  transform: translateY(-6px);
}

.pricing-card--featured {
  background: linear-gradient(145deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
  border-color: var(--purple-light);
  box-shadow: 0 0 60px rgba(85,3,171,0.4), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-12px);
}
.pricing-card--featured:hover {
  border-color: #C77DFF;
  transform: translateY(-18px);
  box-shadow: 0 0 80px rgba(85,3,171,0.6), 0 24px 60px rgba(0,0,0,0.5);
}

.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #C77DFF, var(--purple-light));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 16px;
}
.pricing-card--featured .plan-name { color: rgba(255,255,255,0.7); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.plan-currency {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-light);
  align-self: flex-start;
  margin-top: 6px;
}
.pricing-card--featured .plan-currency { color: rgba(255,255,255,0.7); }
.plan-amount {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}
.plan-period {
  font-size: 16px;
  color: var(--gray);
  font-weight: 500;
}
.pricing-card--featured .plan-period { color: rgba(255,255,255,0.6); }

.plan-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.5;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-border);
}
.pricing-card--featured .plan-desc { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.15); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.plan-features li svg { flex-shrink: 0; }
.plan-feature--disabled { color: var(--gray); }
.plan-feature--disabled-light { color: rgba(255,255,255,0.35); }

.pricing__note {
  text-align: center;
  margin-top: 48px;
  font-size: 15px;
  color: var(--gray);
  position: relative;
  z-index: 1;
}
.pricing__note a { color: var(--purple-light); text-decoration: underline; }
.pricing__note a:hover { color: #C77DFF; }

/* ==============================
   CTA SECTION
============================== */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--black-mid);
  border-top: 1px solid var(--gray-border);
}
.cta-section__bg { position: absolute; inset: 0; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(85,3,171,0.3) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.cta-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(123,47,219,0.2) 0%, transparent 70%);
  bottom: -150px; left: -50px;
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-section__text h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.cta-section__text p {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select {
  background: var(--black-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder { color: var(--gray); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px var(--purple-glow);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black-light); }

.form-disclaimer {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
}
.form-disclaimer a { color: var(--purple-light); }

.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--black-light);
  border: 1px solid rgba(85,3,171,0.4);
  border-radius: var(--radius-xl);
}
.success-icon {
  width: 64px; height: 64px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 0 30px var(--purple-glow);
}
.form-success h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
.form-success p { color: var(--gray-light); }

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gray-border);
  padding-top: 80px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--gray-border);
}

.footer__brand .navbar__logo { margin-bottom: 20px; }
.footer__brand p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer__social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  background: var(--purple-subtle);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 12px;
  transition: var(--transition);
}
.footer__col a:hover { color: var(--purple-light); }

.footer__bottom {
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { font-size: 13px; color: var(--gray); }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 64px; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero__content { text-align: center; }
  .hero__subtitle { margin: 0 auto 40px; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__mockup { display: none; }
  .hero__scroll-hint { display: none; }

  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }

  .cta-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }

  .navbar__nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(13,0,27,0.97);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--gray-border);
    gap: 4px;
    z-index: 999;
  }
  .navbar__nav.mobile-open .navbar__link {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }
  .navbar__nav.mobile-open + .navbar__actions {
    display: none;
  }

  .features__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  .stat-divider { display: none; }
  .stats__inner { gap: 40px; }

  .steps { gap: 16px; }
  .step { padding: 32px 16px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .footer__links { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 24px; }
}
