/* SafeBrowse360 Landing Page Styles */

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

:root {
  --font-family: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Colors - Safe, secure, protective palette */
  --bg-primary: #f8fafb;
  --bg-secondary: #f1f5f7;
  --bg-accent: #1e6f4a;

  --text-primary: #0f2d23;
  --text-secondary: #4a5d5a;
  --text-muted: #748c87;
  --text-inverse: #ffffff;

  --accent-green: #1e6f4a;
  --accent-green-light: #e6f4ed;
  --accent-green-dark: #145338;

  --accent-blue: #2b6cb0;
  --accent-blue-light: #dceefa;
  --accent-teal: #0d9488;

  --border-color: #dde6e8;
  --border-light: #e8f0f2;

  --shadow-sm: 0 1px 3px rgba(26, 26, 24, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 26, 24, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 26, 24, 0.1);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 249, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

/* Nav buttons need to override the .nav-links a color */
.nav-links a.btn-primary {
  color: var(--text-inverse);
  background: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  padding: 10px 22px;
  font-size: 0.95rem;
}

.nav-links a.btn-primary:hover {
  color: var(--text-inverse);
  background: var(--accent-green);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 125, 70, 0.3);
}

.nav-links a.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
  padding: 10px 18px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.nav-links a.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

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

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

.btn-primary {
  background: var(--accent-green);
  color: var(--text-inverse);
  box-shadow: 0 2px 8px rgba(45, 125, 70, 0.25);
}

.btn-primary:hover {
  background: var(--accent-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 125, 70, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
  padding: 10px 22px;
}

.btn-outline:hover {
  background: var(--accent-green-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 12px 20px;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-secondary);
}

.btn-secondary-outline {
  background: transparent;
  color: var(--accent-green);
  border: 2px solid var(--accent-green);
  padding: 14px 24px;
}

.btn-secondary-outline:hover {
  background: var(--accent-green-light);
}

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

/* Share tooltip */
.share-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  animation: fadeInUp 0.3s ease;
  z-index: 10;
}

.share-tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--accent-green);
}

.share-tooltip.hidden {
  display: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: linear-gradient(165deg, #0f1923 0%, #162a3a 40%, #1a3248 100%);
  color: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(30, 111, 74, 0.15) 0%, transparent 60%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(43, 108, 176, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(30, 111, 74, 0.08) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-stat {
  font-size: 1.35rem;
  color: #4ade80;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-warning {
  font-size: 1rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.hero .btn-primary {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

.hero .btn-primary:hover {
  background: #16a34a;
  box-shadow: 0 6px 28px rgba(34, 197, 94, 0.45);
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Browser Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.browser-mockup {
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(34, 197, 94, 0.12),
    0 25px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
}

.browser-dots span:first-child {
  background: #ff6b6b;
}

.browser-dots span:nth-child(2) {
  background: #ffd93d;
}

.browser-dots span:last-child {
  background: #6bcb77;
}

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.browser-url svg {
  width: 16px;
  height: 16px;
  color: var(--accent-teal);
}

.browser-content {
  padding: 40px 32px;
}

.blocked-preview {
  text-align: center;
}

.blocked-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  color: var(--accent-blue);
}

.blocked-icon svg {
  width: 100%;
  height: 100%;
}

.blocked-preview h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.blocked-preview p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.blocked-buttons {
  display: flex;
  justify-content: center;
}

.mock-btn {
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
}

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

/* Real Stories Section */
.stories-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a18 0%, #2a2a28 100%);
  color: white;
}

.stories-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.stories-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-blue-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stories-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.stories-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* TikTok Video Belt */
.tiktok-belt-wrap {
  overflow: hidden;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.tiktok-belt {
  display: flex;
  gap: 14px;
  width: max-content;
}

.tiktok-belt-left {
  animation: tiktok-scroll-left 40s linear infinite;
}

.tiktok-belt-right {
  animation: tiktok-scroll-right 40s linear infinite;
}

.tiktok-belt:hover {
  animation-play-state: paused;
}

@keyframes tiktok-scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes tiktok-scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.tiktok-card {
  flex-shrink: 0;
  width: 196px;
}

.tiktok-card iframe {
  width: 196px;
  height: 343px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #111;
}

.tiktok-caption {
  text-align: center;
  margin-top: 8px;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.stories-cta {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stories-cta p {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .stories-header h2 {
    font-size: 2rem;
  }

  .tiktok-card {
    width: 168px;
  }

  .tiktok-card iframe {
    width: 168px;
    height: 294px;
  }

  .tiktok-belt {
    padding: 0 14px;
    gap: 10px;
  }

  .tiktok-belt-wrap {
    gap: 11px;
  }
}

@media (max-width: 500px) {
  .stories-header h2 {
    font-size: 1.75rem;
  }
}

/* Trust Section */
.trust-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-number.trust-icon {
  font-size: 1rem;
}

.trust-number.trust-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent-green);
}

.trust-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* Features Section */
.features-section {
  padding: 100px 0;
}

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

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent, var(--accent-green)) 10%, transparent);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent, var(--accent-green));
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* How It Works Section */
.how-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.step-card {
  display: flex;
  gap: 20px;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-green);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}


/* Social Proof - Tweets */
.social-proof-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

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

.tweet-card {
  display: block;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.tweet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tweet-card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .tweets-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Scams Section */
.scams-section {
  padding: 100px 0;
}

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

.scam-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.scam-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 108, 176, 0.1);
  border-radius: var(--radius-sm);
}

