/* CSS Design System & Stylesheet - Código Agente de Vendas */

/* Custom Reset & Variables */
:root {
  --bg-main: #060608;
  --bg-subtle: #0d0d11;
  --bg-card: rgba(15, 15, 19, 0.75);
  --bg-input: #121216;
  --text-primary: #f5f5f7;
  --text-secondary: #8e8e9f;
  --text-muted: #575765;
  --orange-primary: #ff5c00;
  --orange-hover: #ff7629;
  --orange-glow: rgba(255, 92, 0, 0.15);
  --orange-border: rgba(255, 92, 0, 0.35);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition-fast: all 0.15s ease;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 6px;
  --border-radius-md: 10px;
  --border-radius-lg: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.5;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1c1c24;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2b2b36;
}

/* Ambient glow & grid */
.ambient-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 450px;
  background: 
    radial-gradient(circle at top, rgba(255, 92, 0, 0.08) 0%, rgba(255, 92, 0, 0.01) 50%, transparent 80%),
    radial-gradient(circle at 50% 80px, rgba(255, 255, 255, 0.02) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
  z-index: 0;
  pointer-events: none;
}

/* Header */
.header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(6, 6, 8, 0.6);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background-color: var(--orange-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange-primary);
}

.logo-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, #a6a6b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-premium {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 92, 0, 0.07);
  border: 1px solid rgba(255, 92, 0, 0.2);
  color: var(--orange-primary);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-icon {
  width: 12px;
  height: 12px;
}

/* Main Layout */
.main-layout {
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 50px 24px;
}

.hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-centered .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
}

.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.tagline-accent {
  color: var(--orange-primary);
}

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

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
  background: linear-gradient(to right, #ffffff 50%, #d4d4e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 720px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 32px;
}

/* Hero Scroll Down Button */
.hero-scroll-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.hero-scroll-btn:hover {
  color: var(--orange-primary);
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  animation: bounceDown 2s infinite;
  color: var(--orange-primary);
}

/* Section Header Badges */
.section-badge, .form-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange-primary);
  background-color: rgba(255, 92, 0, 0.08);
  border: 1px solid rgba(255, 92, 0, 0.15);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.form-badge {
  margin-bottom: 16px;
}

/* Como Utilizar Section (Steps) */
.how-it-works {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-subtle);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4);
}

.step-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange-primary);
  background: rgba(255, 92, 0, 0.08);
  border: 1px solid rgba(255, 92, 0, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.step-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Step Previews */
.step-footer-visual {
  height: 110px;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px dashed var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  position: relative;
}

.whatsapp-bubble {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 8px;
  max-width: 85%;
  line-height: 1.3;
}
.mock-incoming {
  background-color: #202c33;
  color: var(--text-primary);
  align-self: flex-start;
  border-top-left-radius: 0;
}
.mock-outgoing {
  background-color: #005c4b;
  color: #e9edef;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.paste-area-mock {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.paste-area-mock span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.analysis-mock {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  height: 100%;
}
.analysis-mock .bar {
  height: 6px;
  border-radius: 3px;
}
.bar-orange {
  background: linear-gradient(90deg, var(--orange-primary), #ff883b);
  box-shadow: 0 0 6px rgba(255, 92, 0, 0.3);
}
.bar-gray {
  background: #33333e;
}

.scroll-instruction-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 500;
}

.pulse-arrow {
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.pulse-arrow:hover {
  color: var(--orange-primary);
}

.pulse-arrow svg {
  width: 24px;
  height: 24px;
  animation: pulseVertical 1.6s infinite;
}

/* O Que Você Receberá Section (Features) */
.features-section {
  border-top: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.features-grid > .feature-card:nth-child(1) { grid-column: span 2; }
.features-grid > .feature-card:nth-child(2) { grid-column: span 2; }
.features-grid > .feature-card:nth-child(3) { grid-column: span 2; }
.features-grid > .feature-card:nth-child(4) { grid-column: span 3; }
.features-grid > .feature-card:nth-child(5) { grid-column: span 3; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

.feature-card-highlight {
  border-color: rgba(255, 92, 0, 0.15);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 92, 0, 0.02) 100%);
}
.feature-card-highlight:hover {
  border-color: rgba(255, 92, 0, 0.3);
  box-shadow: 0 10px 24px rgba(255, 92, 0, 0.05);
}

.feature-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-primary);
  margin-bottom: 20px;
}

