/* ============================================
   ASKNOW CONSULTING — Design System & Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #09101C;
  --dark-2: #0F1829;
  --dark-3: #151F30;
  --dark-4: #1B2740;
  --accent: #17C4A0;
  --accent-glow: rgba(23, 196, 160, 0.25);
  --accent-hover: #14a888;
  --light: #F8F9FB;
  --muted: #8FA0B0;
  --muted-2: rgba(255,255,255,0.08);
  --muted-3: rgba(255,255,255,0.04);
  --white: #ffffff;
  --gradient-accent: linear-gradient(135deg, #17C4A0 0%, #0EA5E9 100%);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(23,196,160,0.12) 0%, transparent 60%);
  --font: 'Sora', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Top Bar --- */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--muted-2);
  z-index: 1002;
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.top-bar-right {
  /* position: absolute; removed to allow flex spacing */
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-bar-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-icon {
  color: var(--muted);
  width: 16px; height: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.top-icon:hover {
  color: var(--accent);
}
.store-icon {
  width: 16px; height: 16px;
}
.store-icon-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  transition: var(--transition);
  text-decoration: none;
}
.store-icon-wrap:hover {
  color: var(--accent);
}
.store-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: inherit;
  line-height: 1;
}
.top-bar .divider {
  width: 1px; height: 16px;
  background: var(--muted-2);
  margin: 0 8px;
}
.top-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 8px;
}
.top-link:hover {
  color: var(--white);
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.globe-icon {
  width: 16px; height: 16px;
}
.lang-switcher select {
  background: transparent;
  color: var(--muted);
  border: none;
  font-family: var(--font);
  font-size: 12px;
  cursor: pointer;
  outline: none;
}
.lang-switcher select:hover {
  color: var(--white);
}
.lang-switcher select option {
  background: var(--dark-2);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(9, 16, 28, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--muted-2);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--white);
}
.logo .dot { color: var(--accent); font-size: 52px; }
.logo-sub {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 300;
  display: block;
  margin-top: -2px;
  text-align: center;
  margin-left: 0.28em; /* offset for letter-spacing to truly center */
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a.btn-primary {
  color: #09101C;
}
.nav-links a.btn-primary:hover {
  color: #09101C;
}

/* --- Dropdown Navbar --- */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: flex;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark-2);
  min-width: 220px;
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.5);
  z-index: 1001;
  border-radius: var(--radius-sm);
  border: 1px solid var(--muted-2);
  flex-direction: column;
  padding: 10px 0;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.dropdown:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.dropdown-content a {
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  color: var(--muted);
}
.dropdown-content a:hover {
  background-color: rgba(23, 196, 160, 0.1);
  color: var(--white);
}
.dropdown-content a::after {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #09101C;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--muted-2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 160px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--muted-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--muted-2) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 70%);
}
.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--muted-3);
  border: 1px solid var(--muted-2);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease forwards;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
}
.hero h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 0.8s ease 0.4s forwards;
  opacity: 0;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.6s forwards;
  opacity: 0;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: fadeUp 0.8s ease 0.7s forwards;
  opacity: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.trust-avatars {
  display: flex;
  align-items: center;
}
.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--dark);
  margin-left: -8px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%238FA0B0"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
  background-size: cover;
  background-position: center;
}
.avatar:first-child { margin-left: 0; }

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  animation: fadeUp 0.8s ease 0.8s forwards;
  opacity: 0;
}
.hero-stat h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}
.hero-stat h3 span { color: var(--accent); }
.hero-stat p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* --- Section Base --- */
section { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-desc {
  margin: 0 auto;
}

/* --- Categories --- */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.category-card {
  flex: 0 1 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--dark-2);
  border: 1px solid var(--muted-2);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 196, 160, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.category-card:hover::before { opacity: 1; }
.category-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(23, 196, 160, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  transition: var(--transition);
}
.category-card:hover .category-icon {
  background: rgba(23, 196, 160, 0.2);
  transform: scale(1.1);
}
.category-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.category-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}
.card-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
  opacity: 0.8;
  transition: var(--transition);
}
.category-card:hover .card-action {
  opacity: 1;
  transform: translateX(4px);
}

