

:root {
  
  --brand-primary: #1d4ed8;
  --brand-primary-dark: #1e40af;
  --brand-primary-darker: #1e3a8a;
  --brand-primary-light: #dbeafe;
  --brand-primary-ultralight: #eff6ff;
  --brand-secondary: #3b82f6;
  --brand-success: #00C853;
  --brand-warning: #FF9800;
  --brand-danger: #F44336;

  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-tertiary: #999999;

  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-gray: #E9ECEF;

  --border-light: #E0E0E0;
  --border-medium: #CCCCCC;

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(29, 78, 216, 0.08);
  --shadow-md: 0 8px 24px rgba(29, 78, 216, 0.12);
  --shadow-lg: 0 16px 48px rgba(29, 78, 216, 0.16);
  --shadow-xl: 0 24px 64px rgba(29, 78, 216, 0.20);
  --shadow-layered:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(29, 78, 216, 0.08),
    0 8px 24px rgba(29, 78, 216, 0.04);

  --gradient-primary: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  --gradient-hero: linear-gradient(135deg, var(--brand-primary-ultralight) 0%, var(--bg-white) 100%);
  --gradient-section: linear-gradient(180deg, var(--bg-white) 0%, var(--brand-primary-ultralight) 100%);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 64px;
  --spacing-xxl: 80px;
  --spacing-section: clamp(64px, 8vw, 120px);
  --spacing-hero: clamp(80px, 10vw, 140px);
  --spacing-subsection: 32px;

  --font-size-hero: clamp(40px, 5vw, 64px);
  --font-size-section: clamp(32px, 4vw, 48px);
  --font-size-card-title: 24px;
  --font-size-overline: 12px;
  --line-height-tight: 1.1;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --letter-spacing-tight: -0.03em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.1em;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

.demo-banner {
  background: linear-gradient(135deg, #2874a6 0%, #1e5a8a 100%);
  color: white;
  padding: 12px 24px;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.demo-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.demo-banner-text {
  font-size: 14px;
  font-weight: 500;
}

.demo-banner-cta {
  display: inline-block;
  background: white;
  color: #1e5a8a;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.demo-banner-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .demo-banner {
    padding: 10px 16px;
  }

  .demo-banner-content {
    flex-direction: column;
    gap: 8px;
  }

  .demo-banner-text {
    font-size: 13px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background: white;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.brand-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.brand-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.brand-header .brand-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: -0.02em;
}

.brand-nav {
  display: flex;
  gap: var(--spacing-lg);
  align-items: center;
}

.brand-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

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

.brand-nav .nav-cta {
  background: var(--brand-primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.brand-nav .nav-cta:hover {
  background: var(--brand-primary-dark);
  color: white;
}

.nav-sos-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-danger);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-family);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-left: 8px;
}

.nav-sos-btn:hover {
  background: #d32f2f;
  transform: translateY(-1px);
}

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

.nav-sos-btn svg {
  flex-shrink: 0;
}

.hero-section {
  background: linear-gradient(180deg,
    #ffffff 0%,
    #fafcff 30%,
    #f5f9ff 60%,
    #F5FAFF 100%
  );
  padding: clamp(40px, 5vw, 64px) 0 var(--spacing-section) 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vw, 64px) auto;
}

.hero-logo-centered {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-logo-centered svg {
  width: auto;
  height: 48px;
}

.hero-section .hero-title,
h1.hero-title {
  font-size: 48px !important;
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
  margin-block: 0 16px;
  letter-spacing: var(--letter-spacing-tight);
  white-space: nowrap;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: var(--line-height-relaxed);
  font-weight: 500;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--bg-white);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badge svg {
  color: var(--brand-success);
  flex-shrink: 0;
}

.action-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.action-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.action-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.action-card:hover::before {
  opacity: 1;
}

.action-card:hover {
  box-shadow: var(--shadow-layered);
  border-color: transparent;
  transform: translateY(-8px) scale(1.02);
}

.action-card:active {
  transform: translateY(-6px) scale(1.01);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.action-card:hover .card-icon {
  transform: scale(1.1) rotate(2deg);
}

.email-icon {
  background: linear-gradient(135deg, #1e5a8a 0%, #164568 100%);
  color: white;
}

.upload-icon {
  background: linear-gradient(135deg, #00B8D4 0%, #0097A7 100%);
  color: white;
}

.chat-icon {
  background: linear-gradient(135deg, #7C4DFF 0%, #651FFF 100%);
  color: white;
}

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

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

.card-action {
  margin-top: auto;
}

.email-address {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: var(--bg-light);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.email-address code {
  flex-grow: 1;
  font-family: 'SF Mono', Monaco, 'Courier New', monospace;
  font-size: 15px;
  color: var(--brand-primary);
  font-weight: 600;
}

.copy-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.copy-btn:hover {
  color: var(--brand-primary);
}

.response-time {
  font-size: 13px;
  color: var(--text-tertiary);
  margin: 0;
}

.action-btn {
  width: 100%;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.action-btn:active::before {
  width: 300px;
  height: 300px;
}

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

.action-btn.primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}

.action-btn.primary:hover::after {
  opacity: 1;
}

.action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.action-btn.primary:active {
  transform: translateY(-1px);
}

.action-btn.secondary {
  background: var(--bg-light);
  color: var(--brand-primary);
  border: 1px solid var(--border-light);
  border: 1px solid var(--border-light);
}

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

.hero-lookup-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--brand-primary-light);
  border: 1px solid var(--border-light);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.toolbar-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.toolbar-search-wrapper {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.toolbar-search-input {
  width: 100%;
  padding: 10px 40px 10px 40px;
  font-size: 14px;
  font-family: var(--font-family);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-sm);
  background: white;
}

.toolbar-search-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(30, 90, 138, 0.1);
}

.hero-lookup-toolbar .lookup-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

.hero-lookup-toolbar .lookup-clear-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--text-tertiary);
}

.hero-lookup-toolbar .lookup-clear-btn:hover {
  color: var(--text-secondary);
}

.hero-lookup-toolbar .lookup-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  margin-top: 4px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.hero-lookup-toolbar .lookup-dropdown.active {
  display: block;
}

.hero-section .lookup-result {
  margin-top: 16px;
  display: none;
}

.hero-section .lookup-result.active {
  display: block;
}

.hero-section .lookup-result-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-white);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .hero-lookup-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .toolbar-label {
    text-align: center;
  }

  .toolbar-search-wrapper {
    max-width: none;
  }

  .hero-section .lookup-result-content {
    flex-direction: column;
    text-align: center;
  }
}

.how-it-works {
  padding: var(--spacing-xxl) 0;
  background: var(--bg-light);
}

.section-overline {
  font-size: var(--font-size-overline);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  color: var(--brand-primary);
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

.section-title {
  font-size: var(--font-size-section);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 250px;
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--brand-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto var(--spacing-md);
}

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

.step-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-arrow {
  font-size: 32px;
  color: var(--brand-primary);
  font-weight: 300;
}

.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-section.delay-1 { transition-delay: 0.1s; }
.fade-in-section.delay-2 { transition-delay: 0.2s; }
.fade-in-section.delay-3 { transition-delay: 0.3s; }
.fade-in-section.delay-4 { transition-delay: 0.4s; }

.faq-section {
  padding: var(--spacing-section) 0;
  background: var(--bg-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-lg);
}

.faq-item {
  background: var(--bg-light);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--brand-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.faq-answer {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-answer a {
  color: var(--brand-primary);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.brand-footer {
  background: var(--text-primary);
  color: white;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-lg);
  gap: var(--spacing-lg);
}

.footer-brand .brand-logo {
  margin-bottom: var(--spacing-sm);
}

.footer-brand .brand-name {
  color: white;
}

.footer-brand svg rect {
  fill: white;
}

.footer-brand svg path,
.footer-brand svg circle {
  fill: var(--brand-primary);
}

.footer-tagline {
  font-size: 14px;
  color: #CBD5E1; 
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  flex: 1;
}

.footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-column h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-link-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-powered {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-powered a {
  color: var(--brand-secondary);
  text-decoration: none;
  font-weight: 600;
}

.footer-powered a:hover {
  text-decoration: underline;
}

.brand-footer-simple {
  padding: var(--spacing-md) 0;
}

.brand-footer-simple .footer-bottom {
  border-top: none;
  padding-top: 0;
}

.need-help-section {
  padding: 64px 0;
  background: var(--bg-light);
  text-align: center;
}

.need-help-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.need-help-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0 0 24px 0;
}

.need-help-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.need-help-phone:hover {
  color: var(--brand-primary-dark);
}

.need-help-phone svg {
  flex-shrink: 0;
}

.need-help-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.need-help-sos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.need-help-sos:hover {
  background: #a93226;
}

.need-help-sos svg {
  flex-shrink: 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
  display: flex;
}

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

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

.modal-content {
  position: relative;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modal-content.modal-large {
  max-width: 900px;
}

.modal-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  background: var(--bg-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.modal-close:hover {
  background: var(--bg-gray);
  color: var(--text-primary);
  transform: scale(1.1) rotate(90deg);
}

.modal-header {
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--border-light);
}

.modal-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-primary);
}

.modal-header p {
  font-size: 15px;
  color: var(--text-secondary);
}

.modal-body {
  padding: var(--spacing-lg);
}

.upload-zone {
  border: 2px dashed var(--border-medium);
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.upload-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.upload-zone:hover {
  border-color: var(--brand-primary);
  background: var(--brand-primary-light);
  transform: scale(1.01);
}

.upload-zone:hover::before {
  opacity: 0.3;
}

.upload-zone svg {
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
}

.upload-zone p {
  color: var(--text-secondary);
  margin-bottom: var(--spacing-xs);
}

.upload-hint {
  font-size: 13px;
  color: var(--text-tertiary);
}

.upload-result {
  text-align: center;
  padding: var(--spacing-lg);
}

.result-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

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

.result-icon.warning {
  background: var(--brand-danger);
  color: white;
}

.result-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.result-message {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.6;
}

.education-section {
  padding: var(--spacing-xxl) 0;
  background: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.6;
}

.scam-alerts {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.scam-alert {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-primary);
}

.alert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.alert-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alert-badge.urgent {
  background: linear-gradient(135deg, #F44336 0%, #D32F2F 100%);
  color: white;
}

.alert-badge.warning {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  color: white;
}

.alert-badge.info {
  background: linear-gradient(135deg, #00B8D4 0%, #0097A7 100%);
  color: white;
}

.alert-date {
  font-size: 14px;
  color: var(--text-tertiary);
}

.alert-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.alert-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.alert-details {
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-sm);
  margin-top: var(--spacing-md);
}

.alert-details h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.alert-details h4:first-child {
  margin-top: 0;
}

.alert-details ul {
  list-style: none;
  padding-left: 0;
}

.alert-details li {
  font-size: 15px;
  color: var(--text-secondary);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.alert-details li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--brand-primary);
  font-weight: bold;
}

.education-tips {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
}

.tips-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.tip-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.tip-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.tip-item p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.education-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--bg-white) 100%);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  border: 2px solid var(--brand-primary);
}

.education-cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.education-cta p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .action-btn {
  width: auto;
  min-width: 180px;
}

@media (max-width: 768px) {
  .hero-logo-centered svg {
    height: 40px;
  }

  .hero-content {
    margin-bottom: 24px;
  }

  .hero-section .hero-title,
  h1.hero-title {
    font-size: 28px !important;
    white-space: normal !important;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .brand-nav {
    display: none;
  }

  .action-cards {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

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

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

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .section-title {
    font-size: 28px;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .action-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: var(--spacing-xl) 0;
  }

  .actions-section,
  .how-it-works,
  .faq-section,
  .education-section {
    padding: var(--spacing-xl) 0;
  }

  .alert-title {
    font-size: 20px;
  }

  .education-cta h3 {
    font-size: 24px;
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.trust-column {
  background: var(--bg-white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-column.will-do {
  border-top: 4px solid var(--brand-success);
}

.trust-column.wont-do {
  border-top: 4px solid var(--brand-danger);
}

.trust-heading {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.trust-heading svg {
  flex-shrink: 0;
}

.trust-column.will-do .trust-heading {
  color: var(--brand-success);
}

.trust-column.wont-do .trust-heading {
  color: var(--brand-danger);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list li {
  padding: var(--spacing-sm) 0;
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--bg-gray);
}

.trust-list li:last-child {
  border-bottom: none;
}

.trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.will-do .trust-list li::before {
  background: var(--brand-success);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  mask-size: cover;
}

.wont-do .trust-list li::before {
  background: var(--brand-danger);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
  mask-size: cover;
}

.trust-list li code {
  background: var(--bg-light);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--brand-primary);
  font-family: 'Monaco', 'Courier New', monospace;
}

.scam-tactics-section {
  padding: clamp(64px, 8vw, 120px) 0;
  background: transparent;
}

.tactics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 16px;
  margin-top: var(--spacing-lg);
}

.tactic-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
}

.tactic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.tactic-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.tactic-icon svg {
  color: var(--brand-primary);
}

.tactic-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.tactic-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.red-flag {
  display: inline-block;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 6px;
}

.emergency-toggle-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.emergency-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  color: #92400e;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.emergency-toggle:hover {
  background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.emergency-toggle.active {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border-color: #ef4444;
  color: #991b1b;
}

.emergency-toggle svg {
  flex-shrink: 0;
}

.emergency-toggle .chevron {
  transition: transform 0.3s ease;
}

.emergency-toggle.active .chevron {
  transform: rotate(180deg);
}

.emergency-panel {
  display: none;
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #ef4444;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  animation: slideDown 0.3s ease;
}

.emergency-panel.active {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.emergency-content {
  max-width: 700px;
  margin: 0 auto;
}

.emergency-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--spacing-lg);
  justify-content: center;
}

.emergency-header svg {
  color: #dc2626;
}

.emergency-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #991b1b;
  margin: 0;
}

.emergency-steps {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.emergency-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.emergency-step .step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.emergency-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
}

.emergency-step p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.emergency-actions {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.emergency-btn.primary {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
}

.emergency-btn.primary:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.emergency-btn.secondary {
  background: white;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.emergency-btn.secondary:hover {
  background: var(--brand-primary-light);
  transform: translateY(-2px);
}

.emergency-close {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #991b1b;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 auto;
  padding: 8px 16px;
  transition: all 0.2s ease;
}

.emergency-close:hover {
  color: #7f1d1d;
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .emergency-toggle {
    padding: 10px 20px;
    font-size: 14px;
  }

  .emergency-panel {
    padding: var(--spacing-lg);
  }

  .emergency-header h2 {
    font-size: 24px;
  }

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

  .emergency-btn {
    width: 100%;
    justify-content: center;
  }
}

.situational-scams-section {
  padding: var(--spacing-section) 0;
  background: transparent;
}

.situation-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-lg);
}

.situation-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.situation-tab:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 90, 138, 0.15);
}

.situation-tab.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(30, 90, 138, 0.3);
}