.feature-card-highlight .feature-icon-wrapper {
  background-color: rgba(255, 92, 0, 0.1);
  border-color: rgba(255, 92, 0, 0.2);
  box-shadow: 0 0 8px rgba(255, 92, 0, 0.1);
}

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

.feature-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.feature-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Access Portal Layout at the bottom */
.access-form-section {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-subtle);
  padding: 40px 0 60px 0;
  position: relative;
}

.access-form-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 250px;
  background: radial-gradient(circle at bottom, rgba(255, 92, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* New Split Form-Portal Card Container */
.portal-grid-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch; /* Stretch makes button match input height */
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 44px;
  box-shadow: 
    0 20px 45px -15px rgba(0, 0, 0, 0.8),
    0 1px 2px rgba(255, 255, 255, 0.02) inset;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}

.portal-grid-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 92, 0, 0.35), transparent);
}

/* Left Panel: Inputs */
.portal-inputs-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.portal-inputs-panel .form-header {
  text-align: left;
  margin-bottom: 8px;
}

.portal-inputs-panel .form-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.portal-inputs-panel .form-header p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.input-wrapper input {
  width: 100%;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 12px 16px 12px 42px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 13.5px;
  transition: var(--transition-smooth);
}

.input-wrapper input:focus {
  outline: none;
  border-color: var(--orange-border);
  box-shadow: 0 0 0 3px var(--orange-glow);
  background-color: #14141a;
}

.input-group.invalid input {
  border-color: rgba(255, 77, 77, 0.4);
}
.input-group.invalid input:focus {
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
}
.input-group.invalid .input-icon {
  color: #ff4d4d;
}

.error-message {
  font-size: 11px;
  color: #ff4d4d;
  display: none;
  margin-top: 1px;
  animation: fadeIn 0.2s ease;
}

.input-group.invalid .error-message {
  display: block;
}

