:root {
  --how-color-primary: #059669;
  --how-color-primary-light: #10B981;
  --how-color-primary-dark: #047857;
  --how-color-accent: #F59E0B;
  --how-color-red: #EF4444;
  --how-color-blue: #1A73E8;
  --how-color-facebook: #1877F2;
  --how-color-gray-900: #111827;
  --how-color-gray-800: #1F2937;
  --how-color-gray-700: #374151;
  --how-color-gray-600: #4B5563;
  --how-color-gray-500: #6B7280;
  --how-color-gray-400: #9CA3AF;
  --how-color-gray-300: #D1D5DB;
  --how-color-gray-200: #E5E7EB;
  --how-color-gray-100: #F3F4F6;
  --how-color-gray-50: #F9FAFB;
  --how-font-display: 'Playfair Display', serif;
  --how-font-body: 'DM Sans', sans-serif;
}

.how-page {
  font-family: var(--how-font-body);
  color: var(--how-color-gray-700);
  line-height: 1.6;
}

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

.how-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--how-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

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

.how-btn-primary:hover {
  background: var(--how-color-primary-dark);
  box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4);
}

.how-btn-outline {
  background: transparent;
  border: 2px solid var(--how-color-primary);
  color: var(--how-color-primary);
}

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

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

.how-btn-white:hover {
  background: var(--how-color-gray-50);
}

.how-btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.how-section {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .how-section {
    padding: 6rem 1.5rem;
  }
}

.how-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.how-section-gray {
  background: var(--how-color-gray-50);
}

.how-section-dark {
  background: var(--how-color-gray-900);
}

.how-section-primary {
  background: var(--how-color-primary);
}

.how-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-section-title {
  font-family: var(--how-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
  margin-bottom: 1rem;
}

.how-section-subtitle {
  font-size: 1.25rem;
  color: var(--how-color-gray-500);
  max-width: 40rem;
  margin: 0 auto;
}

/* Hero */
.how-hero {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--how-color-gray-50) 0%, white 100%);
}

.how-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.how-hero-dotted-line {
  border-top: 3px dotted var(--how-color-gray-300);
  margin-bottom: 2rem;
}

.how-hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .how-hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.how-hero-headline {
  font-family: var(--how-font-body);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--how-color-gray-900);
  margin-bottom: 1.5rem;
}

.how-hero-headline .how-highlight-red {
  color: var(--how-color-red);
}

.how-hero-text {
  font-size: 1.125rem;
  color: var(--how-color-gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.how-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.how-hero-visual {
  position: relative;
}

/* Google Search Scene - Store Search */
.how-store-search {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.how-store-search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--how-color-gray-100);
  border-bottom: 1px solid var(--how-color-gray-200);
}

.how-store-search-dots {
  display: flex;
  gap: 0.375rem;
}

.how-store-search-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.how-store-search-dot:nth-child(1) { background: #EF4444; }
.how-store-search-dot:nth-child(2) { background: #F59E0B; }
.how-store-search-dot:nth-child(3) { background: #10B981; }

.how-store-search-url {
  flex: 1;
  background: white;
  border: 1px solid var(--how-color-gray-200);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  color: var(--how-color-gray-500);
}

.how-store-search-content {
  padding: 1.25rem;
}

.how-store-search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--how-color-gray-300);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.how-store-search-box svg {
  color: var(--how-color-gray-400);
}

.how-store-search-box span {
  color: var(--how-color-gray-700);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Store Listing Card */
.how-store-listing {
  background: var(--how-color-gray-50);
  border-radius: 0.75rem;
  overflow: hidden;
}

.how-store-listing-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2px;
  height: 100px;
}

.how-store-listing-img {
  background: var(--how-color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--how-color-gray-400);
  font-size: 0.625rem;
}

.how-store-listing-img-small {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.how-store-listing-img-small > div {
  flex: 1;
  background: var(--how-color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--how-color-gray-400);
  font-size: 0.5rem;
}

.how-store-listing-info {
  padding: 1rem;
}

.how-store-listing-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
  margin-bottom: 0.25rem;
}

.how-store-listing-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--how-color-gray-600);
  margin-bottom: 0.5rem;
}

.how-store-listing-rating svg {
  color: var(--how-color-accent);
}

.how-store-listing-details {
  font-size: 0.75rem;
  color: var(--how-color-gray-500);
  margin-bottom: 1rem;
}

.how-store-listing-actions {
  display: flex;
  gap: 0.5rem;
}

.how-store-listing-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--how-color-gray-300);
  background: white;
  color: var(--how-color-blue);
}