.situation-tab svg {
  flex-shrink: 0;
}

.situation-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.situation-content.active {
  display: block;
}

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

.situational-scams-section .tactics-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: auto;
}

@media (max-width: 768px) {
  .situation-tabs {
    gap: 8px;
  }

  .situation-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .situation-tab span {
    display: none;
  }

  .situation-tab svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .situation-tab {
    padding: 10px 14px;
    font-size: 13px;
  }
}

.spot-scam-section {
  padding: clamp(64px, 8vw, 120px) 0;
  background: linear-gradient(180deg, var(--brand-primary-ultralight) 0%, transparent 100%);
}

.spot-scam-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  max-width: 700px;
  margin: 0 auto;
}

.spot-card {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.spot-card:hover:not(.answered) {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.message-mockup {
  background: #f0f0f0;
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.message-mockup.text-message {
  background: linear-gradient(135deg, #e5e5ea 0%, #d1d1d6 100%);
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.message-sender {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.message-sender svg {
  color: #666;
}

.message-time {
  font-size: 12px;
  color: #666;
}

.message-body {
  font-size: 15px;
  line-height: 1.5;
  color: #1a1a1a;
  padding: 12px 16px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.spot-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: var(--spacing-md);
}

.spot-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.spot-btn.legit-btn {
  background: #f0fdf4;
  color: #166534;
  border-color: #86efac;
}

.spot-btn.legit-btn:hover:not(:disabled) {
  background: #dcfce7;
  border-color: #22c55e;
  transform: translateY(-2px);
}

.spot-btn.scam-btn {
  background: #fef2f2;
  color: #991b1b;
  border-color: #fecaca;
}

.spot-btn.scam-btn:hover:not(:disabled) {
  background: #fee2e2;
  border-color: #ef4444;
  transform: translateY(-2px);
}

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

.spot-btn.correct {
  background: #22c55e !important;
  border-color: #16a34a !important;
  color: white !important;
}

.spot-btn.wrong {
  background: #ef4444 !important;
  border-color: #dc2626 !important;
  color: white !important;
}

.spot-btn.selected {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.spot-reveal {
  display: none;
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--border-light);
  animation: fadeSlideIn 0.4s ease;
}

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

.reveal-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-md);
}

.reveal-badge.scam {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
}

.reveal-badge.legit {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.reveal-explanation {
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
}

.reveal-explanation h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.reveal-explanation ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-md) 0;
}

.reveal-explanation li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.reveal-explanation li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.reveal-badge.scam + .reveal-explanation li::before {
  background: #ef4444;
}

.reveal-badge.legit + .reveal-explanation li::before {
  background: #22c55e;
}

.reveal-action {
  font-size: 14px;
  color: var(--text-primary);
  margin: 0;
  padding: var(--spacing-sm);
  background: white;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--brand-primary);
}

.spot-card.correct {
  border-color: #22c55e;
}

.spot-card.incorrect {
  border-color: #ef4444;
}

@media (max-width: 768px) {
  .spot-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .spot-btn {
    width: 100%;
  }

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

@media (max-width: 1024px) {

  .action-cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .action-card:nth-child(1),
  .action-card:nth-child(2),
  .action-card:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }

  .action-card:nth-child(1) {
    padding: 40px;
  }

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

@media (max-width: 768px) {
  
  .hero-section {
    padding: clamp(60px, 10vw, 80px) 0 clamp(40px, 8vw, 60px) 0;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .tactics-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .action-cards {
    grid-template-columns: 1fr;
  }

  .action-card:nth-child(1) {
    padding: 32px;
  }

  .scam-tactics-section,
  .actions-section {
    padding: clamp(40px, 8vw, 60px) 0;
  }

  .action-card,
  .tactic-card,
  .faq-item {
    padding: var(--spacing-md);
  }

  .section-overline {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: 16px;
    line-height: 1.7;
  }

  .action-btn {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .cta-buttons .action-btn {
    width: 100%;
  }

  .modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .card-icon svg,
  .tactic-icon svg {
    width: 28px;
    height: 28px;
  }

  .action-card {
    flex-direction: row;
    align-items: center;
    padding: 16px !important;
    gap: 12px;
  }

  .action-card .card-icon {
    display: flex !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    margin-bottom: 0 !important;
    border-radius: 10px;
  }

  .action-card .card-icon svg {
    width: 22px !important;
    height: 22px !important;
    color: white !important;
    stroke: white !important;
  }

  .action-card .card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .action-card .card-action {
    display: none !important;
  }

  .action-card .card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: left;
  }

  .action-card .card-description {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: left;
    color: var(--text-secondary);
  }

  .section-header-left {
    text-align: center;
  }

  .checklists-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .checklists-grid::-webkit-scrollbar {
    display: none;
  }

  .checklists-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .checklist-card {
    flex: 0 0 140px;
    scroll-snap-align: start;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  
  :root {
    --font-size-hero: clamp(32px, 8vw, 48px);
    --font-size-section: clamp(24px, 6vw, 36px);
  }

  .brand-container {
    padding: 0 16px;
  }

  .brand-header {
    padding: 12px 0;
  }

  .brand-nav a {
    font-size: 14px;
    padding: 8px 12px;
  }

  .trust-badge {
    font-size: 13px;
    padding: 8px 12px;
  }
}


.scam-alerts-section {
  padding: 32px 0 48px;
  background: linear-gradient(180deg,
    #F5FAFF 0%,
    #fafcff 100%
  );
}

.section-header-left {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 32px 0;
  text-align: left;
}

.alerts-carousel {
  position: relative;
}

.alerts-carousel-inner {
  overflow: hidden;
}

.alerts-track {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.alert-tile {
  flex: 0 0 calc((100% - 40px) / 3);
  background: white;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
  transition: all 0.2s ease;
}

.carousel-arrow:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: white;
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
  background: white;
  border-color: var(--border-light);
  color: inherit;
}

.carousel-arrow-prev {
  left: -20px;
}

.carousel-arrow-next {
  right: -20px;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.alert-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.alert-tile-image {
  height: 140px;
  position: relative;
  overflow: hidden;
  background: var(--bg-light);
}

.alert-tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.alert-tile:hover .alert-tile-image img {
  transform: scale(1.05);
}

.alert-tile-icon {
  font-size: 48px;
  opacity: 0.9;
}

.alert-tile-content {
  padding: 16px 20px 20px;
}

.alert-tile-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.alert-tile-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.alert-tile-date {
  font-size: 12px;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .alert-tile {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .carousel-arrow-prev {
    left: -15px;
  }
  .carousel-arrow-next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .scam-alerts-section {
    padding: 48px 0 24px;
  }

  .checklists-section {
    padding: 24px 0 48px;
  }

  .alert-tile {
    flex: 0 0 100%;
  }

  .alert-tile-image {
    height: 120px;
  }

  .alert-tile-icon {
    font-size: 40px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow-prev {
    left: -10px;
  }

  .carousel-arrow-next {
    right: -10px;
  }
}

/* Scam Tip Banner - rotating educational tips */
.scam-tip-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
  border-bottom: 1px solid #0d1f35;
  color: #ffffff;
  padding: 14px 24px;
  width: 100%;
}

.scam-tip-banner .tip-icon {
  font-size: 20px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.scam-tip-banner .tip-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .scam-tip-banner {
    padding: 12px 16px;
    gap: 10px;
  }
  .scam-tip-banner .tip-text {
    font-size: 14px;
  }
}


.scam-news-modal .scam-modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  margin: auto;
  box-shadow: var(--shadow-xl);
}

.scam-modal-header {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  border-bottom: 1px solid var(--border-light);
  background: var(--brand-primary-ultralight);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.scam-modal-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: var(--brand-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.scam-modal-date {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.scam-modal-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.scam-modal-body {
  padding: var(--spacing-lg);
}

.scam-section {
  margin-bottom: var(--spacing-lg);
}

.scam-section:last-child {
  margin-bottom: 0;
}

.scam-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 var(--spacing-sm) 0;
}

.scam-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.scam-section ul {
  margin: 0;
  padding-left: 20px;
}

.scam-section li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}

.scam-section li:last-child {
  margin-bottom: 0;
}

.scam-section li strong {
  color: var(--text-primary);
}

.scam-section.warning-box {
  background: #FFF8F0;
  border: 1px solid #FFCC80;
  border-left: 4px solid var(--brand-warning);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

.scam-section.warning-box h3 {
  color: #E65100;
}

.scam-section.protect-box {
  background: #F0FFF4;
  border: 1px solid #A5D6A7;
  border-left: 4px solid var(--brand-success);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
}

.scam-section.protect-box h3 {
  color: #2E7D32;
}

.scam-modal-footer {
  padding: var(--spacing-md) var(--spacing-lg);
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.scam-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.scam-source-link:hover {
  color: var(--brand-primary-dark);
  text-decoration: underline;
}

.scam-source-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

@media (max-width: 900px) {
  .news-scams-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .news-scam-card {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .news-scam-icon {
    width: 48px;
    height: 48px;
  }

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

  .news-scam-card > *:not(.news-scam-icon) {
    flex: 1 1 calc(100% - 64px);
  }

  .news-scam-excerpt {
    flex: 1 1 100%;
  }

  .news-scam-cta {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {
  .scam-modal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .scam-modal-header h2 {
    font-size: 18px;
  }

  .scam-modal-icon {
    width: 56px;
    height: 56px;
  }

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

  .scam-section h3 {
    font-size: 15px;
  }

  .scam-section p,
  .scam-section li {
    font-size: 14px;
  }
}

.brand-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.brand-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

@media (max-width: 1024px) {
  .brand-nav {
    gap: 4px;
  }

  .brand-nav a {
    font-size: 13px;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .brand-header .brand-container {
    flex-direction: column;
    gap: 16px;
  }

  .brand-nav {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .brand-nav a {
    font-size: 12px;
    padding: 6px 8px;
  }
}

.company-lookup-section {
  padding: 32px 0;
  background: var(--brand-primary-dark);
}

.company-lookup-section .section-title {
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
}

.company-lookup-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 0;
}

.lookup-container {
  max-width: 600px;
  margin: 20px auto 0;
}

.lookup-input-wrapper {
  position: relative;
}

.lookup-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
}

.lookup-input {
  width: 100%;
  padding: 16px 48px;
  font-size: 16px;
  font-family: var(--font-family);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-white);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.lookup-input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(30, 90, 138, 0.1);
}

.lookup-input::placeholder {
  color: var(--text-tertiary);
}

.lookup-clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text-tertiary);
  border-radius: 50%;
  transition: all 0.2s ease;
}

.lookup-clear-btn:hover {
  background: var(--bg-gray);
  color: var(--text-secondary);
}

.lookup-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: 8px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.lookup-dropdown.active {
  display: block;
}

.lookup-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid var(--border-light);
}

.lookup-dropdown-item:last-child {
  border-bottom: none;
}

.lookup-dropdown-item:hover {
  background: var(--brand-primary-light);
}

.lookup-dropdown-item-name {
  font-weight: 500;
  color: var(--text-primary);
}

.lookup-dropdown-item-category {
  font-size: 12px;
  color: var(--text-tertiary);
  text-transform: capitalize;
}

.lookup-dropdown-empty {
  padding: 24px 16px;
  text-align: center;
  color: var(--text-tertiary);
}

.lookup-result {
  margin-top: 24px;
  display: none;
}

.lookup-result.active {
  display: block;
}

.lookup-result-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-white);
  border: 2px solid var(--brand-primary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.lookup-result-info {
  flex: 1;
}

.lookup-result-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.lookup-result-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.lookup-result-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--brand-primary);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lookup-result-btn:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.lookup-result-btn svg {
  flex-shrink: 0;
}

.lookup-helper-text {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .lookup-result-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .lookup-result-btn {
    justify-content: center;
  }

  .lookup-result-category {
    margin-bottom: 4px;
  }

  .lookup-result-name {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.checklists-section {
  padding: 48px 0 80px;
  background: linear-gradient(180deg,
    #fafcff 0%,
    #ffffff 100%
  );
}

.checklists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.checklist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 0;
}

.checklist-card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.checklist-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background: var(--brand-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px 0;
  color: var(--brand-primary);
  flex-shrink: 0;
  order: 1;
}

.checklist-icon svg {
  width: 28px;
  height: 28px;
}

.checklist-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px 0;
  line-height: 1.3;
  order: 2;
}

.checklist-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
  order: 3;
}

@media (max-width: 1024px) {
  .checklists-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  
  .section-header-left {
    text-align: center !important;
  }

  .checklists-grid {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .checklists-grid::-webkit-scrollbar {
    display: none;
  }

  .checklist-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
    max-width: 320px;
  }

  .checklist-card:hover {
    transform: none;
  }
}

.checklist-modal .checklist-modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}

.checklist-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 32px 24px;
  border-bottom: 1px solid var(--border-light);
}

.checklist-modal-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--brand-primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.checklist-modal-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.checklist-modal-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.checklist-modal-body {
  padding: 24px 32px;
}

.checklist-items {
  display: flex;
  flex-direction: column;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: background 0.15s ease;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-item:hover {
  background: var(--brand-primary-ultralight);
  margin: 0 -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.checklist-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--border-medium);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 1px;
}

.checklist-item input:checked + .checkmark {
  background: var(--brand-success);
  border-color: var(--brand-success);
}

.checklist-item input:checked + .checkmark::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checklist-item input:checked ~ .item-text {
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.item-text {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.5;
  transition: all 0.2s ease;
}

.checklist-warning {
  background: #FFF8F0;
  border-left: 4px solid var(--brand-warning);
  padding: 16px 20px;
  margin-top: 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
}

.checklist-warning strong {
  color: #D84315;
  display: block;
  margin-bottom: 4px;
}

.golden-rule {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  color: white;
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}

.golden-rule-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.golden-rule-text {
  flex: 1;
}

.script-breaker {
  background: #F0F9FF;
  border: 1px solid #BAE6FD;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}

.script-breaker-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0369A1;
  font-size: 14px;
}

.script-breaker-icon {
  font-size: 16px;
}

.script-breaker-text {
  font-style: italic;
  color: #1E3A5F;
  padding: 12px;
  background: white;
  border-radius: 6px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.copy-script-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #0284C7;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.copy-script-btn:hover {
  background: #0369A1;
}

.copy-script-btn.copied {
  background: #10B981;
}

.checklist-modal-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--border-light);
}

.email-checklist-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: var(--brand-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.email-checklist-btn:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-1px);
}

.email-checklist-btn svg {
  stroke: currentColor;
}

.email-capture-form {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.email-capture-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.email-capture-form input[type="email"]:focus {
  border-color: var(--brand-primary);
}

.email-capture-form .send-checklist-btn {
  padding: 12px 24px;
  background: var(--brand-success);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.email-capture-form .send-checklist-btn:hover {
  background: #00A843;
}

.email-capture-form .send-checklist-btn:disabled {
  background: var(--border-medium);
  cursor: not-allowed;
}

.email-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: #E8F5E9;
  color: #2E7D32;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .checklists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .checklist-modal-header {
    flex-direction: column;
    padding: 24px 20px 20px;
  }

  .checklist-modal-body {
    padding: 20px;
  }

  .checklist-modal-footer {
    padding: 20px;
  }

  .checklist-item:hover {
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .email-capture-form {
    flex-direction: column;
  }

  .email-capture-form .send-checklist-btn {
    width: 100%;
  }
}

@media print {
  .fade-in-section {
    opacity: 1 !important;
    transform: none !important;
  }

  .checklists-section,
  .scam-alerts-section,
  .need-help-section {
    background: white !important;
  }

}

.scam-recovery-section {
  background: linear-gradient(135deg, #fff0f0 0%, #fce8e8 100%);
  padding: var(--spacing-lg) 0;
}

.recovery-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(30, 90, 138, 0.08);
}

.recovery-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
}

.recovery-content {
  flex: 1;
  min-width: 0;
}

.recovery-content h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.recovery-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.recovery-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #b91c1c;
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.recovery-cta:hover {
  background: #991b1b;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.recovery-cta svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .recovery-card {
    flex-direction: column;
    text-align: center;
    padding: var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .recovery-content h2 {
    font-size: 18px;
  }

  .recovery-content p {
    font-size: 14px;
  }

  .recovery-cta {
    width: 100%;
    justify-content: center;
  }
}