/* Right Panel: The Grand Access Portal Button Card */
.portal-access-card {
  background: linear-gradient(135deg, #131217 0%, #08080a 100%);
  border: 1px solid rgba(255, 92, 0, 0.12);
  border-radius: var(--border-radius-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 
    inset 0 0 16px rgba(255, 92, 0, 0.02),
    0 8px 20px rgba(0, 0, 0, 0.3);
  padding: 30px;
}

.portal-access-card:focus {
  outline: none;
  border-color: var(--orange-primary);
}

/* Glowing Neon Background inside Card */
.portal-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(255, 92, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Grid overlay background inside Card */
.portal-card-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(255, 92, 0, 0.08) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  opacity: 0.7;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.portal-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
  position: relative;
  width: 100%;
}

/* Robot Dollar Avatar Container */
.portal-robot-avatar {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c4c4d4;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.portal-robot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

/* Action Texts inside Portal Card */
.portal-card-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.portal-primary-label {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.portal-secondary-label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

/* Hover Interactive Mechanics */
.portal-access-card:hover {
  border-color: rgba(255, 92, 0, 0.45);
  box-shadow: 
    inset 0 0 20px rgba(255, 92, 0, 0.08),
    0 0 30px rgba(255, 92, 0, 0.15),
    0 12px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

.portal-access-card:hover .portal-card-glow {
  background: radial-gradient(circle, rgba(255, 92, 0, 0.28) 0%, transparent 60%);
  width: 160px;
  height: 160px;
}

.portal-access-card:hover .portal-card-grid {
  opacity: 1;
}

.portal-access-card:hover .portal-robot-avatar {
  color: #ffffff;
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 0 12px rgba(255, 92, 0, 0.3));
}

.portal-access-card:hover .portal-primary-label {
  color: var(--orange-primary);
  text-shadow: 0 0 10px rgba(255, 92, 0, 0.2);
}

.portal-access-card:hover .portal-secondary-label {
  color: var(--text-primary);
}

/* Active pressing mechanics */
.portal-access-card:active {
  transform: translateY(0);
}

/* Loading Portal Spinner Mechanics */
.portal-card-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.portal-access-card.loading .portal-card-content {
  visibility: hidden;
  opacity: 0;
}

.portal-access-card.loading .portal-card-loader {
  display: block;
}

.portal-access-card.loading {
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(255, 92, 0, 0.2);
  background: #09090c;
}

/* Section Common Layout Details */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  background-color: #040405;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 12px;
  color: var(--text-muted);
}

.admin-trigger {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-trigger:hover {
  color: var(--text-secondary);
  background-color: rgba(255, 255, 255, 0.03);
}

.admin-trigger svg {
  width: 15px;
  height: 15px;
}

/* Admin Modal */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background-color: #0c0c10;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  width: 100%;
  max-width: 800px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 101;
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 4px;
}

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

.modal-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.btn-secondary {
  background-color: #1a1a24;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  border-radius: var(--border-radius-md);
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background-color: #242432;
  border-color: var(--border-hover);
}

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

.btn-danger {
  background-color: transparent;
  border: 1px solid rgba(255, 77, 77, 0.2);
  color: #ff4d4d;
  border-radius: var(--border-radius-md);
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-danger:hover {
  background-color: rgba(255, 77, 77, 0.05);
  border-color: rgba(255, 77, 77, 0.4);
}

/* Leads Table */
.leads-table-container {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow-x: auto;
  background-color: #060608;
}

.leads-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12.5px;
}

.leads-table th {
  background-color: #111116;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-color);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.leads-table td {
  padding: 10px 14px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

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

.leads-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.01);
}

.no-leads-msg {
  padding: 30px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  display: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rotate {
  100% { transform: rotate(360deg); }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

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

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes pulseVertical {
  0% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
}

@keyframes eyeFlicker {
  0%, 100% { opacity: 0.95; filter: drop-shadow(0 0 1px var(--orange-primary)); }
  45% { opacity: 0.95; }
  46% { opacity: 0.3; }
  47% { opacity: 0.95; }
  49% { opacity: 0.95; }
  50% { opacity: 0.2; }
  51% { opacity: 0.95; }
}

/* Responsive Media Queries */

/* Tablet Layout */
@media (max-width: 992px) {
  .hero-section {
    padding: 50px 24px 40px 24px;
  }

  .hero-title {
    font-size: 34px;
  }

  .portal-grid-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px;
  }

  .portal-access-card {
    padding: 35px 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .features-grid > .feature-card:nth-child(1) { grid-column: span 1; }
  .features-grid > .feature-card:nth-child(2) { grid-column: span 1; }
  .features-grid > .feature-card:nth-child(3) { grid-column: span 2; }
  .features-grid > .feature-card:nth-child(4) { grid-column: span 1; }
  .features-grid > .feature-card:nth-child(5) { grid-column: span 1; }
}

/* Mobile Layout */
@media (max-width: 600px) {
  .header-container {
    padding: 14px 20px;
  }
  
  .hero-section {
    padding: 40px 20px 40px 20px;
  }
  
  .hero-title {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  
  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
  
  .portal-grid-container {
    padding: 24px 16px;
    gap: 24px;
  }

  .portal-access-card {
    padding: 28px 16px;
  }

  .portal-robot-avatar {
    width: 80px;
    height: 80px;
  }

  .form-header h3 {
    font-size: 18px;
  }
  
  .section-container {
    padding: 40px 20px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .features-grid > .feature-card:nth-child(1) { grid-column: span 1; }
  .features-grid > .feature-card:nth-child(2) { grid-column: span 1; }
  .features-grid > .feature-card:nth-child(3) { grid-column: span 1; }
  .features-grid > .feature-card:nth-child(4) { grid-column: span 1; }
  .features-grid > .feature-card:nth-child(5) { grid-column: span 1; }
  
  .feature-card {
    padding: 24px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
}
