/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: light; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  color-scheme: light;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; border-radius: 50%; }

/* =====================
   VARIABLES
===================== */
:root {
  --green: #3ecf6e;
  --green-dark: #28a855;
  --green-light: #e8faf0;
  --green-mid: #c5f0d4;
  --white: #ffffff;
  --gray-100: #f7f9f7;
  --gray-200: #eef2ee;
  --gray-400: #9ca89c;
  --gray-600: #4a544a;
  --gray-900: #1a1a1a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(62, 207, 110, 0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
}

/* =====================
   BUTTONS
===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-size: 15px;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-primary.btn-large { padding: 16px 40px; font-size: 17px; border-radius: 10px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px solid var(--green);
  color: var(--green-dark);
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-size: 15px;
}
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline.btn-large {
  padding: 15px 36px;
  font-size: 17px;
  border-radius: 10px;
  border-width: 2px;
  background: rgba(62, 207, 110, 0.06);
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(62, 207, 110, 0.12);
  animation: pulse-free 2.4s ease-in-out infinite;
}
.btn-outline.btn-large:hover {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 18px rgba(62, 207, 110, 0.35);
  animation: none;
}
@keyframes pulse-free {
  0%, 100% { box-shadow: 0 0 0 4px rgba(62, 207, 110, 0.12); }
  50%       { box-shadow: 0 0 0 8px rgba(62, 207, 110, 0.22); }
}

.btn-outline-green {
  display: inline-block;
  border: 2px solid var(--green);
  color: var(--green-dark);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-size: 15px;
  text-align: center;
  width: 100%;
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

/* =====================
   CONTAINER
===================== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   HEADER
===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.header .container {
  max-width: 100%;
  padding: 0 48px;
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  font-size: 20px;
  color: var(--gray-900);
}
.logo-icon { font-size: 22px; }
.logo-img { height: 76px; width: auto; object-fit: contain; border-radius: 0; flex-shrink: 0; margin-right: -8px; }
.logo-text { color: var(--green-dark); font-size: 20px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-900);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-200);
  font-size: 16px;
  font-weight: 500;
}
.mobile-nav.open { display: flex; }

/* =====================
   HERO
===================== */
.hero {
  background: linear-gradient(160deg, var(--green-light) 0%, #fff 60%);
  padding: 88px 0 72px;
  text-align: center;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-mid);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 50px;
}
.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
}
.highlight { color: var(--green-dark); }
.hero-sub {
  max-width: 560px;
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 8px;
}
.avatars {
  display: flex;
}
.avatars img {
  width: 36px;
  height: 36px;
  border: 2px solid #fff;
  margin-left: -8px;
  border-radius: 50%;
}
.avatars img:first-child { margin-left: 0; }

/* =====================
   LOGOS
===================== */
.logos-section {
  background: var(--gray-100);
  padding: 32px 0;
  text-align: center;
}
.logos-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 20px;
  font-weight: 600;
}
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}
.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}
.company-logo img {
  height: 34px;
  width: auto;
  max-width: none;
  display: block;
  border-radius: 0;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.company-logo img:hover {
  opacity: 1;
}
.company-logo-icon {
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.company-logo-icon img {
  height: 30px !important;
  width: 30px !important;
}
.company-logo-icon b {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* =====================
   SECTION HEADER
===================== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray-600);
}

/* =====================
   FEATURES
===================== */
.features { padding: 96px 0; background: #fff; }
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 88px;
}
.feature-card:last-child { margin-bottom: 0; }
.feature-reverse .feature-content { order: 2; }
.feature-reverse .feature-visual { order: 1; }

.feature-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.feature-content h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
}
.feature-content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.75;
}
.feature-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 22px; font-weight: 800; color: var(--green-dark); }
.stat-label { font-size: 12px; color: var(--gray-400); }
.green-text { color: var(--green-dark) !important; }

