/* ===== Clean System — Landing Page Styles ===== */

:root {
  --green-dark: #0d3b2e;
  --green-mid: #1a5c45;
  --green-light: #a4d65e;
  --green-accent: #2d8f6f;
  --yellow: #f5c518;
  --yellow-hover: #e0b010;
  --white: #ffffff;
  --gray-50: #f7faf8;
  --gray-100: #eef3f0;
  --gray-200: #d8e4de;
  --gray-400: #8fa89c;
  --gray-600: #4a6358;
  --gray-800: #1a2e26;
  --black: #0a1a14;
  --shadow-sm: 0 2px 8px rgba(13, 59, 46, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 59, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 59, 46, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-width: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 56px;
  --navbar-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  overflow-x: clip;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul { list-style: none; }

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

.is-hidden {
  display: none !important;
}

/* ===== Focus styles ===== */
:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
}

.btn-primary {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: var(--green-light);
}

.btn-primary:hover {
  background: #b8e070;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--green-dark);
  border-color: var(--yellow);
}

.btn-yellow:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 59, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(13, 59, 46, 0.98);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-glow::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 214, 94, 0.4) 0%, transparent 72%);
  z-index: 0;
}

.logo img {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  color: var(--white);
  background: rgba(164, 214, 94, 0.2);
}

