/* ==========================================================================
   PORTUGAL PRO CIVIL - $10,000 PREMIUM DESIGN SYSTEM
   Ultra-High Conversion Landing Page for Construction Employment in Portugal
   ========================================================================== */

:root {
  /* Color Palette - Executive Trust & Portuguese Prestige */
  --bg-dark: #07090e;
  --bg-surface: #0e131f;
  --bg-surface-elevated: #151d30;
  --bg-card: rgba(19, 27, 46, 0.7);
  --bg-glass: rgba(14, 21, 37, 0.65);
  
  --primary: #f59e0b;
  --primary-glow: rgba(245, 158, 11, 0.35);
  --primary-hover: #d97706;
  --primary-light: #fbbf24;
  
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.3);
  --emerald-light: #34d399;
  
  --ruby: #ef4444;
  --ruby-glow: rgba(239, 68, 68, 0.25);
  
  --accent-cyan: #06b6d4;
  --accent-blue: #3b82f6;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-highlight: #ffffff;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(245, 158, 11, 0.3);
  --border-emerald: rgba(16, 185, 129, 0.4);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 158, 11, 0.1);
  --shadow-neon: 0 0 25px rgba(245, 158, 11, 0.45);
  --shadow-emerald-neon: 0 0 25px rgba(16, 185, 129, 0.4);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  background: radial-gradient(circle at 50% -20%, #172554 0%, var(--bg-dark) 45%, #05070a 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* Background Animated Gradient Mesh */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 15% 25%, rgba(245, 158, 11, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-highlight);
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 10%, #fcd34d 60%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-text-emerald {
  background: linear-gradient(135deg, #a7f3d0 0%, #10b981 70%, #047857 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Top Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #1e3a8a, #047857, #1e3a8a);
  background-size: 200% auto;
  animation: shineGradient 6s linear infinite;
  color: #fff;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  text-align: center;
  position: relative;
  z-index: 60;
  letter-spacing: 0.02em;
}

.announcement-bar span.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 10px #34d399;
  animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 15px #34d399; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

@keyframes shineGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 14, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.currency-toggle-wrap {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 2px;
}

.currency-switch-btn {
  background: transparent;
  color: #94a3b8;
  border: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.currency-switch-btn.active {
  background: var(--primary);
  color: #000;
}

.btn-text-full {
  display: inline;
}

.btn-text-mobile {
  display: none;
}

/* Button Component Hierarchy */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.85rem;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #0b0f19;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-xl {
  padding: 1.15rem 2.4rem;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(10px);
}

.hero-badge-wrap svg {
  color: var(--primary);
}

.hero-badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.22rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

#hero-btn-buy {
  display: none;
}

.hero-cta-group > div:has(#hero-btn-buy) {
  justify-content: flex-start;
}

.hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-emerald);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #a7f3d0;
  width: fit-content;
}

.hero-price-pill strong {
  color: #fff;
  font-size: 1.15rem;
}

.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-item svg {
  color: var(--emerald);
  flex-shrink: 0;
}

/* Hero Glass Card (Right Column) */
.hero-card-portal {
  background: linear-gradient(145deg, rgba(26, 37, 64, 0.8) 0%, rgba(13, 19, 33, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(25px);
  position: relative;
}

.hero-card-portal::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 50%;
}

.portal-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.portal-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--emerald-light);
  background: rgba(16, 185, 129, 0.15);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.verified-stamp {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
}

.verified-stamp svg {
  color: var(--primary);
}

.hero-profile-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
}

.lawyer-avatar-svg {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #1e293b;
  flex-shrink: 0;
  padding: 3px;
}

.profile-details h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.profile-details p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.profile-badge-oap {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-top: 0.35rem;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.portal-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.portal-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.portal-highlights li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.portal-offer-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
}