.how-store-listing-btn svg {
  width: 14px;
  height: 14px;
}

.how-store-listing-btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* No Order Indicator */
.how-no-order-badge {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  background: var(--how-color-red);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.8125rem;
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.4);
  text-align: center;
  line-height: 1.3;
}

.how-no-order-badge-icon {
  font-size: 1.25rem;
  margin-bottom: 0.125rem;
}

.how-thought-bubble {
  position: absolute;
  bottom: -1.5rem;
  left: 1rem;
  background: white;
  border: 2px solid var(--how-color-gray-200);
  padding: 0.625rem 0.875rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  color: var(--how-color-gray-600);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 180px;
}

.how-thought-bubble::before {
  content: '💭';
  position: absolute;
  top: -0.625rem;
  left: 0.75rem;
  font-size: 0.875rem;
}

/* Problem Section - Visual Flow */
.how-problem-layout {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .how-problem-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

.how-problem-text h3 {
  font-family: var(--how-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
  margin-bottom: 1rem;
}

.how-problem-text p {
  font-size: 1.0625rem;
  color: var(--how-color-gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.how-problem-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.how-problem-stat {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--how-color-gray-100);
}

.how-problem-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--how-color-red);
  margin-bottom: 0.25rem;
}

.how-problem-stat-label {
  font-size: 0.875rem;
  color: var(--how-color-gray-500);
}

/* Visual Flow Container */
.how-visual-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Search Insights Card */
.how-search-insights {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.how-search-insights-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--how-color-gray-100);
}

.how-search-insights-total {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--how-color-gray-900);
  margin-bottom: 0.25rem;
}

.how-search-insights-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--how-color-gray-600);
}

.how-search-insights-label svg {
  color: var(--how-color-gray-400);
}

.how-search-insights-breakdown {
  padding: 1rem 1.5rem 0.5rem;
}

.how-search-insights-breakdown-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--how-color-gray-900);
  margin-bottom: 0.25rem;
}

.how-search-insights-breakdown-subtitle {
  font-size: 0.75rem;
  color: var(--how-color-gray-500);
  margin-bottom: 1rem;
}

.how-search-insights-list {
  list-style: none;
}

.how-search-insights-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--how-color-gray-100);
}

.how-search-insights-item:last-child {
  border-bottom: none;
}

.how-search-insights-rank {
  color: var(--how-color-gray-400);
  font-size: 0.875rem;
  margin-right: 0.75rem;
  min-width: 1.25rem;
}

.how-search-insights-term {
  flex: 1;
  font-size: 0.875rem;
  color: var(--how-color-gray-700);
}

.how-search-insights-count {
  font-size: 0.875rem;
  color: var(--how-color-gray-900);
  font-weight: 500;
}

/* Flow Arrow */
.how-flow-arrow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
}

.how-flow-arrow-line {
  width: 3px;
  height: 40px;
  background: linear-gradient(to bottom, var(--how-color-primary), var(--how-color-primary-light));
  border-radius: 2px;
}

.how-flow-arrow-head {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 16px solid var(--how-color-primary-light);
}

.how-flow-arrow-text {
  background: var(--how-color-primary);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.75rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  max-width: 280px;
}

/* Mini GBP Card */
.how-mini-gbp {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 2px solid var(--how-color-gray-100);
}