.nav-cta,
.nav-login {
  font-size: 0.85rem;
  padding: 10px 20px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: calc(var(--navbar-height) + 68px) 0 var(--section-padding);
  background: linear-gradient(145deg, #061510 0%, var(--green-dark) 40%, #1a6b52 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(182, 234, 82, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(45, 143, 111, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hex {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(164, 214, 94, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s ease-in-out infinite;
}

.hex-1 { top: 10%; right: -5%; }
.hex-2 { bottom: 20%; left: -8%; width: 200px; height: 200px; animation-delay: -3s; }
.hex-3 { top: 50%; right: 20%; width: 120px; height: 120px; border-color: rgba(164, 214, 94, 0.08); animation-delay: -5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(164, 214, 94, 0.15);
  color: var(--green-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(164, 214, 94, 0.3);
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.highlight {
  display: block;
  background: linear-gradient(135deg, var(--green-light), #d4f088);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-support {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.hero-support li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(164, 214, 94, 0.45);
  border-radius: 999px;
  color: #f3ffe4;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 1px rgba(164, 214, 94, 0.08), 0 8px 20px rgba(0, 0, 0, 0.18);
  animation: support-float 3.2s ease-in-out infinite;
}

.hero-support li:nth-child(2) { animation-delay: 0.4s; }
.hero-support li:nth-child(3) { animation-delay: 0.8s; }

.hero-support i {
  color: var(--green-light);
  font-size: 0.95rem;
}

@keyframes support-float {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 0 1px rgba(164, 214, 94, 0.08), 0 8px 20px rgba(0, 0, 0, 0.18); }
  50% { transform: translateY(-3px); box-shadow: 0 0 18px rgba(164, 214, 94, 0.28), 0 10px 24px rgba(0, 0, 0, 0.2); }
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-light);
}

.stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Hero visual — browser mockup + phone overlay */
.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.browser-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.browser-dots span,
.browser-dots i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1),
.browser-dots i:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2),
.browser-dots i:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3),
.browser-dots i:nth-child(3) { background: #28c840; }

.browser-url {
  flex: 1;
  background: var(--white);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--gray-600);
  text-align: center;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-screen {
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.browser-screen-inner {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  height: 100%;
}

.browser-sidebar {
  background: var(--green-dark);
  border-radius: 8px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.browser-sidebar span {
  height: 8px;
  background: rgba(164, 214, 94, 0.35);
  border-radius: 4px;
}

.browser-sidebar span:first-child {
  height: 24px;
  background: rgba(164, 214, 94, 0.5);
  margin-bottom: 8px;
}

.browser-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.browser-bar {
  height: 12px;
  width: 40%;
  background: var(--gray-200);
  border-radius: 4px;
}

.browser-chart {
  flex: 1;
  background: linear-gradient(180deg, rgba(164, 214, 94, 0.35) 0%, rgba(164, 214, 94, 0.08) 100%);
  border-radius: 8px;
  min-height: 80px;
}

.browser-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.browser-cards span {
  height: 36px;
  background: rgba(45, 143, 111, 0.15);
  border-radius: 6px;
}

.hero-phone-overlay {
  position: absolute;
  bottom: -20px;
  right: -16px;
  width: 120px;
  background: var(--green-dark);
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  animation-delay: -2s;
}

.hero-phone-overlay .phone-screen {
  background: var(--gray-50);
  border-radius: 14px;
  aspect-ratio: 9 / 16;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-phone-overlay .phone-notch {
  width: 40%;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin: 0 auto 4px;
}

.hero-phone-overlay .phone-line {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
}

.hero-phone-overlay .phone-line.short { width: 60%; }

.hero-phone-overlay .phone-card {
  flex: 1;
  background: rgba(164, 214, 94, 0.25);
  border-radius: 6px;
  margin-top: 4px;
}

/* Legacy hero showcase (chip layout) */
.hero-showcase {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(164, 214, 94, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.target-ring:nth-child(1) { width: 100%; height: 100%; }
.target-ring:nth-child(2) { width: 82%; height: 82%; border-color: rgba(164, 214, 94, 0.1); }
.target-ring:nth-child(3) { width: 64%; height: 64%; border-color: rgba(164, 214, 94, 0.08); }
.target-ring:nth-child(4) { width: 46%; height: 46%; border-color: rgba(164, 214, 94, 0.06); }
.target-ring:nth-child(5) { width: 28%; height: 28%; border-color: rgba(164, 214, 94, 0.05); }

.showcase-glow {
  position: absolute;
  width: 28%;
  height: 28%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(164, 214, 94, 0.28) 0%, rgba(164, 214, 94, 0.06) 50%, transparent 72%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.showcase-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.97);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  z-index: 3;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  animation: chip-float 4s ease-in-out infinite;
}

@keyframes chip-float {
  0%, 100% { translate: -50% calc(-50% + 0px); }
  50% { translate: -50% calc(-50% - 6px); }
}

.showcase-chip i {
  color: var(--green-accent);
  font-size: 0.82rem;
}

.chip-1  { top: 10%; left: 50%;  animation-delay: 0s; }
.chip-2  { top: 17%; left: 69%;  animation-delay: -0.3s; }
.chip-3  { top: 31%; left: 84%;  animation-delay: -0.6s; }
.chip-4  { top: 50%; left: 90%;  animation-delay: -0.9s; }
.chip-5  { top: 69%; left: 84%;  animation-delay: -1.2s; }
.chip-6  { top: 83%; left: 69%;  animation-delay: -1.5s; }
.chip-7  { top: 90%; left: 50%;  animation-delay: -1.8s; }
.chip-8  { top: 83%; left: 31%;  animation-delay: -2.1s; }
.chip-9  { top: 69%; left: 16%;  animation-delay: -2.4s; }
.chip-10 { top: 50%; left: 10%;  animation-delay: -2.7s; }
.chip-11 { top: 31%; left: 16%;  animation-delay: -3.0s; }
.chip-12 { top: 17%; left: 31%;  animation-delay: -3.3s; }

.hero-modules-mobile { display: none; }

.modules-mobile-title {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 14px;
}

.modules-mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.module-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  line-height: 1.3;
  word-break: break-word;
}

.module-tag i {
  color: var(--green-accent);
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

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

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Credibility / Trust ===== */
.trust-bar,
.credibility {
  background: var(--white);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}

.credibility {
  padding: var(--section-padding) 0;
  border-bottom: none;
}

.trust-grid,
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item,
.credibility-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.trust-item i,
.credibility-item i {
  color: var(--green-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.credibility-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  opacity: 0.6;
}

.credibility-logos img {
  height: 32px;
  width: auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.credibility-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== Benefits ===== */
.benefits {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--gray-50) 0%, var(--white) 100%);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(164, 214, 94, 0.4);
}

.benefit-card:hover::after { transform: scaleX(1); }

.benefit-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-light), var(--green-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header.light { color: var(--white); }
.section-header.light p { color: rgba(255, 255, 255, 0.75); }

.section-tag {
  display: inline-block;
  background: rgba(164, 214, 94, 0.2);
  color: var(--green-accent);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-header.light .section-tag {
  background: rgba(164, 214, 94, 0.25);
  color: var(--green-light);
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header.light h2 { color: var(--white); }

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ===== Features ===== */
.features {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.features-grid.compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.features-grid.compact .feature-card {
  padding: 24px 20px;
}

.features-grid.compact .feature-icon {
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.features-grid.compact h3 {
  font-size: 1rem;
}

.features-grid.compact p {
  font-size: 0.85rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--green-light);
  box-shadow: 0 4px 14px rgba(13, 59, 46, 0.2);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Feature showcase — alternating rows */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 0;
}

.feature-showcase + .feature-showcase {
  border-top: 1px solid var(--gray-100);
}

.feature-showcase.reverse .feature-showcase-visual {
  order: -1;
}

.feature-showcase-content h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-showcase-content p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.feature-showcase-list li i {
  color: var(--green-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-showcase-visual {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-width: 0;
}

.feature-showcase-visual img {
  width: 100%;
  height: auto;
}

.feature-showcase-placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--gray-50), var(--gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 3rem;
}

/* ===== How it works ===== */
.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-accent));
  color: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===== Security ===== */
.security {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

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

.security-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.security-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.security-icon {
  width: 56px;
  height: 56px;
  background: rgba(45, 143, 111, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--green-accent);
}

.security-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.security-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== Multi Device ===== */
.multi-device {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.device-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.device-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.device-content > p {
  color: var(--gray-600);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.device-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.device-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.device-list-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.device-list strong {
  display: block;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2px;
}

.device-list span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.device-mockups {
  position: relative;
  height: 400px;
  max-width: 100%;
  overflow: hidden;
}

.mockup {
  position: absolute;
  background: var(--green-dark);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
}

.mockup-screen {
  background: var(--gray-50);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.mockup-phone {
  width: 100px;
  height: 180px;
  bottom: 20px;
  left: 0;
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}

.mockup-tablet {
  width: 180px;
  height: 240px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  animation-delay: -2s;
}

.mockup-desktop {
  width: 280px;
  height: 180px;
  bottom: 0;
  right: 0;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
  animation-delay: -4s;
}

.mockup-bar {
  height: 20px;
  background: var(--green-dark);
  margin: 8px;
  border-radius: 4px;
}

.mockup-line {
  height: 8px;
  background: var(--gray-200);
  margin: 8px;
  border-radius: 4px;
}

.mockup-line.short { width: 60%; }

.mockup-cards {
  display: flex;
  gap: 6px;
  padding: 0 8px;
}

.mockup-card {
  flex: 1;
  height: 40px;
  background: rgba(164, 214, 94, 0.3);
  border-radius: 6px;
}

.mockup-sidebar {
  width: 30%;
  height: 100%;
  background: var(--green-dark);
  float: left;
}

.mockup-main { padding: 12px; overflow: hidden; }

.mockup-chart {
  height: 60px;
  background: linear-gradient(180deg, rgba(164, 214, 94, 0.4) 0%, rgba(164, 214, 94, 0.1) 100%);
  border-radius: 6px;
  margin-top: 8px;
}

.mockup-nav {
  height: 24px;
  background: var(--green-dark);
}

.mockup-body { padding: 10px; }

.mockup-chart.wide { height: 50px; margin-bottom: 8px; }

.mockup-cards-row {
  display: flex;
  gap: 6px;
}

.mockup-cards-row .mockup-card { height: 30px; }

/* ===== Pricing ===== */
.pricing {
  padding: var(--section-padding) 0;
  background: var(--black);
  overflow-x: clip;
  max-width: 100%;
}

.pricing .container {
  max-width: 1400px;
  overflow: visible;
}

.pricing-evolution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.evo-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  min-width: 140px;
}

.evo-step.evo-highlight {
  background: rgba(164, 214, 94, 0.12);
  border-color: var(--green-light);
}

.evo-label {
  display: block;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.evo-price {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-light);
}

.evo-gain {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-weight: 500;
}

.evo-arrow {
  color: rgba(164, 214, 94, 0.5);
  font-size: 1.1rem;
}

.billing-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto 32px;
  padding: 5px;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  position: relative;
  z-index: 2;
}

.billing-toggle button {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.billing-toggle button.is-active {
  background: var(--green-light);
  color: var(--green-dark);
}

/* Yearly emphasis */
.pricing.is-yearly .billing-toggle button.is-active {
  background: var(--yellow);
  color: var(--green-dark);
  box-shadow: 0 8px 30px rgba(245,197,24,0.12);
  transform: translateY(-4px);
}

.pricing.is-yearly .save-badge {
  display: inline-flex;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(245,197,24,0.12);
  transform: translateY(-2px);
}

.pricing.is-yearly .pricing-card.featured {
  border: 1px solid rgba(245,197,24,0.25);
  box-shadow: 0 20px 60px rgba(13,59,46,0.12), 0 10px 40px rgba(245,197,24,0.06);
}

/* Compare toggle button */
.pricing-compare-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 24px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-compare-toggle:hover {
  background: rgba(164, 214, 94, 0.12);
  border-color: var(--green-light);
}

.pricing-compare-toggle i {
  color: var(--green-light);
  transition: transform var(--transition);
}

.pricing-compare-toggle.is-open i {
  transform: rotate(180deg);
}

/* Comparison table panel */
.pricing-compare {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  max-height: 2000px;
  opacity: 1;
}

.pricing-compare.collapsed {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0 !important;
  pointer-events: none;
}

.pricing-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 56px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  scrollbar-width: thin;
  scrollbar-color: var(--green-light) rgba(255, 255, 255, 0.1);
  overscroll-behavior-x: contain;
}

.table-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 12px 16px 0;
  margin: 0;
}

.table-scroll-hint i {
  color: var(--green-light);
  margin-right: 6px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  min-width: 200px;
}

.pricing-table thead th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 20px 18px;
}

.pricing-table thead th small {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--green-light);
  margin-top: 4px;
}

.pricing-table .col-featured {
  background: rgba(164, 214, 94, 0.08);
  border-left: 2px solid rgba(164, 214, 94, 0.3);
  border-right: 2px solid rgba(164, 214, 94, 0.3);
}

.pricing-table .row-group td {
  background: rgba(164, 214, 94, 0.06);
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 18px;
}

.pricing-table .yes { color: var(--green-light); }
.pricing-table .no  { color: #e74c3c; opacity: 0.7; }

.cell-up .val { font-weight: 700; color: var(--white); }

.cell-up .up-tag,
.new-tag {
  display: inline-block;
  background: rgba(164, 214, 94, 0.2);
  color: var(--green-light);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  margin-left: 4px;
  vertical-align: middle;
}

.cell-new .new-tag,
.new-tag {
  background: rgba(245, 197, 24, 0.2);
  color: var(--yellow);
}

.cell-best {
  background: rgba(164, 214, 94, 0.06);
}

.cell-best .val,
.cell-best strong {
  color: var(--green-light);
}

.pricing-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

.pricing-scroll-hint i {
  color: var(--green-light);
  margin-right: 6px;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(164, 214, 94, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(164, 214, 94, 0.15) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 3px solid var(--green-light);
  transform: translateY(-10px);
  box-shadow: 0 20px 56px rgba(164, 214, 94, 0.32);
  z-index: 1;
  padding-top: 44px;
}

.pricing-card.featured:hover {
  transform: translateY(-16px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-light);
  color: var(--green-dark);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

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

.pricing-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-recommend {
  text-align: center;
  color: var(--green-light);
  font-size: 0.78rem;
  font-weight: 700;
  margin: 6px 0 10px;
  letter-spacing: 0.01em;
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-light);
  margin-top: 8px;
}

.amount {
  font-size: 2.85rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.pricing.is-yearly .amount {
  font-size: 2.2rem;
}

.save-badge {
  display: none;
  margin: 10px auto 0;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(164, 214, 94, 0.16);
  color: var(--green-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing.is-yearly .save-badge {
  display: inline-flex;
}

.pricing-price--consult {
  display: block;
  text-align: center;
}

.amount--consult {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.pricing-card .btn-block {
  margin-top: auto;
}

.period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  align-self: flex-end;
  margin-bottom: 8px;
}

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

.pricing-features li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.pricing-features li i {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.pricing-features li i.fa-check { color: var(--green-light); }
.pricing-features li.disabled { color: rgba(255, 255, 255, 0.35); }
.pricing-features li.disabled i.fa-xmark { color: #e74c3c; }

.pricing-features .group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-light);
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.pricing-features .group-label:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.feat-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

.feat-badge.up {
  background: rgba(164, 214, 94, 0.2);
  color: var(--green-light);
}

.feat-badge.new {
  background: rgba(245, 197, 24, 0.2);
  color: var(--yellow);
}

.mini-tag {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  background: rgba(164, 214, 94, 0.15);
  color: var(--green-light);
  flex-shrink: 0;
  white-space: nowrap;
}

.mini-tag.new {
  background: rgba(245, 197, 24, 0.2);
  color: var(--yellow);
}

.mini-tag.best {
  background: rgba(164, 214, 94, 0.3);
  color: var(--white);
}

.pricing-features li.feat-up {
  background: rgba(164, 214, 94, 0.06);
  margin: 0 -8px;
  padding: 8px;
  border-radius: 8px;
}

.pricing-features li.feat-new {
  background: rgba(245, 197, 24, 0.06);
  margin: 0 -8px;
  padding: 8px;
  border-radius: 8px;
}

.pricing-features li.feat-best {
  background: rgba(164, 214, 94, 0.1);
  margin: 0 -8px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(164, 214, 94, 0.2);
}

.pricing-card .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card .btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--gray-200);
}

.faq-item.open {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question > i {
  display: none;
}

.faq-question::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--green-accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 0 0 var(--section-padding);
  background: var(--black);
}

.cta-box {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(164, 214, 94, 0.2);
}

.cta-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
}

/* ===== Contact ===== */
.contact {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

a.contact-method:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--green-accent);
  width: 32px;
  text-align: center;
}

.contact-method strong {
  display: block;
  font-weight: 700;
  color: var(--green-dark);
}

.contact-method span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 143, 111, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
  background: #fef5f5;
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-error {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: #e74c3c;
  font-weight: 500;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ===== Footer ===== */
.footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--green-light); }
.footer-links a i { margin-right: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8); }
}

/* ===== SaaS layout extensions (HTML v5) ===== */
.hidden {
  display: none !important;
}

/* Browser mockup — BEM aliases */
.browser-mockup__chrome,
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  min-height: 44px;
}

.browser-mockup__dots {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 16px 0 0 #febc2e, 32px 0 0 #28c840;
  flex-shrink: 0;
}

.browser-mockup__url,
.browser-url {
  flex: 1;
  background: var(--white);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--gray-600);
  text-align: center;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-mockup__screen,
.browser-screen {
  position: relative;
  background: var(--gray-50);
  overflow: hidden;
  line-height: 0;
}

.browser-mockup__img,
.browser-mockup__screen img {
  width: 100%;
  height: auto;
  display: block;
}

.browser-mockup--compact {
  max-width: 100%;
}

.browser-mockup__mobile {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 28%;
  min-width: 100px;
  max-width: 140px;
  background: var(--green-dark);
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.browser-mockup__mobile-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.hero-visual .browser-mockup {
  position: relative;
}

.hero-visual .browser-mockup__screen {
  aspect-ratio: 16 / 10;
}

/* Product section */
.product {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-content > p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.product-highlights li i {
  color: var(--green-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Module showcase */
.module-showcase {
  margin-bottom: 48px;
}

.module-showcase__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
}

.module-showcase__row + .module-showcase__row {
  border-top: 1px solid var(--gray-100);
}

.module-showcase__row--reverse .module-showcase__visual {
  order: -1;
}

.module-showcase__icon {
  width: 52px;
  height: 52px;
  background: rgba(45, 143, 111, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-accent);
  margin-bottom: 16px;
}

.module-showcase__content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.module-showcase__content p {
  color: var(--gray-600);
  font-size: 1.02rem;
  line-height: 1.7;
}

.module-showcase__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  min-width: 0;
}

.module-showcase__img {
  width: 100%;
  height: auto;
  display: block;
}

.features-secondary {
  margin-top: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}

.features-secondary__title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.features-grid--compact,
.features-grid.compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card--compact {
  padding: 24px 20px;
  text-align: center;
}

.feature-card--compact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-top: 8px;
}

/* Credibility cards */
.credibility-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.credibility-item {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 28px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.credibility-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(164, 214, 94, 0.35);
}

.credibility-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 143, 111, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green-accent);
  margin-bottom: 14px;
}

.credibility-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.35;
}

.credibility-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-weight: 400;
}

/* Benefit icons */
.benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(45, 143, 111, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-accent);
  margin-bottom: 18px;
}