/* --- How It Works --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Category Detail Card (for service pages) --- */
.category-detail-card {
  background: var(--dark-2);
  border: 1px solid var(--muted-2);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.category-detail-card h3 {
  margin-bottom: 32px;
}
.category-detail-card > p {
  text-align: justify;
}
.category-detail-card .feature-list {
  margin-top: 32px;
}
.category-detail-card .feature-text p {
  text-align: justify;
}

/* --- Sobre Nos Section --- */
.sobre-nos {
  background: var(--dark-2);
  padding: 100px 0;
  position: relative;
}
.sobre-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.sobre-block:last-child {
  margin-bottom: 0;
}
.sobre-block:nth-child(even) {
  flex-direction: row-reverse;
}
.sobre-img-wrapper {
  flex: 1;
  position: relative;
}
.sobre-img-wrapper img {
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  width: 100%;
  border: 1px solid var(--muted-2);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4/3;
}
.sobre-content {
  flex: 1;
}
.sobre-content h3 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.footer-brand .logo-wrap {
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand .logo {
  font-size: 48px;
}
.footer-brand .logo-sub {
  font-size: 14px;
  letter-spacing: 0.25em;
  margin-left: 0.25em;
}
.footer-brand-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 20px;
}
/* Footer App Download Buttons */
.footer-app-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--muted-3);
  border: 1px solid var(--muted-2);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
  min-width: 130px;
}
.footer-app-btn:hover {
  border-color: var(--accent);
  background: rgba(23, 196, 160, 0.08);
  color: var(--accent);
}
.footer-app-btn svg {
  flex-shrink: 0;
}
.footer-app-btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footer-app-btn-sub {
  font-size: 10px;
  color: var(--muted);
  line-height: 1;
}
.footer-app-btn-main {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.sobre-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: justify;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-icon {
  color: var(--accent);
  font-weight: bold;
  font-size: 18px;
  margin-top: 2px;
  background: rgba(23, 196, 160, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.feature-text h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 14px;
  margin-bottom: 0;
}

/* --- Trust Cards --- */
.trust-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.trust-card {
  grid-column: span 2;
  background: var(--dark-3, #0b1523);
  border: 1px solid var(--muted-2);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.trust-card:hover {
  border-color: rgba(23, 196, 160, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.trust-card:hover::before {
  opacity: 1;
}
.trust-card-icon {
  width: 52px;
  height: 52px;
  color: var(--accent);
  background: rgba(23, 196, 160, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}
.trust-card-icon svg {
  width: 100%;
  height: 100%;
}
.trust-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}
.trust-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}

/* Center last two cards on desktop */
@media (min-width: 1025px) {
  .trust-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 768px) {
  .sobre-block, .sobre-block:nth-child(even) {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }
  .trust-cards {
    grid-template-columns: 1fr;
  }
  .trust-card {
    grid-column: span 1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-card {
    grid-column: span 1;
  }
}

/* --- Video --- */
.video-section { background: var(--dark-2); }
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--muted-2);
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}
.play-btn {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--dark);
  transition: var(--transition);
  box-shadow: 0 0 40px var(--accent-glow);
}
.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px var(--accent-glow);
}

/* --- Pricing --- */
.pricing-info {
  max-width: 800px;
  margin: 0 auto;
}
.pricing-highlight {
  background: var(--dark-2);
  border: 1px solid var(--muted-2);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pricing-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
}
.pricing-highlight h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pricing-highlight > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  text-align: left;
}
.pricing-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: var(--muted-3);
  border: 1px solid var(--muted-2);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  width: 100%;
}
.pricing-tag:hover {
  border-color: rgba(23, 196, 160, 0.3);
  background: rgba(23, 196, 160, 0.08);
  transform: translateX(4px);
}
.tag-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
}
.tag-top .tag-icon {
  font-size: 22px;
  line-height: 1;
}
.tag-divider {
  display: none;
}
.tag-price {
  color: var(--accent);
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
}
.pricing-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--muted-2);
}
.pricing-extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.pricing-extra-item .check {
  color: var(--accent);
  font-weight: 700;
}
.pricing-highlight .btn {
  margin-top: 32px;
}
.stripe-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--muted);
}
.stripe-badge img,
.stripe-badge svg {
  height: 26px;
  opacity: 0.7;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--dark-2);
  border: 1px solid var(--muted-2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: rgba(23, 196, 160, 0.3); }
.faq-question {
  width: 100%;
  background: none;
  color: var(--white);
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: var(--muted);
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* --- CTA Final --- */
.cta-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(23,196,160,0.08), transparent 70%);
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.cta-final p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 40px;
}

/* --- Footer --- */
.footer {
  border-top: 1px solid var(--muted-2);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}
.footer h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
}
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--muted-2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--muted-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.footer-social a svg {
  width: 16px; height: 16px;
}
.footer-social a:hover {
  background: var(--accent);
  color: var(--dark);
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 20px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  section { padding: 64px 0; }
}

@media (max-width: 600px) {
  /* Hide store buttons on small screens to prevent top-bar overflow */
  .top-bar .store-icon-wrap {
    display: none;
  }
  .top-bar .divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }

  /* Top Bar Mobile Adjustments */
  .top-bar-inner {
    padding: 0 10px;
  }
  .top-bar-right {
    right: 10px;
  }
  .top-icon {
    width: 14px; height: 14px;
  }
  .lang-switcher select {
    font-size: 10px;
  }
  .globe-icon {
    width: 14px; height: 14px;
  }
}

/* ---- CSS variable alias for legal pages ----*/
:root { --dark-1: var(--dark); }

/* ---- Blog filter pills ---- */
.blog-filter-btn {
  padding: 8px 18px;
  border-radius: 40px;
  background: var(--dark-3);
  border: 1px solid var(--muted-2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  transition: var(--transition);
  cursor: pointer;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