.how-mini-gbp-cover {
  height: 100px;
  background: linear-gradient(135deg, #e8eaed 0%, #dadce0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--how-color-gray-400);
  font-size: 0.875rem;
  position: relative;
}

.how-mini-gbp-logo {
  position: absolute;
  bottom: -25px;
  left: 1.25rem;
  width: 60px;
  height: 60px;
  background: white;
  border: 3px solid white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--how-color-primary);
  font-size: 0.75rem;
  font-weight: 600;
}

.how-mini-gbp-info {
  padding: 2rem 1.25rem 1rem;
}

.how-mini-gbp-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
  margin-bottom: 0.375rem;
}

.how-mini-gbp-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  color: var(--how-color-gray-600);
  margin-bottom: 0.375rem;
}

.how-mini-gbp-rating svg {
  color: var(--how-color-accent);
}

.how-mini-gbp-category {
  font-size: 0.875rem;
  color: var(--how-color-gray-500);
}

.how-mini-gbp-tabs {
  display: flex;
  border-top: 1px solid var(--how-color-gray-200);
  margin-top: 1rem;
}

.how-mini-gbp-tab {
  flex: 1;
  padding: 1rem 0.5rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--how-color-gray-500);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.how-mini-gbp-tab svg {
  width: 20px;
  height: 20px;
}

.how-mini-gbp-tab-active {
  color: var(--how-color-blue);
  border-bottom-color: var(--how-color-blue);
}

.how-mini-gbp-tab-highlight {
  position: relative;
}

.how-mini-gbp-tab-highlight::after {
  content: 'Your SimpleMenu Site!';
  position: absolute;
  top: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--how-color-primary);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.how-mini-gbp-tab-highlight::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--how-color-primary);
}

/* Solution Steps */
.how-solution-steps {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.how-solution-step {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .how-solution-step {
    grid-template-columns: 1fr 1fr;
  }

  .how-solution-step:nth-child(even) .how-solution-step-visual {
    order: -1;
  }
}

.how-solution-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--how-color-primary);
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.how-solution-step-title {
  font-family: var(--how-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
  margin-bottom: 1rem;
}

.how-solution-step-text {
  font-size: 1.0625rem;
  color: var(--how-color-gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.how-solution-step-features {
  list-style: none;
}

.how-solution-step-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--how-color-gray-700);
}

.how-solution-step-features li svg {
  color: var(--how-color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.how-solution-step-visual {
  background: var(--how-color-gray-100);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* Google Business Profile */
.how-gbp-mockup {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.how-gbp-cover {
  height: 120px;
  background: linear-gradient(135deg, var(--how-color-gray-200), var(--how-color-gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--how-color-gray-400);
  font-size: 0.75rem;
  position: relative;
}

.how-gbp-avatar {
  position: absolute;
  bottom: -30px;
  left: 1rem;
  width: 70px;
  height: 70px;
  background: white;
  border: 3px solid white;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--how-color-gray-400);
  font-size: 0.625rem;
}

.how-gbp-info {
  padding: 2.5rem 1rem 1rem;
}

.how-gbp-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
  margin-bottom: 0.25rem;
}

.how-gbp-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--how-color-gray-600);
  margin-bottom: 0.25rem;
}

.how-gbp-rating svg {
  color: var(--how-color-accent);
}

.how-gbp-category {
  font-size: 0.8125rem;
  color: var(--how-color-gray-500);
  margin-bottom: 1rem;
}

.how-gbp-tabs {
  display: flex;
  border-top: 1px solid var(--how-color-gray-200);
  overflow-x: auto;
}

.how-gbp-tab {
  flex: 1;
  padding: 0.875rem 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--how-color-gray-500);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.how-gbp-tab svg {
  width: 18px;
  height: 18px;
}

.how-gbp-tab:hover {
  color: var(--how-color-blue);
}

.how-gbp-tab-active {
  color: var(--how-color-blue);
  border-bottom-color: var(--how-color-blue);
}

.how-gbp-tab-highlight {
  position: relative;
}

.how-gbp-tab-highlight::after {
  content: 'Your Site!';
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--how-color-primary);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  white-space: nowrap;
}

.how-gbp-tab-highlight::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--how-color-primary);
}