.scam-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-blue);
}

.scam-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.scam-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card-pro {
  border: 2px solid var(--accent-green);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.pricing-header .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-header .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-header .period {
  font-size: 1rem;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  background-color: var(--accent-green);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' 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' fill='currentColor'/%3E%3C/svg%3E");
  mask-size: contain;
  flex-shrink: 0;
}

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

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-pro {
    order: -1;
  }
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 2px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--accent-green);
  box-shadow: 0 8px 32px rgba(45, 125, 70, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-price .price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-price .period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features li strong {
  color: var(--text-primary);
}

.pricing-features li.feature-warning {
  color: var(--text-muted);
  font-style: italic;
}

.pricing-features li.feature-warning svg {
  color: #d97706;
}

.money-back {
  text-align: center;
  font-size: 0.85rem;
  color: var(--accent-green);
  margin-top: 16px;
  font-weight: 500;
}

/* Risk Comparison */
.risk-comparison {
  max-width: 700px;
  margin: 0 auto 48px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.risk-header {
  text-align: center;
  margin-bottom: 20px;
}

.risk-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 8px;
}

.risk-header p {
  font-size: 0.95rem;
  color: #78350f;
  line-height: 1.5;
}

.risk-example {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.risk-scenario {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.risk-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

.risk-label.free-label {
  background: #e5e7eb;
  color: #374151;
}

.risk-label.pro-label {
  background: var(--accent-green);
  color: white;
}

.risk-scenario p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.risk-scenario code {
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #dc2626;
}

.risk-stat {
  text-align: center;
  font-size: 0.9rem;
  color: #92400e;
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid #fde68a;
}

@media (max-width: 640px) {
  .risk-comparison {
    padding: 20px;
  }

  .risk-scenario {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--accent-green);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: white;
  color: var(--accent-green);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-primary:hover {
  background: var(--bg-primary);
  transform: translateY(-2px);
}

.cta-section .hero-note {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 16px;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 12px;
}

.footer-brand .logo-icon {
  color: var(--accent-green);
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .browser-mockup {
    max-width: 400px;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

/* ========================================
   Waitlist Modal
   ======================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 24, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-secondary);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

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

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-content {
  text-align: center;
}

.modal-content.modal-success {
  display: none;
}

.modal-content.modal-success.show {
  display: block;
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--accent-green);
}

.modal-icon.success {
  color: var(--accent-green);
}

.modal-icon svg {
  width: 100%;
  height: 100%;
}

.modal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.modal-content>p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
  text-align: center;
}

.modal-form input::placeholder {
  color: var(--text-muted);
}

.modal-form input:focus {
  border-color: var(--accent-green);
  background: white;
}

.modal-form .btn {
  position: relative;
}

.modal-form .btn-loader {
  display: none;
}

.modal-form .btn.loading .btn-text {
  visibility: hidden;
}

.modal-form .btn.loading .btn-loader {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.modal-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .modal {
    padding: 32px 24px;
  }
}

/* ============================================
   What Chrome Misses - Comparison Section
   ============================================ */
.chrome-compare-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a3248 0%, #1e3a50 40%, #243f54 100%);
  color: #ffffff;
}

.chrome-compare-section .section-header h2 {
  color: #ffffff;
}

.chrome-compare-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.chrome-compare-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-header-row {
  background: rgba(255, 255, 255, 0.05);
}

.compare-header-row .compare-chrome,
.compare-header-row .compare-sb {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.compare-feature,
.compare-chrome,
.compare-sb {
  padding: 14px 20px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.compare-feature {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-chrome {
  color: rgba(255, 255, 255, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.compare-sb {
  color: #4ade80;
  text-align: center;
  background: rgba(34, 197, 94, 0.06);
}

.compare-sb strong {
  color: #4ade80;
}

@media (max-width: 768px) {
  .compare-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .compare-header-row {
    display: none;
  }

  .compare-feature {
    border-right: none;
    border-bottom: none;
    padding-bottom: 4px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
  }

  .compare-chrome,
  .compare-sb {
    border-right: none;
    padding: 4px 20px 14px;
    text-align: left;
  }

  .compare-chrome {
    padding-bottom: 4px;
  }

  .compare-chrome::before {
    content: "Chrome: ";
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
  }

  .compare-sb::before {
    content: "SafeBrowse360: ";
    font-weight: 600;
  }
}

/* ============================================
   Can You Spot the Fake? Section
   ============================================ */
.spot-fake-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #243f54 0%, #2d4a5e 20%, var(--bg-secondary) 100%);
}

.spot-fake-section .section-header h2 {
  color: #ffffff;
}

.spot-fake-section .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.spot-fake-grid {
  max-width: 1300px;
  margin: 0 auto;
}

.spot-fake-card {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.spot-fake-example {
  flex: 1;
  max-width: 580px;
  text-align: center;
}

.spot-fake-vs {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.spot-fake-screenshot {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  display: block;
}

.spot-label {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.spot-label-real {
  background: #dcfce7;
  color: #166534;
}

.spot-label-fake {
  background: #fecaca;
  color: #991b1b;
}

.spot-fake-caption {
  text-align: center;
  margin-top: 32px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .spot-fake-card {
    flex-direction: column;
    gap: 16px;
  }

  .spot-fake-example {
    max-width: 100%;
  }
}