/* Security — two-column layout */
.security-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.security-content > p {
  color: var(--gray-600);
  font-size: 1.02rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.security-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.security-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.security-list li i {
  color: var(--green-accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.security-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-icon-wrap {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(45, 143, 111, 0.15), rgba(164, 214, 94, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--green-accent);
}

.security-grid {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

/* Pricing compare — BEM */
.pricing-compare-wrap {
  margin-top: 8px;
}

.pricing-compare__toggle,
.pricing-compare-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  margin: 32px auto 0;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pricing-compare__toggle:hover,
.pricing-compare-toggle:hover {
  background: rgba(164, 214, 94, 0.12);
  border-color: var(--green-light);
}

.pricing-compare__toggle i,
.pricing-compare-toggle i {
  color: var(--green-light);
  transition: transform var(--transition);
}

.pricing-compare__toggle.is-open i,
.pricing-compare-toggle.is-open i {
  transform: rotate(180deg);
}

.pricing-compare__panel,
.pricing-compare-panel {
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  max-height: 2400px;
  opacity: 1;
}

.pricing-compare__panel.collapsed,
.pricing-compare-panel.collapsed {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0 !important;
  pointer-events: none;
}

.pricing-compare__panel:not(.collapsed) {
  margin-top: 24px;
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-aos],
  .fade-up {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }

  .hero-support li {
    animation: none;
  }

  .hero-spotlight,
  .scroll-progress,
  .scan-line {
    display: none;
  }

  .pricing-compare {
    transition: none;
  }

  .trades-marquee__inner {
    animation: trades-ticker 22s linear infinite !important;
    animation-duration: 22s !important;
    animation-iteration-count: infinite !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-grid,
  .device-grid,
  .contact-grid,
  .feature-showcase,
  .product-grid,
  .module-showcase__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .module-showcase__row--reverse .module-showcase__visual {
    order: 0;
  }

  .feature-showcase.reverse .feature-showcase-visual {
    order: 0;
  }

  .hero-sub { max-width: 100%; }

  .hero-mockup-wrap {
    max-width: 100%;
  }

  .hero-phone-overlay {
    right: 8px;
    bottom: -12px;
    width: 100px;
  }

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

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

  .pricing-scroll-hint {
    display: block;
  }

  .pricing-grid-wrap {
    overflow-x: auto;
    margin: 0 -24px;
    padding: 12px 24px 20px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--green-light) rgba(255, 255, 255, 0.1);
  }

  .pricing-grid {
    display: flex;
    grid-template-columns: none;
    width: max-content;
    max-width: none;
    margin: 0;
    gap: 16px;
  }

  .pricing-card {
    width: 280px;
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .pricing-card.featured { transform: none; padding-top: 44px; }
  .pricing-card.featured:hover { transform: translateY(-8px); }

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 36px 32px;
  }

  .cta-content p { max-width: 100%; }

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

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

  .device-mockups {
    height: 320px;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefit-card {
    padding: 28px 24px;
  }

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

  .browser-mockup__mobile {
    width: 24%;
    min-width: 88px;
    right: -8px;
    bottom: -16px;
  }

  .hero-modules-mobile {
    display: block;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-evolution {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .evo-step {
    min-width: 140px;
    flex-shrink: 0;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .container {
    padding: 0 16px;
    max-width: 100%;
  }

  section {
    max-width: 100%;
    overflow-x: clip;
  }

  .nav-links {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }

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

  .menu-toggle { display: flex; }

  .hero {
    padding: calc(var(--navbar-height) + 38px) 0 var(--section-padding-mobile);
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .hero-stats {
    gap: 12px;
    flex-direction: column;
  }

  .stat { min-width: 100%; }

  .modules-mobile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .module-tag {
    font-size: 0.72rem;
    padding: 10px 12px;
  }

  .trust-grid,
  .credibility-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-item,
  .credibility-item {
    justify-content: flex-start;
  }

  .form-row { grid-template-columns: 1fr; }

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

  .footer-brand p { max-width: 100%; }

  .table-scroll-hint { display: block; }

  .pricing-grid-wrap {
    margin: 0 -16px;
    padding: 12px 16px 20px;
  }

  .pricing-table { min-width: 720px; }

  .pricing-table th,
  .pricing-table td {
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .pricing-table th:first-child,
  .pricing-table td:first-child {
    min-width: 130px;
    max-width: 130px;
    position: sticky;
    left: 0;
    background: #0a1a14;
    z-index: 2;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.4);
  }

  .pricing-table thead th:first-child {
    background: #111f1a;
  }

  .pricing-table thead th {
    font-size: 0.85rem;
    padding: 14px 12px;
  }

  .pricing-table .col-featured {
    background: rgba(164, 214, 94, 0.1);
  }

  .pricing-card { padding: 24px 18px; }

  .pricing-features li.feat-up,
  .pricing-features li.feat-new,
  .pricing-features li.feat-best {
    margin: 0;
    padding: 10px 8px;
  }

  .pricing-features .group-label { font-size: 0.68rem; }

  .feat-badge {
    font-size: 0.58rem;
    padding: 2px 6px;
  }

  .mini-tag {
    margin-left: 0;
    margin-top: 2px;
  }

  .cta-box { padding: 28px 20px; }

  .device-mockups {
    height: 260px;
    max-width: 100%;
    transform: scale(0.85);
    transform-origin: center top;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem);
  }

  .section-header p { font-size: 0.92rem; }

  .features-grid.compact {
    grid-template-columns: 1fr;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .logo > span:not(.logo-glow) { font-size: 0.95rem; }

  .logo-glow { width: 40px; height: 40px; }
  .logo img { width: 36px; height: 36px; }

  .badge {
    font-size: 0.75rem;
    padding: 7px 12px;
    line-height: 1.4;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    white-space: normal;
  }

  .modules-mobile-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .module-tag {
    font-size: 0.82rem;
    padding: 12px 16px;
    justify-content: center;
  }

  .amount { font-size: 2.6rem; }

  .contact-form { padding: 24px 16px; }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }

  .hero-phone-overlay {
    width: 80px;
    right: 4px;
  }

  .browser-screen-inner {
    grid-template-columns: 80px 1fr;
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 1.5rem; }

  .btn {
    font-size: 0.88rem;
    padding: 11px 18px;
  }

  .btn-lg { padding: 14px 22px; }

  .container { padding: 0 12px; }
}

@media (min-width: 1920px) {
  :root {
    --container-width: 1320px;
  }
}

/* ===== Visual comercial / movimento ===== */
.hero {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(164, 214, 94, 0.22), transparent 55%),
    linear-gradient(160deg, #04110c 0%, #0d3b2e 42%, #123f32 72%, #0a241c 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(164, 214, 94, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(164, 214, 94, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, black 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: orb-drift 14s ease-in-out infinite;
}

.hero-orb--one {
  width: 280px;
  height: 280px;
  background: rgba(164, 214, 94, 0.28);
  top: 12%;
  right: 8%;
}

.hero-orb--two {
  width: 220px;
  height: 220px;
  background: rgba(45, 143, 111, 0.35);
  bottom: 8%;
  left: 6%;
  animation-delay: -6s;
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.08); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 0 rgba(164, 214, 94, 0.7);
  animation: badge-pulse 2s ease-out infinite;
}

@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(164, 214, 94, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(164, 214, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(164, 214, 94, 0); }
}

.hero .highlight {
  display: block;
  margin-top: 6px;
}

.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: shine 3.6s ease-in-out infinite;
}

@keyframes shine {
  0%, 55% { left: -120%; }
  75%, 100% { left: 140%; }
}

.mockup-glow {
  position: absolute;
  inset: 8% -8% -12%;
  background: radial-gradient(circle at 50% 40%, rgba(164, 214, 94, 0.35), transparent 62%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual .browser-mockup {
  position: relative;
  z-index: 1;
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(164, 214, 94, 0.18);
  transition: transform 0.35s ease;
}

.hero-visual .browser-mockup.is-tilting {
  transition: transform 0.08s linear;
}

.browser-mockup__label {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

.hero-visual .browser-mockup__screen,
.product-visual .browser-mockup__screen {
  aspect-ratio: 16 / 10;
  background: var(--gray-50);
}

.hero-visual .js-shot,
.product-visual .js-product-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-visual .js-shot.is-active,
.product-visual .js-product-shot.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-visual .js-shot:not(.is-active),
.product-visual .js-product-shot:not(.is-active) {
  pointer-events: none;
}

.shot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px 12px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.shot-dot,
.product-tab {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.shot-dot.is-active,
.product-tab.is-active,
.shot-dot:hover,
.product-tab:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  animation: chip-float 4.5s ease-in-out infinite;
}

.float-chip i { color: var(--green-accent); }
.float-chip--a { top: 12%; left: -18px; }
.float-chip--b { top: 48%; right: -22px; animation-delay: -1.5s; }
.float-chip--c { bottom: 14%; left: 8%; animation-delay: -2.8s; }

.module-marquee {
  overflow: hidden;
  background: var(--green-dark);
  border-top: 1px solid rgba(164, 214, 94, 0.2);
  border-bottom: 1px solid rgba(164, 214, 94, 0.2);
  padding: 14px 0;
}

.module-marquee__track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: marquee 28s linear infinite;
}

.module-marquee__track span {
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.module-marquee__track span::before {
  content: '◆';
  margin-right: 36px;
  color: rgba(164, 214, 94, 0.45);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pain {
  padding: var(--section-padding) 0;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(164, 214, 94, 0.1), transparent 60%),
    var(--gray-50);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  min-height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(164, 214, 94, 0.4);
}

.pain-card__from {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.pain-card--after {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.pain-card--after h3,
.pain-card--after .pain-card__from { color: var(--green-light); }

.pain-card--after p { color: rgba(255, 255, 255, 0.78); }

.pain-card h3 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.cta-box {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(164, 214, 94, 0.28), transparent 50%),
    linear-gradient(135deg, var(--green-mid), var(--green-dark));
}

@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual .browser-mockup { transform: none; }
  .float-chip--a { left: 0; }
  .float-chip--b { right: 0; }
}

@media (max-width: 768px) {
  .float-chip { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .shot-nav { justify-content: center; }
}

/* ===== Impacto visual extra ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1200;
  background: linear-gradient(90deg, var(--green-light), #d4f088);
  box-shadow: 0 0 12px rgba(164, 214, 94, 0.7);
  pointer-events: none;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px 420px at var(--spot-x, 70%) var(--spot-y, 30%), rgba(182, 234, 82, 0.28), transparent 55%);
  mix-blend-mode: screen;
  z-index: 0;
}

.highlight-animated {
  background-size: 200% 100%;
  animation: highlight-shift 5s ease-in-out infinite;
}

@keyframes highlight-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  top: -30%;
  background: linear-gradient(180deg, transparent, rgba(164, 214, 94, 0.18), transparent);
  z-index: 3;
  pointer-events: none;
  animation: scan 4.8s ease-in-out infinite;
}

@keyframes scan {
  0% { top: -30%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.hero-visual .js-shot.is-active {
  animation: ken 9s ease-in-out infinite alternate;
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}

.module-showcase__img {
  transform: scale(1.03);
  clip-path: inset(6% 6% 6% 6%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-showcase__row.visible .module-showcase__img,
.module-showcase__visual:hover .module-showcase__img {
  transform: scale(1);
  clip-path: inset(0);
}

.benefit-card,
.credibility-item,
.feature-card,
.pain-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-card:hover .benefit-icon,
.credibility-item:hover .credibility-icon {
  transform: translateY(-2px) scale(1.06);
}

.benefit-icon,
.credibility-icon,
.module-showcase__icon,
.feature-icon {
  transition: transform 0.35s ease;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 68px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-light), transparent);
  opacity: 0.45;
  pointer-events: none;
}

.step-number {
  animation: step-glow 3.2s ease-in-out infinite;
}

@keyframes step-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(164, 214, 94, 0.25); }
  50% { box-shadow: 0 0 0 10px rgba(164, 214, 94, 0); }
}

.pricing-card.featured {
  animation: featured-pulse 3.8s ease-in-out infinite;
}

@keyframes featured-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(164, 214, 94, 0.15); }
  50% { box-shadow: 0 0 64px rgba(164, 214, 94, 0.32); }
}

.contact-form {
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.contact-form:focus-within {
  box-shadow: 0 16px 50px rgba(13, 59, 46, 0.12);
}

.module-marquee:hover .module-marquee__track {
  animation-play-state: paused;
}

.audience-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}

.audience-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
  flex-wrap: wrap;
}

.audience-bar__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-accent);
}

.audience-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.audience-pills li {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.audience-pills li:hover {
  transform: translateY(-2px);
  border-color: var(--green-light);
  background: #f3fde0;
}

[data-aos] {
  filter: blur(4px);
}

[data-aos].visible {
  filter: none;
}

@media (max-width: 1024px) {
  .steps-grid::before { display: none; }
  .hero-visual .js-shot.is-active { animation: none; }
}

@media (max-width: 768px) {
  [data-aos] { filter: none; }
  .scan-line { display: none; }
}

/* ===== Trades ticker + cards (ritmo Cleaner Day) ===== */
.trades-marquee {
  overflow: hidden;
  background: var(--green-dark);
  padding: 14px 0;
}

.trades-marquee__inner {
  display: flex;
  width: max-content;
  animation: trades-ticker 22s linear infinite;
  will-change: transform;
}

.trades-marquee__track {
  display: flex;
  flex: none;
  gap: 12px;
  padding-right: 12px;
}

.trades-marquee__track span {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  color: var(--green-dark);
  background: var(--green-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.trades-marquee__track span:nth-child(even) {
  background: var(--white);
  color: var(--green-dark);
}

@keyframes trades-ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.trades-marquee:hover .trades-marquee__inner {
  animation-play-state: paused;
}

.trades {
  padding: var(--section-padding) 0;
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(164, 214, 94, 0.16), transparent 55%),
    var(--white);
}

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

.trade-card {
  position: relative;
  background:
    radial-gradient(180px 120px at var(--mx, 50%) var(--my, 0%), rgba(164, 214, 94, 0.2), transparent 55%),
    var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.trade-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: var(--green-light);
}

.trade-card:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.trade-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #f4fde3;
  font-size: 1.4rem;
}

.trade-card h3 {
  font-size: 1.08rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.trade-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .trades-grid { grid-template-columns: 1fr; }
  .trade-card:hover { transform: translateY(-4px); }
}

.btn-shine:hover {
  box-shadow: 0 12px 32px rgba(182, 234, 82, 0.35);
}