/* Facebook Page Mockup */
.how-fb-page {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.how-fb-page-cover {
  height: 160px;
  background: linear-gradient(135deg, #8B4513 0%, #D2691E 30%, #CD853F 60%, #DEB887 100%);
  position: relative;
  overflow: hidden;
}

.how-fb-page-cover-food {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}

.how-fb-food-circle {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(2px);
}

.how-fb-page-profile-section {
  position: relative;
  padding: 0 1.25rem;
  margin-top: -40px;
}

.how-fb-page-avatar {
  width: 100px;
  height: 100px;
  background: white;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.how-fb-page-avatar-inner {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, var(--how-color-primary), var(--how-color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
}

.how-fb-page-info {
  padding: 0.75rem 1.25rem 0;
}

.how-fb-page-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
}

.how-fb-page-meta {
  font-size: 0.9375rem;
  color: var(--how-color-gray-500);
  margin-top: 0.25rem;
}

.how-fb-page-actions {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
}

.how-fb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.how-fb-btn svg {
  width: 16px;
  height: 16px;
}

.how-fb-btn-start-order {
  background: var(--how-color-facebook);
  color: white;
  flex: 1.5;
  position: relative;
}

.how-fb-btn-start-order:hover {
  background: #1565D8;
}

.how-fb-btn-secondary {
  background: var(--how-color-gray-100);
  color: var(--how-color-gray-900);
  flex: 1;
}

.how-fb-btn-secondary:hover {
  background: var(--how-color-gray-200);
}

/* Start Order Highlight */
.how-fb-start-order-callout {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--how-color-primary);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.how-fb-start-order-callout::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--how-color-primary);
}

.how-fb-page-divider {
  height: 1px;
  background: var(--how-color-gray-200);
  margin: 0 1.25rem;
}

/* Messenger Comparison */
.how-messenger-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.how-messenger-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.how-messenger-label {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.how-messenger-label-before {
  background: var(--how-color-gray-200);
  color: var(--how-color-gray-600);
}

.how-messenger-label-after {
  background: var(--how-color-primary);
  color: white;
}

.how-messenger-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--how-color-gray-100);
}

.how-messenger-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--how-color-primary), var(--how-color-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.how-messenger-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
}

.how-messenger-chat {
  padding: 1rem;
  min-height: 140px;
  background: var(--how-color-gray-50);
}

.how-messenger-bubble {
  max-width: 85%;
  padding: 0.625rem 0.875rem;
  border-radius: 1rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.how-messenger-user {
  background: #0084FF;
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 0.25rem;
}

.how-messenger-reply {
  background: white;
  color: var(--how-color-gray-900);
  border: 1px solid var(--how-color-gray-200);
  border-bottom-left-radius: 0.25rem;
}

.how-messenger-hyperlink-old {
  color: #0066cc;
  text-decoration: underline;
  font-size: 0.875rem;
}

.how-messenger-hyperlink-new {
  color: var(--how-color-primary);
  text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 600;
}

.how-messenger-problem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem;
  background: #FEF2F2;
  color: var(--how-color-red);
  font-size: 0.8125rem;
  font-weight: 600;
}

.how-messenger-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem;
  background: #ECFDF5;
  color: var(--how-color-primary);
  font-size: 0.8125rem;
  font-weight: 600;
}

/* Social */
.how-social-mockup {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.how-social-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.how-social-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
}

.how-social-card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--how-color-gray-200);
}

.how-social-card-name {
  font-size: 0.75rem;
  font-weight: 600;
}

.how-social-card-image {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, var(--how-color-gray-100), var(--how-color-gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--how-color-gray-400);
  font-size: 0.75rem;
}

.how-social-card-cta {
  padding: 0.75rem;
}

