/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'SF Pro Display', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  touch-action: manipulation;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Premium scroll animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Base animation state for elements */
.animate-on-scroll {
  opacity: 0;
  will-change: transform, opacity;
}

.animate-visible {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Prevent zoom on mobile */
@media screen and (max-width: 768px) {
  body {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Ensure no horizontal scroll */
  * {
    max-width: 100vw;
  }
  
  .hero, .problem-section, .features-section, .pricing-section, .faq-section, .setup-section {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .hero-content, .problem-content, .setup-content, .privacy-content {
    max-width: calc(100vw - 44px);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px;
  height: 90px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-logo {
  height: 70px;
  width: auto;
}

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

.nav-links a {
  color: #1d1d1f;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.shopify-link {
  background: #007aff;
  color: white !important;
  padding: 6px 16px;
  border-radius: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.shopify-link:hover {
  background: #0056b3;
  opacity: 1 !important;
}

.login-link {
  color: #1d1d1f !important;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1d1d1f;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.login-link:hover {
  color: #007aff !important;
  opacity: 1 !important;
}

/* Main content */
main {
  padding-top: 90px;
}

/* Hero Section */
.hero {
  padding: 88px 22px 40px 22px;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content {
  max-width: 692px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.05;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
}

.gradient-text {
  color: #2a7eef;
}

.hero-subtitle {
  font-size: 21px;
  line-height: 1.381;
  color: #86868b;
  margin-bottom: 32px;
  max-width: 584px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
}

.hero-cta {
  margin-bottom: 64px;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}

.domain-input-wrapper {
  margin-bottom: 24px;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.domain-input-wrapper::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #2a7eef 0%, #5ba3ff 50%, #2a7eef 100%);
  -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.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.domain-input {
  width: 100%;
  padding: 20px 24px 20px 88px;
  font-size: 18px;
  border: 2px solid #e5e5e7;
  border-radius: 14px;
  background: linear-gradient(to bottom, #ffffff, #fafafa);
  color: #2a7eef;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.05),
    0 8px 24px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
}

.domain-input-wrapper::after {
  content: 'https://';
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 500;
  color: #2a7eef;
  pointer-events: none;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  letter-spacing: -0.01em;
  line-height: 1.2;
  height: 22px;
  display: flex;
  align-items: center;
}

.domain-input-wrapper:focus-within::after {
  opacity: 1;
  color: #2a7eef;
}

.domain-input::placeholder {
  color: #86868b;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.domain-input:hover {
  border-color: #c7d1db;
  background: #ffffff;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}

.domain-input:focus {
  border-color: transparent;
  background: #ffffff;
  box-shadow:
    0 4px 16px rgba(42, 126, 239, 0.12),
    0 16px 48px rgba(42, 126, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(0);
}

@media (max-width: 768px) {
  .domain-input-wrapper {
    max-width: 100%;
  }

  .domain-input {
    font-size: 16px;
    padding: 18px 20px 18px 82px;
  }

  .domain-input-wrapper::after {
    left: 30px;
    font-size: 15px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .domain-input {
    font-size: 16px;
    padding: 16px 18px 16px 78px;
    border-radius: 12px;
  }

  .domain-input-wrapper::after {
    left: 28px;
    font-size: 14px;
    height: 18px;
  }
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #007aff;
  color: white;
  padding: 16px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.primary-button::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;
}

.primary-button:hover::before {
  width: 300px;
  height: 300px;
}

.primary-button:hover {
  background: #0056b3;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 122, 255, 0.35);
}

.primary-button:active {
  transform: translateY(-1px) scale(1.01);
}

.primary-button.large {
  padding: 20px 40px;
  font-size: 19px;
  border-radius: 28px;
}

.secondary-button {
  background: rgba(0, 122, 255, 0.1);
  color: #007aff;
  border: 1px solid rgba(0, 122, 255, 0.2);
}

.secondary-button:hover {
  background: rgba(0, 122, 255, 0.2);
  color: #0056b3;
}

.hero-note {
  color: #86868b;
  font-size: 14px;
  margin-top: 16px;
}

.ai-platforms {
  text-align: center;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s backwards;
}

.platforms-label {
  color: #86868b;
  font-size: 17px;
  margin-bottom: 24px;
}

.platform-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.platform-logo {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: grayscale(30%);
}

.platform-logo:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.05);
  filter: grayscale(0%);
}

/* Problem Section */
.problem-section {
  background: #f5f5f7;
  padding: 88px 22px 20px 22px;
}

/* Features Section */
.features-section {
  padding: 88px 22px 20px 22px;
  max-width: 1024px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 692px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.125;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.section-header p {
  font-size: 19px;
  line-height: 1.421;
  color: #86868b;
}

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

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007aff, #5856d6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 122, 255, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .feature-icon {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.feature-icon {
  color: #007aff;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  line-height: 1.167;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.feature-card p {
  font-size: 17px;
  line-height: 1.47059;
  color: #515154;
  margin-bottom: 16px;
}

.feature-card strong {
  color: #007aff;
  font-weight: 600;
  background: rgba(0, 122, 255, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.feature-benefit {
  color: #007aff;
  font-size: 15px;
  font-weight: 500;
}

/* Social Proof Section */
.social-proof-section {
  background: #ffffff;
  padding: 88px 22px 20px 22px;
}

.social-proof-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.social-proof-badge {
  text-align: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border-radius: 16px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  min-width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-proof-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
}

.proof-stat {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.proof-label {
  font-size: 15px;
  color: #515154;
  line-height: 1.4;
  font-weight: 500;
}

@media (max-width: 768px) {
  .social-proof-section {
    padding: 64px 22px;
  }

  .social-proof-container {
    gap: 24px;
  }

  .social-proof-badge {
    padding: 20px 24px;
    min-width: 160px;
  }

  .proof-stat {
    font-size: 40px;
  }

  .proof-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .social-proof-container {
    flex-direction: column;
    gap: 20px;
  }

  .social-proof-badge {
    width: 100%;
    max-width: 300px;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 88px 22px 20px 22px;
}

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

.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #007aff, #5856d6);
  border-radius: 18px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card.featured {
  border: 2px solid #007aff;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 122, 255, 0.15);
}

.pricing-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.pricing-card:hover::after {
  opacity: 0.05;
}

.pricing-card.featured:hover {
  transform: translateY(-6px) scale(1.07);
  box-shadow: 0 30px 60px rgba(0, 122, 255, 0.25);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #007aff;
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  font-weight: 500;
}

.plan-name {
  font-size: 28px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 48px;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 8px;
  line-height: 1;
}

.plan-price span {
  font-size: 19px;
  font-weight: 400;
  color: #86868b;
}

.plan-description {
  color: #86868b;
  font-size: 17px;
  margin-bottom: 32px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 17px;
  color: #515154;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #007aff;
  font-weight: 600;
}

.plan-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.plan-button.primary {
  background: #007aff;
  color: white;
}

.plan-button.primary:hover {
  background: #0056b3;
}

.plan-button.secondary {
  background: rgba(0, 122, 255, 0.1);
  color: #007aff;
  border: 1px solid rgba(0, 122, 255, 0.2);
}

.plan-button.secondary:hover {
  background: rgba(0, 122, 255, 0.2);
}

/* FAQ Section */
.faq-section {
  padding: 88px 22px 20px 22px;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

.faq-item {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 122, 255, 0.2);
}

.faq-item h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.faq-item p {
  font-size: 17px;
  line-height: 1.47059;
  color: #515154;
  margin: 0;
}

/* Setup Section */
.setup-section {
  padding: 88px 22px 20px 22px;
  text-align: center;
  background: #f5f5f7;
}

/* Privacy Policy Section */
.privacy-section {
  padding: 88px 22px 20px 22px;
  background: #ffffff;
  min-height: calc(100vh - 160px);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h1 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  text-align: center;
}

.last-updated {
  font-size: 17px;
  color: #86868b;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
}

.privacy-text {
  text-align: left;
}

.privacy-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  color: #1d1d1f;
  margin: 40px 0 16px 0;
  letter-spacing: -0.015em;
}

.privacy-text h2:first-child {
  margin-top: 0;
}

.privacy-text p {
  font-size: 19px;
  line-height: 1.47059;
  color: #515154;
  margin-bottom: 24px;
}

.privacy-text a {
  color: #007aff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-text a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #f5f5f7;
  padding: 64px 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  height: 70px;
  width: auto;
}

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

.footer-links a {
  color: #86868b;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007aff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 22px;
  }
  
  .nav-links {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
    max-width: 100vw;
  }

  .nav-logo {
    height: 50px;
  }

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

  .nav-links {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column;
    padding: 0 24px;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    max-height: 500px;
    padding: 16px 24px;
  }

  .nav-links a {
    display: block !important;
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .shopify-link {
    padding: 8px 16px;
    font-size: 16px;
  }
  
  .hero {
    padding: 64px 22px 80px;
  }
  
  .platform-logos {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .features-grid, .pricing-grid, .faq-grid {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .feature-card, .pricing-card, .faq-item {
    max-width: calc(100vw - 44px);
    word-wrap: break-word;
  }
  
  .hero-title {
    font-size: clamp(40px, 8vw, 56px);
  }
  
  .hero-subtitle {
    font-size: 19px;
  }
  
  .platform-logos {
    gap: 24px;
  }
  
  .platform-logo {
    height: 28px;
  }
  
  .problem-section,
  .features-section,
  .pricing-section,
  .setup-section {
    padding: 64px 22px;
  }
  
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-2px);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-links {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 12px;
  }

  .nav-logo {
    height: 45px;
  }
  
  .shopify-link {
    padding: 6px 14px;
    font-size: 15px;
  }
  
  .hero {
    padding: 48px 16px 64px;
  }
  
  .problem-section,
  .features-section,
  .pricing-section,
  .setup-section {
    padding: 48px 16px;
  }
  
  .feature-card,
  .pricing-card {
    padding: 24px 20px;
  }
  
  .primary-button {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .primary-button.large {
    padding: 16px 32px;
    font-size: 17px;
  }
  
  .platform-logos {
    gap: 16px;
  }
  
  .platform-logo {
    height: 24px;
  }
}

/* ========================================
   NEW SECTIONS - AI Brand Monitoring
   ======================================== */

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
  border-radius: 5px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(0, 122, 255, 0.05);
  border: 1px solid rgba(0, 122, 255, 0.1);
  border-radius: 12px;
  font-size: 15px;
  color: #1d1d1f;
  font-weight: 500;
}

.shopify-logo-standalone {
  height: 54px;
  width: auto;
  display: block;
  margin: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.badge-icon {
  font-size: 18px;
}

@media (max-width: 768px) {
  .trust-badges {
    gap: 12px;
  }

  .trust-badge {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Pain Points Grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1024px;
  margin: 64px auto 0;
}

.pain-point-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pain-point-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.pain-icon {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-point-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.pain-point-card p {
  font-size: 17px;
  line-height: 1.47059;
  color: #515154;
  margin-bottom: 12px;
}

.pain-stat {
  font-size: 15px;
  color: #86868b;
  font-style: italic;
  margin-top: 16px;
}

@media (max-width: 968px) {
  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
  }
}

@media (max-width: 768px) {
  .pain-point-card {
    padding: 32px 24px;
  }
}

/* How It Works Section */
.how-it-works-section {
  padding: 88px 22px 20px 22px;
  background: #ffffff;
}

.steps-timeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
}

.step-card {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 122, 255, 0.3);
  background: #ffffff;
}

.step-card .step-number {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover .step-number {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #007aff, #5856d6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
  text-align: center;
}

.step-duration {
  font-size: 14px;
  color: #007aff;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}

.step-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.step-content p {
  font-size: 17px;
  line-height: 1.47059;
  color: #515154;
}

.step-arrow {
  font-size: 32px;
  color: #007aff;
  font-weight: 300;
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .step-card {
    max-width: 100%;
    height: auto;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 88px 22px 20px 22px;
  background: #f5f5f7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 64px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card.featured {
  border: 2px solid #007aff;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.02) 0%, rgba(0, 122, 255, 0.05) 100%);
}

.testimonial-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #007aff;
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-rating {
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.47059;
  color: #515154;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 4px;
}

.author-company {
  font-size: 15px;
  color: #86868b;
}

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

  .testimonial-card {
    padding: 32px 24px;
  }
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 32px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #007aff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-description {
  font-size: 15px;
  color: #86868b;
  line-height: 1.2;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .stats-bar {
    gap: 32px;
    padding: 32px 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-divider {
    display: none;
  }
}

/* Pricing Enhancements */
.plan-guarantee {
  text-align: center;
  font-size: 14px;
  color: #007aff;
  font-weight: 500;
  margin-top: 12px;
}

.feature-excluded {
  color: #86868b !important;
  opacity: 0.7;
}

.feature-excluded::before {
  content: '✗' !important;
  color: #86868b !important;
}

/* CTA Benefits */
.cta-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 32px auto;
}

.cta-benefit {
  font-size: 17px;
  color: #1d1d1f;
  font-weight: 500;
  padding: 16px;
  background: rgba(0, 122, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 122, 255, 0.1);
}

@media (max-width: 768px) {
  .cta-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-benefit {
    font-size: 16px;
    padding: 14px;
  }
}

/* Dashboard Preview Section */
.dashboard-preview-section {
  padding: 88px 22px 20px 22px;
  background: #f5f5f7;
  overflow: hidden;
}

/* Dashboard Mock Styles */
.dashboard-mock {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* Clean scaling for desktop */
  transform: none;
  transform-origin: center top;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard-mock:hover {
  transform: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Top Metrics */
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.metric-card {
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  border-color: rgba(0, 122, 255, 0.2);
}

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

.metric-label {
  font-size: 13px;
  color: #86868b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-icon {
  color: #86868b;
  font-size: 14px;
  cursor: help;
}

.metric-value {
  margin-bottom: 8px;
}

.metric-value .score {
  font-size: 42px;
  font-weight: 700;
  color: #FF9800;
}

.metric-value .score.success {
  color: #4CAF50;
}

.metric-value .score.warning {
  color: #FF9800;
}

.metric-value .score-max {
  font-size: 24px;
  color: #86868b;
  font-weight: 400;
}

.large-number {
  font-size: 42px;
  font-weight: 700;
  color: #1d1d1f;
}

.metric-change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.metric-change.positive {
  color: #4CAF50;
}

.metric-change.neutral {
  color: #86868b;
}

.metric-change .arrow {
  font-size: 16px;
}

.metric-breakdown {
  font-size: 12px;
  color: #86868b;
  line-height: 1.4;
  min-height: 32px;
}

/* Dashboard Table */
.dashboard-table-card {
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 28px;
}

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

.table-header h3 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

.table-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.table-sort label {
  font-size: 14px;
  color: #86868b;
  white-space: nowrap;
}

.table-sort select {
  padding: 6px 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
}

.dashboard-table {
  overflow: visible;
  margin-bottom: 12px;
}

.dashboard-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: unset;
}

.dashboard-table thead {
  background: #e5e7eb;
  border-radius: 8px;
}

.dashboard-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #515154;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-table th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.dashboard-table th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.dashboard-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease;
  cursor: pointer;
}

.dashboard-table tbody tr:hover {
  background: rgba(0, 122, 255, 0.04);
}

.dashboard-table td {
  padding: 12px 14px;
  font-size: 14px;
  color: #1d1d1f;
}

/* Improve table text wrapping for mobile */
.prompt-text {
  color: #007aff;
  font-weight: 500;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 180px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .prompt-text {
    max-width: 120px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .prompt-text {
    max-width: 100px;
    font-size: 11px;
  }
}

.metric-strong {
  font-weight: 600;
  color: #1d1d1f;
}

.sentiment {
  font-size: 20px;
}

.table-footer {
  font-size: 13px;
  color: #86868b;
  text-align: center;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge-success {
  background: rgba(76, 175, 80, 0.1);
  color: #4CAF50;
}

.badge-warning {
  background: rgba(255, 152, 0, 0.1);
  color: #FF9800;
}

.badge-critical {
  background: rgba(244, 67, 54, 0.1);
  color: #F44336;
}

.badge-info {
  background: rgba(0, 122, 255, 0.1);
  color: #007aff;
}

/* Dashboard Sections */
.dashboard-section {
  margin-bottom: 32px;
}

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

.section-title {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.platform-card {
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.platform-card h4 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.platform-rank {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.platform-label {
  font-size: 12px;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.platform-best {
  font-size: 13px;
  color: #86868b;
}

.platform-progress {
  margin-bottom: 12px;
}

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

.platform-percent {
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1f;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #E4E5E7;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  transition: width 0.3s ease;
  border-radius: 4px;
}

.platform-executions {
  font-size: 13px;
  color: #86868b;
}

/* Competitor Grid */
.competitor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.competitor-card {
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.competitor-rank {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.competitor-rank h4 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

.competitor-health {
  margin-bottom: 16px;
}

.health-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
}

.health-value .score {
  font-size: 36px;
  font-weight: 700;
}

.competitor-mentions {
  margin-bottom: 12px;
}

.mention-count {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
  margin-top: 4px;
}

/* Dashboard Mobile/Desktop Toggle */
.dashboard-desktop {
  display: block;
}

.dashboard-mobile {
  display: none;
}

/* Show mobile screenshot on smaller screens */
@media (max-width: 1023px) {
  .dashboard-desktop {
    display: none;
  }

  .dashboard-mobile {
    display: block;
  }

  .dashboard-screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  /* Adjust dashboard mock for mobile screenshot */
  .dashboard-mock {
    padding: 0;
    transform: none;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

@media (max-width: 968px) {
  /* Mobile uses screenshot - desktop dashboard elements are hidden */
  .dashboard-mock {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .dashboard-preview-section {
    padding: 24px 16px;
  }

  .dashboard-mock {
    padding: 0;
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .dashboard-preview-section {
    padding: 48px 12px;
  }

  .dashboard-mock {
    padding: 0;
    border-radius: 0;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: block;
}

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

.modal-content {
  position: relative;
  max-width: 900px;
  max-height: 90vh;
  margin: 5vh auto;
  background: white;
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

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

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #f9fafb;
}

.modal-title {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #86868b;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1d1d1f;
}

.modal-body {
  padding: 32px;
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}

/* Modal Metrics */
.modal-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.modal-metric {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-metric-label {
  font-size: 12px;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.modal-metric-value {
  font-size: 28px;
  font-weight: 700;
  color: #1d1d1f;
}

.change-positive {
  color: #4CAF50 !important;
}

.change-negative {
  color: #F44336 !important;
}

.change-neutral {
  color: #86868b !important;
}

/* Modal Cards */
.modal-card {
  background: #f9fafb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.modal-card:last-child {
  margin-bottom: 0;
}

.modal-card-title {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 16px 0;
}

.modal-card-subtitle {
  font-size: 14px;
  color: #86868b;
  margin: 0 0 16px 0;
}

/* Modal Table */
.modal-table {
  width: 100%;
  border-collapse: collapse;
}

.modal-table thead {
  background: #e5e7eb;
}

.modal-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: #515154;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-table th:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.modal-table th:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.modal-table td {
  padding: 12px 14px;
  font-size: 14px;
  color: #1d1d1f;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

/* Mention List */
.mention-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.mention-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #1d1d1f;
}

.mention-rank {
  font-weight: 600;
  color: #515154;
}

.mention-brand {
  font-weight: 600;
  color: #1d1d1f;
}

.mention-count,
.mention-health {
  font-size: 13px;
  color: #86868b;
}

.gap-analysis {
  background: rgba(0, 122, 255, 0.05);
  border: 1px solid rgba(0, 122, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1d1d1f;
}

/* Response List */
.response-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.response-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 16px;
}

.response-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.response-platform {
  font-size: 15px;
  font-weight: 600;
  color: #1d1d1f;
}

.response-time,
.response-rank {
  font-size: 13px;
  color: #86868b;
}

.response-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

.response-text {
  font-size: 14px;
  line-height: 1.6;
  color: #515154;
  margin-bottom: 12px;
  white-space: pre-line;
}

.brand-highlight {
  background: #e6f2ff;
  color: #007aff;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}

.response-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.response-sentiment {
  color: #1d1d1f;
}

.response-competitors {
  color: #86868b;
}

/* Modal Responsive */
@media (max-width: 968px) {
  .modal-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .modal-content {
    max-width: 95%;
    margin: 2vh auto;
    max-height: 96vh;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-title {
    font-size: 18px;
  }

  .modal-body {
    padding: 20px;
    max-height: calc(96vh - 70px);
  }

  .modal-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .modal-metric-value {
    font-size: 24px;
  }

  .modal-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-table table {
    min-width: 600px;
  }

  .mention-item {
    flex-wrap: wrap;
  }

  .section-header {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .modal-metrics {
    grid-template-columns: 1fr;
  }

  .modal-close {
    font-size: 28px;
    width: 28px;
    height: 28px;
  }
}

/* ========================================
   BLOG SECTION STYLES
   ======================================== */

/* Blog Listing Page */
.blog-hero {
  padding: 104px 22px 80px;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.blog-hero p {
  font-size: 21px;
  line-height: 1.381;
  color: #86868b;
  max-width: 584px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px 88px;
}

.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 122, 255, 0.2);
}

.blog-card-image {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.8) 0%, rgba(88, 86, 214, 0.8) 100%);
}

.blog-card-content {
  padding: 32px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #86868b;
  margin-bottom: 16px;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-readtime {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta::before {
  content: '•';
  color: #86868b;
}

.blog-card h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.blog-card-excerpt {
  font-size: 17px;
  line-height: 1.47059;
  color: #515154;
  margin-bottom: 16px;
}

.blog-card-link {
  color: #007aff;
  font-size: 17px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-card-link svg {
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* Blog Post Page */
.blog-post-hero {
  padding: 104px 22px 64px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-title {
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  color: #1d1d1f;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 17px;
  color: #86868b;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.blog-post-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-post-author {
  font-weight: 500;
  color: #1d1d1f;
}

.blog-post-featured-image {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 0 auto 64px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}

.blog-post-featured-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.7) 0%, rgba(88, 86, 214, 0.7) 100%);
}

.blog-post-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 22px 88px;
}

.blog-post-content h2 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  color: #1d1d1f;
  margin: 48px 0 24px 0;
  letter-spacing: -0.015em;
}

.blog-post-content h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  color: #1d1d1f;
  margin: 40px 0 20px 0;
  letter-spacing: -0.015em;
}

.blog-post-content h4 {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.3;
  font-weight: 600;
  color: #1d1d1f;
  margin: 32px 0 16px 0;
  letter-spacing: -0.015em;
}

.blog-post-content p {
  font-size: 19px;
  line-height: 1.6;
  color: #1d1d1f;
  margin-bottom: 24px;
}

.blog-post-content ul,
.blog-post-content ol {
  font-size: 19px;
  line-height: 1.6;
  color: #1d1d1f;
  margin-bottom: 24px;
  padding-left: 32px;
}

.blog-post-content li {
  margin-bottom: 12px;
}

.blog-post-content a {
  color: #007aff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.blog-post-content a.primary-button {
  color: white !important;
}

.blog-post-content a.primary-button:hover {
  color: white !important;
  text-decoration: none;
}

.blog-post-content strong {
  font-weight: 600;
  color: #1d1d1f;
}

.blog-post-content em {
  font-style: italic;
}

.blog-post-content blockquote {
  border-left: 4px solid #007aff;
  padding-left: 24px;
  margin: 32px 0;
  font-size: 21px;
  line-height: 1.5;
  color: #515154;
  font-style: italic;
}

.blog-post-content code {
  background: #f5f5f7;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 16px;
  color: #1d1d1f;
}

.blog-post-content pre {
  background: #f5f5f7;
  padding: 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 32px 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-post-content pre code {
  background: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 32px 0;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #007aff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.blog-back-link:hover {
  color: #0056b3;
  transform: translateX(-4px);
}

.blog-cta-section {
  background: #f5f5f7;
  border-radius: 18px;
  padding: 48px 32px;
  text-align: center;
  margin-top: 64px;
}

.blog-cta-section h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.blog-cta-section p {
  font-size: 19px;
  line-height: 1.421;
  color: #86868b;
  margin-bottom: 32px;
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-hero {
    padding: 80px 22px 64px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 22px 64px;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card-content {
    padding: 24px;
  }

  .blog-card h2 {
    font-size: 24px;
  }

  .blog-post-hero {
    padding: 80px 22px 48px;
  }

  .blog-post-meta {
    flex-direction: column;
    gap: 12px;
  }

  .blog-post-featured-image {
    height: 300px;
    font-size: 80px;
    margin-bottom: 48px;
  }

  .blog-post-content {
    padding: 0 22px 64px;
  }

  .blog-post-content h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
  }

  .blog-post-content h3 {
    font-size: 24px;
  }

  .blog-post-content p,
  .blog-post-content ul,
  .blog-post-content ol {
    font-size: 17px;
  }

  .blog-post-content blockquote {
    font-size: 19px;
    padding-left: 20px;
  }

  .blog-cta-section {
    padding: 40px 24px;
  }

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

@media (max-width: 480px) {
  .blog-hero {
    padding: 60px 16px 48px;
  }

  .blog-grid {
    padding: 0 16px 48px;
  }

  .blog-card-image {
    height: 180px;
    font-size: 48px;
  }

  .blog-card-content {
    padding: 20px;
  }

  .blog-card h2 {
    font-size: 21px;
  }

  .blog-post-hero {
    padding: 60px 16px 40px;
  }

  .blog-post-featured-image {
    height: 240px;
    font-size: 60px;
    border-radius: 12px;
  }

  .blog-post-content {
    padding: 0 16px 48px;
  }

  .blog-post-content h2 {
    font-size: 24px;
  }

  .blog-post-content h3 {
    font-size: 21px;
  }

  .blog-post-content pre {
    padding: 16px;
    font-size: 14px;
  }

  .blog-cta-section {
    padding: 32px 20px;
  }

  .blog-cta-section h3 {
    font-size: 21px;
  }
}

/* ============================================
   AI Content Intelligence Styles
   ============================================ */

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 16px 22px;
  text-align: center;
  overflow: hidden;
}

.announcement-content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-text {
  color: white;
  font-size: 17px;
  line-height: 1.4;
}

.announcement-text strong {
  font-weight: 600;
}

.announcement-link {
  color: white;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.announcement-link:hover {
  opacity: 0.8;
}

.badge-new {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.badge-new-inline {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

/* Content Intelligence Section */
.content-intelligence-section {
  padding: 88px 22px 20px 22px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.content-intelligence-container {
  max-width: 1200px;
  margin: 48px auto 0;
}

.intelligence-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.intelligence-mockup-container {
  max-width: 1200px;
  margin: 64px auto 0;
}

.flow-step {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.flow-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d1d1f;
}

.flow-step p {
  font-size: 14px;
  color: #86868b;
  line-height: 1.5;
}

.flow-arrow {
  align-self: center;
  font-size: 24px;
  color: #667eea;
  font-weight: 300;
}

.intelligence-mockup {
  max-width: 900px;
  margin: 0 auto;
}

.mockup-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

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

.mockup-label {
  font-size: 14px;
  color: #86868b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-prompt {
  font-size: 17px;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 12px;
}

.mockup-competitor {
  font-size: 15px;
  color: #86868b;
  margin-bottom: 24px;
}

.mockup-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 24px;
}

.mockup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.mockup-preview {
  background: #f5f5f7;
  padding: 20px;
  border-radius: 12px;
  border: 2px dashed #d2d2d7;
}

.preview-label {
  font-size: 13px;
  color: #86868b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.preview-title {
  font-size: 19px;
  font-weight: 600;
  color: #1d1d1f;
  line-height: 1.3;
  margin-bottom: 8px;
}

.preview-meta {
  font-size: 14px;
  color: #86868b;
}

/* Opportunity List - Redesigned to match actual feature */
.opportunity-list-simple {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.opportunity-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: start;
  transition: all 0.3s ease;
}

.opportunity-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.opportunity-score {
  background: #007aff;
  color: white;
  font-size: 20px;
  font-weight: 700;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.opportunity-card-title {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 8px;
  line-height: 1.4;
}

.opportunity-card-description {
  font-size: 14px;
  color: #86868b;
  line-height: 1.5;
  margin: 0;
}

.opportunity-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.opportunity-btn-primary,
.opportunity-btn-secondary {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.opportunity-btn-primary {
  background: #1d1d1f;
  color: white;
  border: none;
}

.opportunity-btn-primary:hover {
  background: #000000;
  transform: translateY(-1px);
}

.opportunity-btn-secondary {
  background: white;
  color: #86868b;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.opportunity-btn-secondary:hover {
  background: #f5f5f7;
  color: #1d1d1f;
}

.mockup-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #d2d2d7;
  font-size: 13px;
  color: #86868b;
  text-align: center;
  font-style: italic;
}

.intelligence-description {
  max-width: 800px;
  margin: 64px auto;
  text-align: center;
}

.intelligence-description h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 24px;
}

.intelligence-description p {
  font-size: 19px;
  color: #86868b;
  line-height: 1.5;
  margin-bottom: 16px;
}

.intelligence-description p strong {
  color: #1d1d1f;
  font-weight: 600;
}

.intelligence-benefits {
  list-style: none;
  margin: 32px auto;
  max-width: 600px;
  text-align: left;
}

.intelligence-benefits li {
  font-size: 17px;
  color: #1d1d1f;
  padding: 12px 0 12px 32px;
  position: relative;
}

.intelligence-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
  font-size: 20px;
}

.intelligence-cta {
  margin-top: 40px;
}

.cta-note {
  font-size: 15px;
  color: #86868b;
  margin-bottom: 16px;
}

.intelligence-testimonial {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 48px 32px;
  border-radius: 24px;
  max-width: 900px;
  margin: 64px auto 0;
}

.testimonial-content {
  text-align: center;
  color: white;
}

.testimonial-content p {
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 17px;
  font-weight: 500;
  opacity: 0.9;
}

/* Feature Card Highlight */
.feature-card-highlight {
  position: relative;
  border: 2px solid #667eea;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
}

.feature-badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pricing Feature New */
.feature-new {
  border-left: 3px solid #667eea;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
  margin-left: -12px;
  padding-left: 36px !important;
  padding-right: 12px;
}

.feature-new::before {
  left: 12px !important;
}

/* Optional Step Styles */
.optional-step-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #d2d2d7 50%, transparent 100%);
}

.divider-text {
  font-size: 14px;
  color: #86868b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.optional-step {
  max-width: 800px;
  margin: 0 auto;
}

.step-card-enhanced {
  position: relative;
  border: 2px solid #667eea;
  background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
}

.step-badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-cta {
  margin-top: 16px;
}

.step-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.step-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Mobile Responsive Styles for AI Content Intelligence */
@media (max-width: 768px) {
  .announcement-banner {
    padding: 12px 16px;
  }

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

  .announcement-text {
    font-size: 15px;
  }

  .content-intelligence-section {
    padding: 64px 22px;
  }

  .intelligence-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-arrow {
    display: none;
  }

  .flow-step {
    padding: 24px;
  }

  .flow-icon {
    width: 40px;
    height: 40px;
  }

  .flow-step h3 {
    font-size: 19px;
  }

  .flow-step p {
    font-size: 15px;
  }

  .intelligence-mockup-container {
    margin-top: 48px;
  }

  .opportunity-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .opportunity-score {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .opportunity-card-title {
    font-size: 15px;
  }

  .opportunity-card-description {
    font-size: 13px;
  }

  .opportunity-actions {
    width: 100%;
  }

  .opportunity-btn-primary,
  .opportunity-btn-secondary {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
  }

  .intelligence-description h3 {
    font-size: 24px;
  }

  .intelligence-description p {
    font-size: 17px;
  }

  .intelligence-testimonial {
    padding: 32px 24px;
  }

  .testimonial-content p {
    font-size: 19px;
  }

  .optional-step-divider {
    margin: 32px 0 24px;
  }

  .divider-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .announcement-text {
    font-size: 14px;
  }

  .badge-new {
    font-size: 11px;
    padding: 3px 10px;
  }

  .content-intelligence-section {
    padding: 48px 16px;
  }

  .flow-step {
    padding: 20px;
  }

  .flow-icon {
    width: 32px;
    height: 32px;
  }

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

  .flow-step h3 {
    font-size: 19px;
  }

  .flow-step p {
    font-size: 15px;
  }

  .mockup-card {
    padding: 20px;
  }

  .opportunity-item {
    padding: 14px;
  }

  .opportunity-priority {
    font-size: 10px;
    padding: 3px 8px;
  }

  .opportunity-title {
    font-size: 15px;
  }

  .opportunity-meta span {
    font-size: 12px;
  }

  .opportunity-button {
    font-size: 14px;
    padding: 10px 16px;
  }

  .mockup-footer {
    font-size: 12px;
  }

  .intelligence-description h3 {
    font-size: 21px;
  }

  .opportunity-card {
    padding: 14px;
  }

  .opportunity-score {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .opportunity-card-title {
    font-size: 14px;
  }

  .opportunity-card-description {
    font-size: 12px;
  }

  .opportunity-btn-primary,
  .opportunity-btn-secondary {
    padding: 8px 12px;
    font-size: 12px;
  }

  .intelligence-description p {
    font-size: 16px;
  }

  .intelligence-benefits li {
    font-size: 16px;
    padding-left: 28px;
  }

  .intelligence-testimonial {
    padding: 24px 20px;
  }

  .testimonial-content p {
    font-size: 17px;
  }

  .testimonial-author {
    font-size: 15px;
  }
}