/* ============================================
   CSS Variables
============================================ */
:root {
  --primary: #f97316;
  --primary-hover: #ea580c;
  --primary-light: rgba(249, 115, 22, 0.1);
  --secondary: #1e40af;
  --secondary-light: rgba(30, 64, 175, 0.1);
  --accent: #3b82f6;
  --accent-light: rgba(59, 130, 246, 0.1);
  
  --background: #fafaf9;
  --foreground: #1c1917;
  --card: #ffffff;
  --card-foreground: #1c1917;
  --muted: #f5f5f4;
  --muted-foreground: #78716c;
  --border: #e7e5e4;
  
  --success: #22c55e;
  --success-light: rgba(34, 197, 94, 0.1);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.1);
  --error: #ef4444;
  --error-light: rgba(239, 68, 68, 0.1);
  --info: #3b82f6;
  --info-light: rgba(59, 130, 246, 0.1);
  
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Layout
============================================ */
.container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 24px 0;
}

.hidden {
  display: none !important;
}

/* ============================================
   Header
============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
}

/* ============================================
   Banner
============================================ */
.banner-container {
  padding: 24px 16px;
}

.banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.banner-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.banner-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.banner-circle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}

.banner-circle-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-title {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.banner-value-card {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: white;
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 16px;
}

.banner-value-label {
  font-size: 14px;
  color: var(--muted-foreground);
}

.banner-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 12px;
  color: var(--primary);
}

.banner-badge-icon {
  width: 20px;
  height: 20px;
}

.banner-badge strong {
  font-weight: 600;
}