/* =====================
   MOCK CARDS
===================== */
.mock-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.mock-header {
  background: var(--gray-100);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--gray-200);
}
.mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-dot.green { background: #3ecf6e; }
.mock-dot.yellow { background: #f6c90e; }
.mock-dot.red { background: #f85149; }
.mock-title { font-size: 13px; font-weight: 600; color: var(--gray-600); margin-left: 8px; }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.mock-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.mock-label { color: var(--gray-400); }
.mock-value { font-weight: 700; color: var(--gray-900); }
.mock-badge.active { background: var(--green-light); color: var(--green-dark); padding: 2px 10px; border-radius: 50px; font-size: 13px; font-weight: 600; }
.mock-progress-label { font-size: 12px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.mock-progress { background: var(--gray-200); border-radius: 50px; height: 8px; overflow: hidden; }
.mock-progress-bar { background: var(--green); height: 100%; border-radius: 50px; transition: width 1s ease; }
.mock-percent { font-size: 12px; color: var(--green-dark); font-weight: 700; }

.profile-score { display: flex; align-items: center; gap: 16px; padding: 8px 0; }
.score-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.score-num { font-size: 22px; font-weight: 900; color: #fff; line-height: 1; }
.score-label { font-size: 11px; color: rgba(255,255,255,0.85); }
.score-info p { font-size: 14px; color: var(--gray-600); }
.mock-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.job-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 13px;
}
.job-item:last-child { border-bottom: none; }
.job-title { font-weight: 700; color: var(--gray-900); flex: 1; }
.job-comp { color: var(--gray-400); flex: 1; text-align: center; }
.job-sal { color: var(--green-dark); font-weight: 700; }

.cv-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.cv-tag {
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.cv-stat { display: flex; align-items: center; gap: 10px; }
.cv-stat-num { font-size: 28px; font-weight: 900; }
.cv-stat-label { font-size: 14px; color: var(--gray-600); }

/* Análise mock card */
.analise-score-row { display: flex; align-items: center; gap: 16px; padding: 4px 0 8px; }
.analise-score-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(62,207,110,0.3);
}
.analise-score-num { font-size: 26px; font-weight: 900; color: #fff; line-height: 1; }
.analise-score-sub { font-size: 11px; color: rgba(255,255,255,0.8); }
.analise-score-label { font-weight: 700; font-size: 15px; color: var(--gray-900); }
.analise-score-hint { font-size: 12px; color: var(--green-dark); font-weight: 600; }
.analise-items { display: flex; flex-direction: column; gap: 6px; }
.analise-item { font-size: 13px; font-weight: 500; padding: 6px 10px; border-radius: 6px; }
.analise-item.ok  { background: var(--green-light); color: var(--green-dark); }
.analise-item.warn { background: #fff8e1; color: #b45309; }
.analise-item.err  { background: #fef2f2; color: #dc2626; }

/* =====================
   TESTIMONIALS
===================== */
.testimonials { padding: 96px 0; background: var(--gray-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--green-mid);
}
.stars { color: #f6c90e; font-size: 18px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--gray-600); line-height: 1.7; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.testimonial-author img { width: 44px; height: 44px; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-900); }
.testimonial-author span { font-size: 12px; color: var(--gray-400); }

.discount-banner {
  text-align: center;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
}

/* =====================
   PRICING
===================== */
.pricing { padding: 96px 0; background: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.pricing-featured {
  border-color: var(--green);
  box-shadow: 0 8px 40px rgba(62, 207, 110, 0.18);
  transform: scale(1.03);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-name { font-size: 18px; font-weight: 800; color: var(--gray-900); }
.plan-price { display: flex; flex-direction: column; gap: 2px; }
.price-from { font-size: 13px; color: var(--gray-400); }
.price-from s { color: var(--gray-400); }
.price-now { font-size: 40px; font-weight: 900; color: var(--gray-900); line-height: 1.1; }
.price-now strong { color: var(--green-dark); }
.price-note { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { font-size: 14px; color: var(--gray-600); }
.plan-features li:first-letter { /* ✓ checkmarks already in HTML */ }

.pricing-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: var(--gray-600);
  font-weight: 500;
}

/* =====================
   FAQ
===================== */
.faq { padding: 96px 0; background: var(--gray-100); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--green-light); }
.faq-icon { font-size: 20px; font-weight: 400; color: var(--green-dark); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}
.faq-item.open .faq-answer { display: block; }

/* =====================
   CTA FINAL
===================== */
.cta-final {
  padding: 96px 0;
  background: linear-gradient(160deg, var(--green-light) 0%, #fff 100%);
  text-align: center;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-final h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.2;
}
.cta-final p { font-size: 17px; color: var(--gray-600); max-width: 540px; }
.cta-note { font-size: 14px; color: var(--gray-400); margin-top: -8px; }

/* =====================
   FOOTER
===================== */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo-text { color: var(--green); }
.footer-brand .logo-icon { color: var(--green); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-links a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--gray-400); transition: color 0.15s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

/* =====================
   PAIN BAR
===================== */
.pain-bar {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.pain-bar-inner {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}
.pain-side {
  padding: 20px 24px;
  border-radius: 12px;
}
.pain-side:first-child {
  background: #fff5f5;
  border: 1.5px solid #fecaca;
}
.pain-side:last-child {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}
.pain-side-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  padding: 3px 10px;
  border-radius: 50px;
}
.pain-side-label.bad { background: #fee2e2; color: #dc2626; }
.pain-side-label.good { background: var(--green-light); color: var(--green-dark); }
.pain-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
}
.pain-side:first-child ul li::before { content: "✗  "; color: #dc2626; font-weight: 700; }
.pain-side:last-child ul li::before { content: "✓  "; color: var(--green-dark); font-weight: 700; }
.pain-vs {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

/* =====================
   TESTIMONIAL BADGE
===================== */
.testimonial-badge {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

/* =====================
   PRICING GUARANTEE
===================== */
.pricing-guarantee {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px 24px;
  max-width: 520px;
  width: 100%;
}
.guarantee-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  color: var(--green-dark);
  font-weight: 700;
}
.guarantee-badge strong {
  font-size: 15px;
  color: var(--gray-900);
  display: block;
  margin-bottom: 3px;
}
.guarantee-badge p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
}
.pricing-urgency-note {
  font-size: 13px;
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
}

/* =====================
   STICKY MOBILE CTA
===================== */
.sticky-cta-mobile {
  display: none;
}
@media (max-width: 600px) {
  .pain-bar-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pain-vs {
    font-size: 12px;
    padding: 4px 0;
  }
  .sticky-cta-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-top: 1px solid var(--gray-200);
    padding: 12px 16px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.10);
  }
  .sticky-cta-mobile .btn-primary {
    flex: 1;
    text-align: center;
    padding: 13px;
    font-size: 15px;
    border-radius: 10px;
  }
  .sticky-cta-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--gray-400);
    cursor: pointer;
    padding: 4px 8px;
    flex-shrink: 0;
  }
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .menu-toggle { display: block; }

  .feature-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feature-reverse .feature-content { order: 1; }
  .feature-reverse .feature-visual { order: 2; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-featured { transform: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  /* Header mobile */
  .header .container { padding: 0 20px; }
  .header-inner { height: 58px; }
  .menu-toggle {
    font-size: 22px;
    padding: 4px 6px;
    margin-left: auto;
  }
  .logo-img { height: 40px; }
  .logo-text { font-size: 17px; }
  .mobile-nav { padding: 12px 20px 16px; gap: 4px; }
  .mobile-nav a {
    padding: 10px 8px;
    border-radius: 8px;
    color: var(--gray-700);
  }
  .mobile-nav a:hover { background: var(--gray-100); }
  .mobile-nav .btn-primary {
    margin-top: 8px;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
  }

  /* Hero mobile */
  .hero { padding: 48px 0 44px; }
  .hero-title { font-size: 34px; }

  /* Sections */
  .testimonials-grid { grid-template-columns: 1fr; }
  .features { padding: 64px 0; }
  .features .feature-card { margin-bottom: 56px; }
  .faq { padding: 64px 0; }
  .pricing { padding: 64px 0; }
  .testimonials { padding: 64px 0; }
  .cta-final { padding: 64px 0; }
  .footer { padding-top: 48px; }
  .footer-links { grid-template-columns: 1fr; }
}

/* =====================
   USER MENU (header auth)
===================== */
.user-menu { position: relative; }

.user-menu-trigger {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1.5px solid var(--green-mid);
  border-radius: 50px; padding: 6px 12px 6px 6px;
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
  font-family: inherit;
}
.user-menu-trigger:hover { border-color: var(--green); background: var(--green-light); }

.user-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.user-avatar-lg { width: 40px; height: 40px; font-size: 15px; }

.user-name { font-size: 14px; font-weight: 700; color: var(--gray-800); }
.user-chevron { font-size: 11px; color: var(--gray-400); transition: transform 0.2s; }

.user-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 14px; box-shadow: 0 8px 40px rgba(0,0,0,0.13);
  min-width: 220px; z-index: 9999; overflow: hidden;
}
.user-dropdown.open { display: block; }
.user-menu-trigger[aria-expanded="true"] .user-chevron { transform: rotate(180deg); }

.user-dropdown-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px; background: var(--green-light);
}
.user-dropdown-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.user-dropdown-email { font-size: 12px; color: var(--gray-500); margin-top: 2px; word-break: break-all; }

.user-dropdown-divider { height: 1px; background: var(--gray-200); }

.user-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; font-size: 14px; font-weight: 500;
  color: var(--gray-700); text-decoration: none;
  transition: background 0.15s; cursor: pointer;
  background: none; border: none; width: 100%; font-family: inherit;
  text-align: left;
}
.user-dropdown-item:hover { background: var(--gray-100); color: var(--gray-900); }
.user-dropdown-signout { color: #dc2626; }
.user-dropdown-signout:hover { background: #fef2f2; color: #dc2626; }
