:root {
  --primary: #4f46e5;
  --primary-hover: #4338ca;
  --secondary: #10b981;
  --dark: #0f172a;
  --text-main: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  top: -100px;
  right: -100px;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  top: 400px;
  left: -200px;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(79, 70, 229, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  display: none;
  padding: 0.5rem 1rem 0.9rem;
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px dashed rgba(100, 116, 139, 0.2);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

header.scrolled {
  padding: 0.5rem 5%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  width: 32px;
  height: 32px;
  display: inline-block;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), #818cf8);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.btn-login {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-login:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.hero {
  padding: 8rem 5% 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  animation: slideUp 0.8s ease forwards;
}

.badge {
  display: inline-block;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero h1 span {
  color: var(--primary);
  position: relative;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(79, 70, 229, 0.2);
  z-index: -1;
  transform: skewX(-15deg);
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

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

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-wa {
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  padding: 1rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
  box-shadow: 0 10px 16px -6px rgba(16, 185, 129, 0.4);
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 18px -7px rgba(16, 185, 129, 0.45);
}

.btn-wa.block {
  display: inline-flex;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--text-main);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  width: 100%;
  position: relative;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.hero-image-shell {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 24px;
  background: linear-gradient(160deg, #f8faff 0%, #e8edff 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
  border: 1px solid rgba(79, 70, 229, 0.15);
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.hero-image-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.2), rgba(16, 185, 129, 0.12));
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  height: 130px;
  border-radius: 12px;
  background: repeating-linear-gradient(
    90deg,
    rgba(79, 70, 229, 0.2) 0,
    rgba(79, 70, 229, 0.2) 18px,
    rgba(79, 70, 229, 0.05) 18px,
    rgba(79, 70, 229, 0.05) 32px
  );
}

.hero-image:hover .hero-image-shell {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.floating-card.top-right {
  top: 20px;
  right: -20px;
  left: auto;
  bottom: auto;
  animation-delay: 1.5s;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.floating-icon.ok {
  color: var(--secondary);
  background: rgba(16, 185, 129, 0.2);
}

.floating-icon.up {
  color: var(--primary);
  background: rgba(79, 70, 229, 0.2);
}

.floating-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.74rem;
}

.floating-dot.ok {
  color: var(--secondary);
  background: rgba(16, 185, 129, 0.2);
}

.floating-dot.up {
  color: var(--primary);
  background: rgba(79, 70, 229, 0.2);
}

.floating-title {
  font-weight: 700;
  color: var(--dark);
}

.floating-sub {
  font-size: 0.82rem;
  color: var(--text-light);
}

.features {
  padding: 5rem 5%;
  background-color: var(--bg-light);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-groups {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-group-card {
  background: #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 16px;
  padding: 1rem;
}

.feature-group-card h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.feature-pill {
  font-size: 0.8rem;
  color: #334155;
  background: #eef2ff;
  border: 1px solid rgba(79, 70, 229, 0.14);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}

.feature-card {
  background: var(--bg-light);
  padding: 2.2rem;
  border-radius: 20px;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: var(--white);
  border-color: rgba(79, 70, 229, 0.12);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.feature-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--secondary);
}

.feature-icon.orange {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.9rem;
}

.feature-card p {
  color: var(--text-light);
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 5rem 5%;
  background: var(--white);
}

.highlight-content,
.highlight-image {
  flex: 1;
}

.highlight-image {
  width: 100%;
}

.highlight-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.highlight-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.highlight-list li {
  color: var(--dark);
  font-weight: 500;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.tick {
  color: var(--secondary);
  background: rgba(16, 185, 129, 0.12);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}

.highlight-shell {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(145deg, #edf2ff 0%, #ffffff 100%);
  border: 1px solid rgba(79, 70, 229, 0.15);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.highlight-shell::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 18px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.2), rgba(16, 185, 129, 0.12));
}

.highlight-shell::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 170px;
  border-radius: 12px;
  background: repeating-linear-gradient(
    90deg,
    rgba(79, 70, 229, 0.18) 0,
    rgba(79, 70, 229, 0.18) 20px,
    rgba(79, 70, 229, 0.05) 20px,
    rgba(79, 70, 229, 0.05) 36px
  );
}

.social-proof {
  text-align: center;
  padding: 3rem 5%;
  background-color: var(--white);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.lead-funnel {
  padding: 1rem 5% 4rem;
  background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
}

.lead-funnel__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.lead-copy,
.lead-form-card {
  background: #ffffff;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 18px;
  padding: 1.2rem;
}

.lead-copy h3 {
  color: var(--dark);
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.lead-copy p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.lead-form-card {
  display: grid;
  gap: 0.45rem;
}

.lead-form-card label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
}

.form-control {
  width: 100%;
  border: 1px solid #dbe4f3;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font-size: 0.94rem;
  color: #1f2937;
}

.form-control:focus {
  outline: none;
  border-color: rgba(79, 70, 229, 0.55);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}

.lead-submit {
  border: none;
  cursor: pointer;
}

.keyword-links {
  padding: 4rem 5%;
  background: #ffffff;
  border-top: 1px solid rgba(79, 70, 229, 0.08);
}

.keyword-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.keyword-link-card {
  background: #f8fbff;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.keyword-link-card.active {
  border-color: rgba(79, 70, 229, 0.35);
  background: #eef2ff;
}

.keyword-link-card h3 {
  font-size: 1.02rem;
}

.keyword-link-card h3 a {
  color: var(--dark);
  text-decoration: none;
}

.keyword-link-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.keyword-link-cta {
  margin-top: auto;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.keyword-link-pill {
  margin-top: auto;
  align-self: flex-start;
  color: #312e81;
  background: #e0e7ff;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.social-proof p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 1.4rem;
}

.metric-card {
  background: #f8faff;
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.metric-card strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
}

.metric-card span {
  color: var(--text-light);
  font-size: 0.88rem;
}

.logo-ticker {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-ticker::before,
.logo-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.logo-track {
  display: flex;
  animation: scrollTicker 30s linear infinite;
  gap: 4rem;
  width: max-content;
}

.brand-logo {
  color: #cbd5e1;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.3s;
  user-select: none;
}

.brand-logo:hover {
  color: var(--primary);
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.faq-section {
  padding: 5rem 5%;
  background-color: var(--bg-light);
}

.testimonials {
  padding: 5rem 5%;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  border: 1px solid rgba(79, 70, 229, 0.12);
  border-radius: 16px;
  background: #f8fbff;
  padding: 1.2rem;
}

.testimonial-card p {
  color: #334155;
  margin-bottom: 0.85rem;
}

.testimonial-card h4 {
  color: var(--dark);
  font-size: 1rem;
}

.testimonial-card span {
  color: var(--text-light);
  font-size: 0.85rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

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

.faq-question .arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  color: var(--primary);
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.pricing {
  padding: 6rem 5%;
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-glow {
  background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
}

.pricing h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.pricing > p {
  color: #94a3b8;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.billing-toggle {
  margin: -2rem auto 2rem;
  display: inline-flex;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.35rem;
  position: relative;
  z-index: 2;
}

.toggle-btn {
  border: none;
  background: transparent;
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.toggle-btn.active {
  background: #ffffff;
  color: #111827;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.4rem 1.8rem;
  border-radius: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.3);
}

.pricing-card.popular {
  background: linear-gradient(180deg, rgba(79, 70, 229, 0.15) 0%, rgba(30, 41, 59, 0.85) 100%);
  border-color: rgba(79, 70, 229, 0.5);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.plan-desc {
  color: #94a3b8;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
}

.plan-price {
  font-size: 1.55rem;
  font-weight: 800;
}

.plan-price span {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-left: 0.35rem;
  font-weight: 600;
}

.plan-price-sales .price-value {
  font-size: 1.25rem;
}

.plan-year {
  color: #94a3b8;
  margin-top: 0.2rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.check-icon {
  color: var(--secondary);
  font-weight: 800;
}

.btn-price {
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-price.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn-price.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-price.filled {
  background: var(--primary);
  color: var(--white);
}

.btn-price.filled:hover {
  background: var(--primary-hover);
  box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
}

footer {
  background-color: #0b1120;
  color: #94a3b8;
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 5rem;
}

footer .made-by {
  margin-top: 0.55rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}

footer .love {
  color: #fb7185;
  font-size: 1.02em;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js .deferred-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.js .deferred-section.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--glass-border);
  padding: 1rem 5%;
  z-index: 999;
  display: none;
  box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.05);
  transform: translateY(100%);
  animation: slideUpMobile 0.5s ease 1s forwards;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0.6rem;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideUpMobile {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .hero,
  .feature-highlight {
    flex-direction: column;
    padding-top: 6rem;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .highlight-list li {
    justify-content: center;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .trust-metrics,
  .testimonial-grid,
  .lead-funnel__inner,
  .feature-groups,
  .keyword-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  header {
    padding: 0.75rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .logo-image {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding: 5.5rem 1rem 3rem;
    min-height: auto;
    gap: 1.8rem;
  }

  .features,
  .feature-highlight,
  .keyword-links,
  .pricing,
  .social-proof,
  .faq-section,
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .hero-image-shell {
    min-height: 260px;
    max-width: 100%;
  }

  .highlight-image {
    width: 100%;
  }

  .highlight-shell {
    min-height: 220px;
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .feature-card,
  .pricing-card {
    padding: 1.3rem;
  }

  .pricing > p {
    margin-bottom: 1.8rem;
  }

  .plan-price {
    font-size: 1.3rem;
  }

  .brand-logo {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.92rem;
  }

  .mobile-sticky-cta {
    padding: 0.6rem 0.9rem;
  }

  .cta-inner {
    gap: 0.5rem;
  }

  .cta-inner .btn-primary,
  .cta-inner .btn-secondary {
    padding: 0.7rem 0.8rem;
    font-size: 0.86rem;
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}

.low-motion .logo-track {
  animation: none;
}

.low-motion .floating-card,
.low-motion .hero-content,
.low-motion .hero-image,
.low-motion .mobile-sticky-cta {
  animation: none;
}

.low-motion .feature-card:hover,
.low-motion .pricing-card:hover,
.low-motion .btn-primary:hover,
.low-motion .btn-secondary:hover,
.low-motion .btn-wa:hover {
  transform: none;
}