/* ============================================
   Hero
============================================ */
.hero {
  text-align: center;
  padding: 32px 0 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-light);
  color: var(--success);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge-icon {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.text-primary {
  color: var(--primary);
}

.hero-subtitle {
  color: var(--muted-foreground);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.btn-primary:hover:not(:disabled) {
  background: var(--primary-hover);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.btn-outline:hover:not(:disabled) {
  background: var(--muted);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ============================================
   Features
============================================ */
.features {
  padding: 48px 0;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-icon-primary {
  background: var(--primary-light);
  color: var(--primary);
}

.feature-icon-secondary {
  background: var(--secondary-light);
  color: var(--secondary);
}

.feature-icon-accent {
  background: var(--accent-light);
  color: var(--accent);
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  color: var(--muted-foreground);
  font-size: 14px;
}

/* ============================================
   Tutorial
============================================ */
.tutorial {
  padding: 48px 0;
  background: var(--card);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 32px;
}

.tutorial-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tutorial-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--muted);
  border-radius: var(--radius);
  position: relative;
}

.tutorial-number {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tutorial-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.tutorial-icon svg {
  width: 24px;
  height: 24px;
}

.tutorial-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tutorial-desc {
  color: var(--muted-foreground);
  font-size: 14px;
}

/* ============================================
   Social Proof
============================================ */
.social-proof {
  padding: 48px 0;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-proof-item {
  text-align: center;
}

.social-proof-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.social-proof-label {
  font-size: 12px;
  color: var(--muted-foreground);
}

/* ============================================
   Cards
============================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card-form {
  padding: 24px;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
}

.card-icon-primary {
  background: var(--primary);
  color: white;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-subtitle {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ============================================
   Alerts
============================================ */
.alert {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 24px;
}

.alert-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.alert-warning {
  background: var(--warning-light);
  color: #92400e;
}

.alert-info {
  background: var(--info-light);
  color: #1e40af;
}

/* ============================================
   Forms
============================================ */
.form-group {
  margin-bottom: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-input.error {
  border-color: var(--error);
}

.form-error {
  display: block;
  color: var(--error);
  font-size: 12px;
  margin-top: 4px;
}

/* ============================================
   Checkbox
============================================ */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 24px;
}

.checkbox-container-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s;
}

.checkbox-container-card:hover {
  background: var(--muted);
}

.checkbox-input {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--muted-foreground);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 2px;
}

.checkbox-input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checkbox-label {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* ============================================
   Progress Bar
============================================ */
.progress-bar {
  height: 4px;
  background: var(--muted);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 12px;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 24px;
}

/* ============================================
   Profile Steps
============================================ */
.profile-step {
  animation: fadeIn 0.3s ease;
}

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

.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.radio-card {
  display: block;
  cursor: pointer;
}

.radio-card input {
  display: none;
}

.radio-card-content {
  display: block;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.radio-card input:checked + .radio-card-content {
  border-color: var(--primary);
  background: var(--primary-light);
}

.radio-card-title {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.radio-card-desc {
  display: block;
  font-size: 13px;
  color: var(--muted-foreground);
}

.radio-card-sm .radio-card-content {
  padding: 12px;
  text-align: center;
}

.radio-card-sm .radio-card-title {
  margin-bottom: 0;
  font-size: 14px;
}

/* ============================================
   Simulator
============================================ */
.simulator-group {
  margin-bottom: 32px;
}

.simulator-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.simulator-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--muted);
  border-radius: 4px;
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 8px;
}

.simulator-result {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.result-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.result-label {
  color: var(--muted-foreground);
  font-size: 14px;
}

.result-value {
  font-weight: 600;
}

.result-value-lg {
  font-size: 20px;
  color: var(--primary);
}

/* ============================================
   Loading
============================================ */
.loading-spinner {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.spinner {
  position: absolute;
  inset: 0;
  border: 4px solid var(--muted);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.loading-icon svg {
  width: 32px;
  height: 32px;
}

.loading-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.loading-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.loading-progress {
  height: 8px;
  background: var(--muted);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.loading-progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.5s ease;
  width: 0%;
}

.loading-percent {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.loading-steps {
  text-align: left;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--muted-foreground);
  border-bottom: 1px solid var(--border);
}

.loading-step:last-child {
  border-bottom: none;
}

.loading-step.active {
  color: var(--foreground);
}

.loading-step.complete {
  color: var(--success);
}

.loading-step-icon {
  width: 20px;
  height: 20px;
}

.loading-step-icon svg {
  width: 20px;
  height: 20px;
}

.loading-step.complete .loading-step-icon svg {
  fill: var(--success);
  stroke: white;
}

/* ============================================
   Result
============================================ */
.result-header {
  text-align: center;
  margin-bottom: 24px;
}

.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.result-icon svg {
  width: 32px;
  height: 32px;
}

.result-icon-success {
  background: var(--success-light);
  color: var(--success);
}

.result-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.result-subtitle {
  color: var(--muted-foreground);
}

.result-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: var(--radius);
  padding: 24px;
  color: white;
  margin-bottom: 24px;
}

.result-card-header {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.result-card-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.result-card-details {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.result-detail-label {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.result-detail-value {
  font-size: 16px;
  font-weight: 600;
}

/* ============================================
   Contract
============================================ */
.contract-progress {
  height: 4px;
  background: var(--muted);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 24px;
}

.contract-progress-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 16.66%;
}

.contract-step {
  animation: fadeIn 0.3s ease;
}

.payment-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-type-btn {
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.payment-type-btn:hover {
  border-color: var(--primary);
}

.payment-type-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
}

/* Receipt */
.receipt {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.receipt-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.receipt-logo {
  width: 32px;
  height: 32px;
}

.receipt-brand {
  font-size: 18px;
  font-weight: 700;
}

.receipt-status {
  text-align: center;
  margin-bottom: 24px;
}

.receipt-status-badge {
  display: inline-block;
  background: var(--success);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 50px;
}

.receipt-body {
  font-size: 14px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.receipt-label {
  color: var(--muted-foreground);
}

.receipt-value {
  font-weight: 500;
  text-align: right;
}

.receipt-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* Contract Terms */
.contract-terms {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.contract-terms h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contract-terms ul {
  list-style: none;
  font-size: 14px;
}

.contract-terms li {
  padding: 6px 0;
  color: var(--muted-foreground);
}

.contract-terms li strong {
  color: var(--foreground);
}

/* Video */
.video-container {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: #000;
}

.video-container video {
  width: 100%;
  display: block;
}

.video-topics {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.video-topics h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.video-topics ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.video-topics li {
  padding: 4px 0;
}

/* Payment */
.payment-box {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.payment-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
}

.payment-label {
  color: var(--muted-foreground);
  font-size: 14px;
  margin-bottom: 24px;
}

.qr-code {
  width: 180px;
  height: 180px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 12px;
  margin: 0 auto 12px;
  box-shadow: var(--shadow);
}

.qr-code img {
  width: 100%;
  height: 100%;
}

.qr-hint {
  font-size: 12px;
  color: var(--muted-foreground);
}

.pix-copy {
  margin-bottom: 24px;
}

.pix-copy-label {
  font-size: 14px;
  color: var(--muted-foreground);
  text-align: center;
  margin-bottom: 12px;
}

.pix-copy-box {
  display: flex;
  gap: 8px;
  background: var(--muted);
  border-radius: var(--radius);
  padding: 12px;
}

.pix-copy-box code {
  flex: 1;
  font-size: 10px;
  word-break: break-all;
  color: var(--muted-foreground);
  max-height: 60px;
  overflow-y: auto;
}

.btn-copy {
  width: 40px;
  height: 40px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.btn-copy:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.btn-copy svg {
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
}

.copy-feedback {
  text-align: center;
  color: var(--success);
  font-size: 14px;
  margin-top: 8px;
}

/* Complete */
.complete-content {
  text-align: center;
  padding: 24px 0;
}

.complete-icon {
  width: 80px;
  height: 80px;
  background: var(--success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--success);
}

.complete-icon svg {
  width: 40px;
  height: 40px;
}

.complete-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.complete-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.complete-info {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.complete-info p {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 12px;
}

.complete-info p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Footer
============================================ */
.footer {
  background: var(--foreground);
  color: rgba(255, 255, 255, 0.7);
  padding: 24px 0;
  text-align: center;
}

.footer p {
  font-size: 14px;
}

/* ============================================
   Utilities
============================================ */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted-foreground);
}

.text-sm {
  font-size: 14px;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.inline-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
}
