/* ================================================
   Notas de Serviço — Landing Page Styles
   ================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

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

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-top: 1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Icon Sizing --- */
.icon-xs { width: 16px; height: 16px; }
.icon-sm { width: 20px; height: 20px; }
.icon-md { width: 24px; height: 24px; }

/* --- Colors --- */
.text-blue { color: #3b82f6; }
.text-indigo { color: #6366f1; }
.text-purple { color: #8b5cf6; }
.text-emerald { color: #10b981; }
.text-amber { color: #f59e0b; }
.text-rose { color: #f43f5e; }
.text-gray { color: #9ca3af; }

.bg-blue { background: #dbeafe; color: #2563eb; }
.bg-indigo { background: #e0e7ff; color: #4f46e5; }
.bg-purple { background: #ede9fe; color: #7c3aed; }
.bg-emerald { background: #d1fae5; color: #059669; }
.bg-amber { background: #fef3c7; color: #d97706; }
.bg-rose { background: #ffe4e6; color: #e11d48; }

.bg-blue-light { background: #dbeafe; }
.bg-indigo-light { background: #e0e7ff; }
.bg-emerald-light { background: #d1fae5; }
.bg-amber-light { background: #fef3c7; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,231,235,0);
  transition: all 0.3s;
}

.header.scrolled {
  border-bottom-color: #e5e7eb;
  background: rgba(255,255,255,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.logo-text-light {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

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

.nav-desktop a {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: #111827;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
}

.btn-text:hover { color: #111827; }

.btn-primary-sm {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.btn-primary-sm:hover { background: #2563eb; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #374151;
  padding: 0.25rem;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  font-size: 1rem;
  color: #374151;
  padding: 0.5rem 0;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* --- Buttons --- */
.btn-primary-lg {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 8px 24px -10px rgba(59,130,246,0.55);
  overflow: hidden;
  isolation: isolate;
}

.btn-primary-lg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 14px 32px -10px rgba(59,130,246,0.7);
}

.btn-primary-lg:hover::before {
  transform: translateX(100%);
}

.btn-secondary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f3f4f6;
  color: #374151;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.2s;
}

.btn-secondary-lg:hover { background: #e5e7eb; }

.btn-primary-md {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  margin-top: 2rem;
}

.btn-primary-md:hover {
  background: #2563eb;
  box-shadow: 0 10px 25px -5px rgba(59,130,246,0.25);
}

.btn-indigo-md {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #6366f1;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  margin-top: 2rem;
}

.btn-indigo-md:hover {
  background: #4f46e5;
  box-shadow: 0 10px 25px -5px rgba(99,102,241,0.25);
}

.btn-outline-full {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  color: #374151;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-outline-full:hover { background: #f9fafb; }

.btn-primary-full {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #3b82f6;
  color: #fff;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-primary-full:hover { background: #2563eb; }

.btn-white-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #fff;
  color: #1d4ed8;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  transition: all 0.2s;
}

.btn-white-lg:hover { background: #eff6ff; }

/* --- Hero --- */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}

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

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15,23,42,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,23,42,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: glow-drift 14s ease-in-out infinite;
}

.hero-glow-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(59,130,246,0.55), transparent 70%);
  top: -120px;
  left: -120px;
}

.hero-glow-2 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(139,92,246,0.45), transparent 70%);
  top: -80px;
  right: -160px;
  animation-delay: -7s;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  box-shadow:
    inset 0 0 0 1px rgba(59,130,246,0.18),
    0 1px 2px rgba(15,23,42,0.04),
    0 8px 20px -10px rgba(59,130,246,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-badge:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(59,130,246,0.3),
    0 12px 28px -10px rgba(59,130,246,0.5);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111827;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #6366f1 50%, #8b5cf6);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}

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

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 720px;
  margin: 5rem auto 0;
}

.stat { text-align: center; }

.stat-value {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* --- Social Proof --- */
.social-proof {
  padding: 1.5rem 0;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.social-proof-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: #9ca3af;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.proof-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

.proof-divider {
  width: 1px;
  height: 20px;
  background: #d1d5db;
}

/* --- Feature Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
  overflow: hidden;
  isolation: isolate;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(59,130,246,0.55) 80deg, rgba(139,92,246,0.55) 140deg, transparent 220deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%), rgba(99,102,241,0.08), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: -1;
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 20px 40px -18px rgba(15,23,42,0.18);
  transform: translateY(-4px);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* --- Split Section --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section.reverse {
  direction: ltr;
}

.bg-blue-gradient {
  background: linear-gradient(135deg, #eff6ff, #eef2ff);
}

.bg-gray {
  background: #f9fafb;
}

.badge-blue, .badge-indigo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-blue { background: #dbeafe; color: #1d4ed8; }
.badge-indigo { background: #e0e7ff; color: #4338ca; }

.split-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.split-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #374151;
}

.icon-check {
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.icon-check.blue { color: #3b82f6; }
.icon-check.indigo { color: #6366f1; }

/* --- Mockup Cards --- */
.mockup-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #dbeafe;
}

.shadow-blue {
  box-shadow: 0 25px 50px -12px rgba(59,130,246,0.1);
}

.shadow-indigo {
  box-shadow: 0 25px 50px -12px rgba(99,102,241,0.1);
  border-color: #e0e7ff;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 1.5rem;
}

.mockup-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-title {
  font-weight: 600;
  color: #111827;
}

.mockup-desc {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Wizard Steps */
.wizard-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-circle.done {
  background: #3b82f6;
  color: #fff;
}

.step-circle.pending {
  background: #e5e7eb;
  color: #6b7280;
}

.step-title {
  font-weight: 500;
  color: #111827;
}

.step-title.muted { color: #9ca3af; }

.step-desc {
  font-size: 0.875rem;
  color: #9ca3af;
}

.success-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #047857;
}

/* Empresa list mockup */
.empresa-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.empresa-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.empresa-name {
  font-weight: 500;
  color: #111827;
  font-size: 0.875rem;
}

.empresa-cnpj {
  font-size: 0.75rem;
  color: #9ca3af;
}

.empresa-stats {
  text-align: right;
}

.empresa-notas {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.empresa-status {
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 500;
}

.contador-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f3f4f6;
}

.metric {
  border-radius: 0.5rem;
  padding: 0.75rem;
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}

.metric-label {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

.bg-blue-light .metric-label { color: #3b82f6; }
.bg-emerald-light .metric-label { color: #10b981; }
.bg-amber-light .metric-label { color: #d97706; }

/* --- Steps --- */
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  flex: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #3b82f6;
  color: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: #6b7280;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  color: #d1d5db;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
  justify-items: center;
} 

.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08);
}

.pricing-card.popular {
  border: 2px solid #3b82f6;
  box-shadow: 0 10px 25px -5px rgba(59,130,246,0.1);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
}

.pricing-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.pricing-price {
  margin-top: 1.5rem;
}

.price-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
}

.price-period {
  color: #9ca3af;
  margin-left: 0.25rem;
}

.pricing-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.pricing-card .btn-outline-full,
.pricing-card .btn-primary-full {
  margin-top: 2rem;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #9ca3af;
}

.pricing-footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.875rem;
}

.pricing-footer-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- CTA --- */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #3b82f6, #4338ca);
}

.cta-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-content > p {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #93c5fd;
}

/* --- Footer --- */
.footer {
  padding: 3rem 0;
  background: #111827;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #e5e7eb;
}

.footer-made-with {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-made-with .heart {
  color: #f43f5e;
  display: inline-block;
  transform-origin: center;
  animation: heart-beat 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(244,63,94,0.5));
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.28); }
  30% { transform: scale(1); }
  45% { transform: scale(1.2); }
  60% { transform: scale(1); }
}

.veizar-link {
  color: #e5e7eb;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.2s, filter 0.2s;
}

.veizar-link:hover {
  opacity: 0.85;
  filter: brightness(1.15);
}

/* --- Colors extra --- */
.bg-cyan { background: #cffafe; color: #0e7490; }
.icon-check.green { color: #10b981; }

/* --- Mobile gradient section --- */
.bg-mobile-gradient {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5, #f0f9ff);
}

.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  background: #dcfce7;
  color: #15803d;
}

.btn-green-md {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #16a34a;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  margin-top: 2rem;
}

.btn-green-md:hover {
  background: #15803d;
  box-shadow: 0 10px 25px -5px rgba(22,163,74,0.25);
}

/* --- Devices Stage (iPhone + iPad) --- */
.devices-stage {
  position: relative;
  width: 100%;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.devices-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(16,185,129,0.18), transparent 55%),
    radial-gradient(circle at 75% 65%, rgba(59,130,246,0.18), transparent 55%);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
}

/* ----- iPad Pro ----- */
.ipad-mockup {
  position: relative;
  width: 480px;
  max-width: 100%;
  transform: rotate(-3deg) translateY(0);
  z-index: 1;
  filter:
    drop-shadow(0 30px 40px rgba(15, 23, 42, 0.22))
    drop-shadow(0 60px 80px rgba(15, 23, 42, 0.12));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s;
  animation: float-ipad 7s ease-in-out infinite;
}

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

.devices-stage:hover .ipad-mockup {
  animation-play-state: paused;
  transform: rotate(-6deg) translateY(-12px) scale(1.03);
  filter:
    drop-shadow(0 40px 55px rgba(15, 23, 42, 0.28))
    drop-shadow(0 80px 100px rgba(59, 130, 246, 0.18));
}

.ipad-frame {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.06) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.04) 100%),
    linear-gradient(145deg, #4b5563 0%, #1f2937 18%, #0f172a 50%, #111827 82%, #374151 100%);
  border-radius: 30px;
  padding: 10px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.18),
    inset 0 0 0 2.5px rgba(0,0,0,0.55),
    inset 0 0 22px rgba(0,0,0,0.35);
}

.ipad-camera {
  position: absolute;
  top: 4.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #0a0a0a 20%, #1a1a1a 50%, #0a0a0a 80%, transparent);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ipad-camera::before {
  content: "";
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, #1e3a8a 30%, #0a0a0a 70%);
  border-radius: 50%;
  box-shadow: 0 0 1px rgba(96,165,250,0.6);
}

/* iPad side buttons */
.ipad-btn {
  position: absolute;
  background: linear-gradient(90deg, #6b7280, #1f2937 40%, #1f2937 60%, #6b7280);
  border-radius: 1px;
  z-index: 0;
}

.ipad-btn-power {
  top: -2px;
  right: 28px;
  width: 36px;
  height: 3px;
  border-radius: 2px 2px 0 0;
}

.ipad-btn-volup {
  top: -2px;
  right: 78px;
  width: 22px;
  height: 3px;
  border-radius: 2px 2px 0 0;
}

.ipad-btn-voldown {
  top: -2px;
  right: 108px;
  width: 22px;
  height: 3px;
  border-radius: 2px 2px 0 0;
}

.ipad-screen {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.4),
    inset 0 0 0 2px rgba(255,255,255,0.05);
}

.ipad-glare {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.18) 100%);
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
  opacity: 0.6;
  transition: opacity 0.5s, transform 0.8s;
}

.devices-stage:hover .ipad-glare {
  opacity: 0.85;
  transform: translateX(8%);
}

.ipad-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: #111827;
}

.ipad-statusicons {
  display: flex;
  gap: 0.375rem;
  color: #111827;
}

.ipad-app {
  flex: 1;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  padding: 0.5rem;
}

.ipad-sidebar {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ipad-logo {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.5rem 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 0.5rem;
}

.ipad-logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ipad-logo-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #111827;
}

.ipad-nav-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #475569;
}

.ipad-nav-item.active {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  box-shadow: 0 6px 14px -6px rgba(59,130,246,0.6);
}

.ipad-main {
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ipad-h1 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.ipad-sub {
  font-size: 0.65rem;
  color: #64748b;
}

.ipad-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.ipad-kpi {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 0.5rem 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  box-shadow: 0 2px 6px rgba(15,23,42,0.04);
}

.ipad-kpi-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  font-weight: 600;
}

.ipad-kpi-value {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}

.ipad-kpi-trend {
  font-size: 0.55rem;
  font-weight: 700;
  align-self: flex-start;
  padding: 1px 5px;
  border-radius: 999px;
}

.ipad-kpi-trend.up { background: #dcfce7; color: #15803d; }
.ipad-kpi-trend.down { background: #fee2e2; color: #b91c1c; }

.ipad-chart {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 10px;
  padding: 0.625rem;
  flex: 1;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 2px 6px rgba(15,23,42,0.04);
}

.ipad-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.375rem;
  width: 100%;
  height: 100%;
}

.ipad-chart-bars span {
  flex: 1;
  background: linear-gradient(180deg, #6366f1, #3b82f6);
  border-radius: 4px 4px 2px 2px;
  min-height: 8px;
  opacity: 0.85;
}

.ipad-chart-bars span:last-child {
  background: linear-gradient(180deg, #10b981, #059669);
  opacity: 1;
  box-shadow: 0 4px 10px -2px rgba(16,185,129,0.45);
}

/* ----- iPhone 15 Pro ----- */
.iphone-mockup {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 220px;
  z-index: 3;
  transform: rotate(4deg);
  filter:
    drop-shadow(0 25px 40px rgba(15, 23, 42, 0.35))
    drop-shadow(0 50px 80px rgba(15, 23, 42, 0.18));
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s;
  animation: float-iphone 6s ease-in-out infinite;
}

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

.devices-stage:hover .iphone-mockup {
  animation-play-state: paused;
  transform: rotate(7deg) translateY(-18px) translateX(8px) scale(1.06);
  filter:
    drop-shadow(0 35px 55px rgba(15, 23, 42, 0.4))
    drop-shadow(0 80px 120px rgba(99, 102, 241, 0.3));
}

.iphone-frame {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 25%, transparent 75%, rgba(255,255,255,0.12) 100%),
    linear-gradient(150deg, #4a5566 0%, #1a1d24 12%, #0a0c10 35%, #0a0c10 65%, #1a1d24 88%, #4a5566 100%);
  border-radius: 44px;
  padding: 7px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.22),
    inset 0 0 0 2.5px rgba(0,0,0,0.75),
    inset 0 0 0 3.5px rgba(140,140,150,0.3),
    inset 0 0 14px rgba(0,0,0,0.5);
}

/* iPhone physical buttons */
.iphone-btn {
  position: absolute;
  background: linear-gradient(180deg, #6b7280 0%, #1f2937 35%, #1f2937 65%, #6b7280 100%);
  border-radius: 1.5px;
  box-shadow: inset 0 0 1px rgba(0,0,0,0.5);
  z-index: 0;
}

.iphone-btn-action {
  left: -2px;
  top: 72px;
  width: 3px;
  height: 22px;
  border-radius: 2px 0 0 2px;
}

.iphone-btn-volup {
  left: -2px;
  top: 108px;
  width: 3px;
  height: 32px;
  border-radius: 2px 0 0 2px;
}

.iphone-btn-voldown {
  left: -2px;
  top: 150px;
  width: 3px;
  height: 32px;
  border-radius: 2px 0 0 2px;
}

.iphone-btn-power {
  right: -2px;
  top: 110px;
  width: 3px;
  height: 52px;
  border-radius: 0 2px 2px 0;
}

.iphone-screen {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 37px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.4);
}

.iphone-glare {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0) 70%, rgba(255,255,255,0.22) 100%);
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
  opacity: 0.55;
  transition: opacity 0.5s, transform 0.8s;
}

.devices-stage:hover .iphone-glare {
  opacity: 0.9;
  transform: translateX(10%);
}

.iphone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 22px;
  background: radial-gradient(ellipse at center, #0a0a0a 60%, #000 100%);
  border-radius: 999px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  box-shadow:
    inset 0 0 0 0.5px rgba(255,255,255,0.05),
    0 1px 2px rgba(0,0,0,0.6);
}

.iphone-notch-cam {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1e40af 20%, #0a0a0a 65%);
  box-shadow:
    inset 0 0 1px rgba(96,165,250,0.5),
    0 0 0 1px rgba(0,0,0,0.8);
}

.iphone-notch-sensor {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1f2937 30%, #050505 70%);
}

.iphone-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #0f172a;
}

.iphone-time {
  margin-left: 0.25rem;
}

.iphone-statusicons {
  display: flex;
  gap: 0.25rem;
  margin-right: 0.25rem;
}

.iphone-app {
  flex: 1;
  padding: 0.75rem 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.iphone-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.iphone-back {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
}

.iphone-app-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
}

.iphone-step-pill {
  font-size: 0.55rem;
  font-weight: 700;
  background: #eff6ff;
  color: #1d4ed8;
  padding: 2px 6px;
  border-radius: 999px;
}

.iphone-progress {
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.iphone-progress-fill {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  border-radius: 999px;
}

.iphone-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 0.5rem 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  box-shadow: 0 2px 6px rgba(15,23,42,0.04);
}

.iphone-card-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  font-weight: 700;
}

.iphone-card-value {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f172a;
}

.iphone-card-sub {
  font-size: 0.6rem;
  color: #64748b;
}

.iphone-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  color: #047857;
  font-weight: 600;
  margin-top: 0.125rem;
}

.iphone-total strong {
  font-size: 0.85rem;
  font-weight: 800;
  color: #065f46;
}

.iphone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.625rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  margin-top: auto;
  box-shadow: 0 8px 20px -8px rgba(59,130,246,0.7);
  animation: pulse-btn 2.4s ease-in-out infinite;
}

@keyframes pulse-btn {
  0%, 100% { transform: translateY(0); box-shadow: 0 8px 20px -8px rgba(59,130,246,0.7); }
  50% { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(59,130,246,0.85); }
}

.iphone-homebar {
  width: 80px;
  height: 4px;
  background: #0f172a;
  border-radius: 999px;
  margin: 0.5rem auto 0.4rem;
  opacity: 0.85;
}

/* Floating badges (refined) */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 2rem;
  padding: 0.5rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #1e293b;
  box-shadow: 0 14px 32px -8px rgba(15,23,42,0.18);
  z-index: 5;
  white-space: nowrap;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s;
}

.devices-stage:hover .float-top {
  transform: translate(8px, -6px);
  box-shadow: 0 22px 40px -10px rgba(16,185,129,0.35);
}

.devices-stage:hover .float-bottom {
  transform: translate(-8px, 6px);
  box-shadow: 0 22px 40px -10px rgba(59,130,246,0.35);
}

.float-top {
  top: 2rem;
  right: -4px;
}

.float-bottom {
  bottom: 3.5rem;
  left: -4px;
}

.float-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
  animation: float-pulse 2s ease-in-out infinite;
}

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

/* --- Mobile CTA bar --- */
.mobile-cta {
  padding: 2.5rem 0;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

.mobile-cta-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
}

.device-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.device-plus {
  font-weight: 700;
  color: #9ca3af;
}

.mobile-cta-text {
  font-size: 1rem;
  color: #374151;
  max-width: 500px;
}

/* --- Animations --- */
.copyright {
  font-size: 0.875rem;
  color: #6b7280;
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

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

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

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title,
  .split-title,
  .cta-content h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .nav-desktop,
  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-section .split-visual {
    order: 2;
  }

  .split-section .split-text {
    order: 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .proof-divider {
    display: none;
  }

  .social-proof-inner {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-actions a {
    width: 100%;
  }

  /* Em mobile: esconder iPad e mostrar apenas o iPhone centralizado, sem rotação */
  .devices-stage {
    min-height: auto;
    padding: 1.5rem 0.5rem 2rem;
  }

  .ipad-mockup {
    display: none;
  }

  .iphone-mockup {
    position: relative;
    right: auto;
    bottom: auto;
    width: 260px;
    max-width: 80vw;
    transform: rotate(0) translateY(0);
    animation: float-iphone-mobile 6s ease-in-out infinite;
  }

  @keyframes float-iphone-mobile {
    0%, 100% { transform: rotate(0) translateY(0); }
    50% { transform: rotate(0) translateY(-6px); }
  }

  .devices-stage:hover .iphone-mockup {
    transform: rotate(0) translateY(-10px) scale(1.02);
  }

  .float-top {
    top: 1.5rem;
    right: 0.5rem;
  }

  .float-bottom {
    bottom: 2.5rem;
    left: 0.5rem;
  }
}

@media (max-width: 480px) {
  .iphone-mockup {
    width: 230px;
    max-width: 75vw;
  }

  .float-badge {
    font-size: 0.65rem;
    padding: 0.375rem 0.625rem;
  }

  .float-top { top: 1rem; right: 0; }
  .float-bottom { bottom: 1.75rem; left: 0; }
}

/* ════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  border-color: #c7d2fe;
  box-shadow: 0 4px 12px -4px rgba(37, 99, 235, 0.12);
}

.faq-item[open] {
  border-color: #2563eb;
  box-shadow: 0 6px 18px -6px rgba(37, 99, 235, 0.18);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.125rem 1.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.0625rem;
  color: #0f172a;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }

.faq-chevron {
  width: 20px;
  height: 20px;
  color: #2563eb;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 1.375rem 1.25rem;
  margin: 0;
  color: #475569;
  line-height: 1.65;
  font-size: 0.9875rem;
}

@media (max-width: 640px) {
  .faq-item summary {
    padding: 1rem 1.125rem;
    font-size: 1rem;
  }
  .faq-item p {
    padding: 0 1.125rem 1.125rem;
    font-size: 0.9375rem;
  }
}