.how-social-card-btn {
  width: 100%;
  padding: 0.5rem;
  background: var(--how-color-primary);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  cursor: pointer;
}

.how-social-instagram .how-social-card-header {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.how-social-instagram .how-social-card-name { color: white; }

.how-social-facebook .how-social-card-header {
  background: #1877F2;
}

.how-social-facebook .how-social-card-name { color: white; }

/* Flow */
.how-flow {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .how-flow {
    flex-direction: row;
    justify-content: center;
  }
}

.how-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
  max-width: 200px;
}

.how-flow-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--how-color-primary);
  margin-bottom: 1rem;
}

.how-flow-step h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
  margin-bottom: 0.25rem;
}

.how-flow-step p {
  font-size: 0.8125rem;
  color: var(--how-color-gray-500);
}

.how-flow-arrow {
  color: var(--how-color-primary);
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .how-flow-arrow {
    transform: rotate(0deg);
  }
}

/* Comparison */
.how-comparison {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-comparison {
    grid-template-columns: 1fr 1fr;
  }
}

.how-comparison-card {
  padding: 2.5rem;
  border-radius: 1rem;
}

.how-comparison-card-bad {
  background: var(--how-color-gray-800);
  color: white;
}

.how-comparison-card-good {
  background: var(--how-color-primary);
  color: white;
}

.how-comparison-card h3 {
  font-family: var(--how-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.how-comparison-card .how-comparison-subtitle {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.how-comparison-list {
  list-style: none;
}

.how-comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.how-comparison-list li svg {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.how-comparison-card-bad .how-comparison-list li svg {
  color: var(--how-color-red);
}

.how-comparison-card-good .how-comparison-list li svg {
  color: white;
}

/* Benefits */
.how-benefits-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.how-benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--how-color-gray-100);
  transition: all 0.3s;
}

.how-benefit-card:hover {
  border-color: var(--how-color-primary);
  box-shadow: 0 10px 30px -10px rgba(5, 150, 105, 0.2);
  transform: translateY(-4px);
}

.how-benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 150, 105, 0.1);
  color: var(--how-color-primary);
  margin: 0 auto 1.5rem;
}

.how-benefit-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--how-color-gray-900);
  margin-bottom: 0.5rem;
}

.how-benefit-card p {
  color: var(--how-color-gray-500);
  font-size: 0.9375rem;
}

/* Stats */
.how-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .how-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.how-stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.how-stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.how-stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* CTA */
.how-cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.how-cta-title {
  font-family: var(--how-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.how-cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.how-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Google Search Mockup */
.how-google-scene {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.how-google-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--how-color-gray-100);
  border-bottom: 1px solid var(--how-color-gray-200);
}

.how-google-browser-dots {
  display: flex;
  gap: 0.375rem;
}

.how-google-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.how-google-browser-dot:nth-child(1) { background: #EF4444; }
.how-google-browser-dot:nth-child(2) { background: #F59E0B; }
.how-google-browser-dot:nth-child(3) { background: #10B981; }

.how-google-browser-url {
  flex: 1;
  background: white;
  border: 1px solid var(--how-color-gray-200);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  color: var(--how-color-gray-500);
}

.how-google-content {
  padding: 1.25rem;
}

.how-google-search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--how-color-gray-300);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.how-google-search-box svg {
  color: var(--how-color-gray-400);
}

.how-google-search-box span {
  color: var(--how-color-gray-700);
  font-size: 0.9375rem;
}

.how-google-result {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--how-color-gray-100);
}

.how-google-result:last-child {
  border-bottom: none;
}

.how-google-result-url {
  font-size: 0.75rem;
  color: var(--how-color-gray-500);
  margin-bottom: 0.125rem;
}

.how-google-result-title {
  font-size: 1rem;
  color: var(--how-color-blue);
  margin-bottom: 0.25rem;
  cursor: pointer;
}

.how-google-result-desc {
  font-size: 0.8125rem;
  color: var(--how-color-gray-600);
  line-height: 1.4;
}