.portal-offer-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.portal-price-display {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.portal-price-display span.currency {
  font-size: 1.5rem;
  color: var(--primary);
}

.portal-price-display span.period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.portal-installments {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Real-Time Ticker / Social Proof */
.live-ticker-section {
  background: rgba(14, 21, 37, 0.5);
  border-y: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  overflow: hidden;
}

.ticker-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.ticker-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ticker-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.ticker-stat-info h5 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.ticker-stat-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Section Header Generic */
.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Section: The Legal & Company Promise (10k Quality) */
.promise-section {
  padding: 6rem 0;
  position: relative;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.promise-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.promise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: var(--transition-smooth);
}

.promise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.1);
}

.promise-card:hover::before {
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.promise-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.promise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.promise-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.promise-seal {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--emerald-light);
  font-weight: 600;
}

/* Section: Live Open Job Positions (Construção Civil) */
.jobs-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(14, 21, 37, 0.6) 50%, transparent);
}

.jobs-container-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.jobs-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.jobs-filter-title {
  font-size: 1.15rem;
  font-weight: 700;
}

.jobs-filter-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: #0b0f19;
  border-color: var(--primary);
}

.jobs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.job-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.job-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.job-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.job-role-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.job-salary-tag {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald-light);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.job-meta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.job-perks {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.job-perk-badge {
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: #cbd5e1;
}

.job-apply-btn {
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

/* Section: Interactive Salary & Cost Calculator */
.calc-section {
  padding: 6rem 0;
  position: relative;
}

.calc-box {
  background: linear-gradient(135deg, rgba(21, 29, 48, 0.8) 0%, rgba(14, 19, 31, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  min-width: 0;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  justify-content: space-between;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #334155;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
  transition: transform 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-select {
  background: #0f172a;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
}

.calc-select option {
  background: #0f172a;
  color: #fff;
}

.calc-results-card {
  background: linear-gradient(145deg, #090e18, #111827);
  border: 1px solid var(--border-emerald);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  position: relative;
  min-width: 0;
}

.results-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.results-header h4 {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.results-net-salary {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.results-net-salary span.period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.results-breakdown {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #94a3b8;
}

.breakdown-row.positive {
  color: var(--emerald-light);
  font-weight: 600;
}

.breakdown-row.highlight {
  border-top: 1px dashed var(--border-subtle);
  padding-top: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

/* Section: Comparison Matrix (Doing Alone vs Legal Bridge) */
.comparison-section {
  padding: 6rem 0;
}

.comparison-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  background: rgba(15, 23, 42, 0.9);
}

.comparison-table th.col-feature {
  width: 40%;
  color: var(--text-muted);
}

.comparison-table th.col-bad {
  width: 30%;
  color: #f87171;
}

.comparison-table th.col-good {
  width: 30%;
  color: var(--emerald-light);
  background: rgba(16, 185, 129, 0.08);
  border-left: 1px solid var(--border-emerald);
  border-right: 1px solid var(--border-emerald);
}

.comparison-table td.col-good {
  background: rgba(16, 185, 129, 0.04);
  border-left: 1px solid var(--border-emerald);
  border-right: 1px solid var(--border-emerald);
  font-weight: 600;
  color: #f1f5f9;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.bad-icon {
  color: #ef4444;
  margin-right: 0.5rem;
}

.good-icon {
  color: var(--emerald);
  margin-right: 0.5rem;
}

/* Section: The Legal Roadmap / 4 Steps to Europe */
.steps-section {
  padding: 6rem 0;
  position: relative;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.4);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Section: The Official Pricing Box (114€) */
.pricing-section {
  padding: 6rem 0;
  position: relative;
}

.pricing-card-spotlight {
  max-width: 820px;
  margin: 0 auto;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.12), transparent 50%), #0c1220;
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 3.5rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8), 0 0 50px rgba(245, 158, 11, 0.25);
  position: relative;
  overflow: hidden;
}

.pricing-ribbon {
  position: absolute;
  top: 32px;
  right: -65px;
  transform: rotate(45deg);
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #0b0f19;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  padding: 0.45rem 4.5rem;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing-header h3 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.pricing-price-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

.price-strike {
  font-size: 1.35rem;
  color: #64748b;
  text-decoration: line-through;
}

.price-main {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.price-currency {
  font-size: 2.2rem;
  color: var(--primary);
  vertical-align: super;
}

.pricing-subtitle-terms {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 600;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.pricing-feature-item svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta-wrap {
  text-align: center;
}

.pricing-cta-wrap .btn {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 1.25rem;
}

.payment-methods-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.payment-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
}

/* Guarantee Box */
.guarantee-box {
  margin-top: 2.5rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--border-emerald);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-light);
  flex-shrink: 0;
}

.guarantee-text h5 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.guarantee-text p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Section: FAQ Accordion */
.faq-section {
  padding: 6rem 0;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(245, 158, 11, 0.4);
  background: var(--bg-surface-elevated);
}

.faq-question {
  width: 100%;
  padding: 1.4rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon-arrow {
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 1.5rem;
  transition: max-height 0.6s ease-in-out;
}

/* Footer */
.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
  color: var(--text-dim);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-notice {
  font-size: 0.75rem;
  color: #64748b;
  max-width: 700px;
  line-height: 1.6;
}

/* Floating Elements: WhatsApp button & Live Sales Toast */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition-bounce);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.live-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--border-emerald);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 85;
  transform: translateY(150%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 340px;
}

.live-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e293b;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.82rem;
  line-height: 1.4;
}

.toast-text strong {
  color: #fff;
}

.toast-text p {
  color: var(--emerald-light);
  font-size: 0.75rem;
}

/* Modal Checkout (114€) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 13, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  padding: 2.25rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.modal-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-payment-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.pay-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.pay-tab.active {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--primary);
  color: var(--primary-light);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
}

.form-input {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

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

.modal-price-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.modal-price-summary span.total-amount {
  color: var(--primary-light);
  font-size: 1.4rem;
  font-family: var(--font-heading);
}

/* Success notification inside modal */
.checkout-success-view {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon-badge {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--emerald-light);
}

/* Responsive Media Queries (Mobile First & Desktop Polish) */
@media (max-width: 1100px) {
  .nav-links {
    gap: 1rem;
  }
  .nav-links a {
    font-size: 0.88rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .calc-box {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.75rem;
    gap: 2rem;
  }
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Announcement bar */
  .announcement-bar {
    font-size: 0.76rem;
    padding: 0.45rem 0.75rem;
    line-height: 1.4;
  }

  /* Header & Navigation on Mobile */
  .site-header {
    padding: 0;
  }
  .nav-container {
    padding: 0.65rem 0;
    gap: 0.5rem;
  }
  .nav-links {
    display: none; /* Keeps header 100% clean on phones */
  }
  .logo-badge {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .logo-text {
    font-size: 1.05rem;
  }
  .logo-sub {
    font-size: 0.58rem;
  }
  .nav-actions {
    gap: 0.5rem;
    min-width: 0;
  }
  .nav-actions .currency-toggle-wrap {
    flex-shrink: 1;
  }
  .nav-actions .currency-switch-btn {
    padding-left: 7px;
    padding-right: 7px;
  }
  .nav-actions .btn {
    padding: 0.55rem 0.95rem;
    font-size: 0.85rem;
    min-width: 0;
  }
  .nav-actions .btn-text-full {
    display: none;
  }
  .nav-actions .btn-text-mobile {
    display: inline;
  }
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 2.5rem 0 3.5rem;
  }
  .hero-badge-wrap {
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
    margin-bottom: 1.25rem;
    max-width: 100%;
    width: fit-content;
  }
  .hero-badge-text {
    overflow-wrap: anywhere;
  }
  .hero-title {
    font-size: 2.05rem;
    line-height: 1.2;
    margin-bottom: 1.15rem;
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }
  .hero-price-pill {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 0.45rem 0.85rem;
  }
  .hero-cta-group {
    width: 100%;
    margin-bottom: 2rem;
  }
  .hero-cta-group > div {
    flex-direction: column !important;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-list {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1.25rem;
  }

  /* Hero Portal Card */
  .hero-card-portal {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }
  .hero-profile-box {
    padding: 0.85rem;
    gap: 0.9rem;
  }
  .lawyer-avatar-svg {
    width: 54px;
    height: 54px;
  }
  .profile-details h4 {
    font-size: 0.95rem;
  }

  /* Social Proof Ticker on Mobile (2x2 Grid) */
  .ticker-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 0.75rem;
  }
  .ticker-stat {
    gap: 0.6rem;
  }
  .ticker-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }
  .ticker-stat-info h5 {
    font-size: 1.15rem;
  }
  .ticker-stat-info p {
    font-size: 0.68rem;
  }

  /* Section Titles on Mobile */
  .section-header {
    margin-bottom: 2.25rem;
  }
  .section-tag {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
  }
  .section-title {
    font-size: 1.85rem;
    line-height: 1.22;
    margin-bottom: 0.85rem;
  }
  .comparison-section .section-title {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.65rem;
    line-height: 1.18;
  }
  .section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Promise Section */
  .promise-section {
    padding: 3.5rem 0;
  }
  .promise-card {
    padding: 1.6rem 1.25rem;
  }

  /* Calculator Mobile */
  .calc-section {
    padding: 3.5rem 0;
  }
  .calc-box {
    padding: 1.5rem 1.15rem;
    border-radius: 20px;
  }
  .results-net-salary {
    font-size: 2.2rem;
  }
  .breakdown-row {
    font-size: 0.88rem;
  }

  /* Jobs Section Mobile */
  .jobs-section {
    padding: 3.5rem 0;
  }
  .jobs-container-box {
    padding: 1.5rem 1.15rem;
    border-radius: 20px;
  }
  .jobs-filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .jobs-filter-pills {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.4rem;
  }
  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 0.4rem 0.85rem;
  }
  .jobs-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Comparison Matrix Mobile */
  .comparison-section {
    padding: 3.5rem 0;
  }
  .comparison-table-wrap {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }
  .comparison-table {
    display: block;
    width: 100%;
    min-width: 0;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table tbody {
    display: grid;
    gap: 1rem;
  }
  .comparison-table tr {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
  }
  .comparison-table td,
  .comparison-table td.col-good {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    font-size: 0.85rem;
    line-height: 1.55;
  }
  .comparison-table td:first-child {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--border-subtle);
  }
  .comparison-table td:nth-child(2) {
    border-bottom: 1px solid var(--border-subtle);
  }
  .comparison-table td:nth-child(2)::before,
  .comparison-table td:nth-child(3)::before {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .comparison-table td:nth-child(2)::before {
    content: 'Tentando sozinho';
    color: #f87171;
  }
  .comparison-table td:nth-child(3)::before {
    content: 'Com ImigraFLV';
    color: var(--emerald-light);
  }

  /* Steps Timeline Mobile */
  .steps-section {
    padding: 3.5rem 0;
  }
  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-card {
    padding: 1.5rem 1.25rem;
  }

  /* Pricing Spotlight Card Mobile */
  .pricing-section {
    padding: 3.5rem 0;
  }
  .pricing-card-spotlight {
    padding: 2.2rem 1.25rem;
    border-radius: 22px;
  }
  .pricing-header {
    padding-top: 1rem;
  }
  .pricing-ribbon {
    top: 14px;
    right: 14px;
    transform: none;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.68rem;
  }
  .pricing-header h3 {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.65rem;
    line-height: 1.18;
  }
  .price-main {
    font-size: 3rem;
  }
  .pricing-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.75rem 0;
    padding: 1.5rem 0;
  }
  .pricing-feature-item {
    font-size: 0.88rem;
  }
  .pricing-cta-wrap .btn {
    max-width: 100%;
    width: 100%;
    font-size: 1.05rem;
    padding: 0.95rem 1.5rem;
  }
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }
  .guarantee-text {
    text-align: center !important;
  }

  /* FAQ Mobile */
  .faq-section {
    padding: 3.5rem 0;
  }
  .faq-question {
    padding: 1.15rem 1.25rem;
    font-size: 0.98rem;
  }
  .faq-answer {
    padding: 0 1.25rem;
    font-size: 0.88rem;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 3.5rem 0 1.75rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Floating elements */
  .floating-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .live-toast {
    display: none;
  }
}

@media (max-width: 360px) {
  .nav-actions .currency-toggle-wrap {
    display: none;
  }

  .nav-actions .btn {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}
